]> sourceware.org Git - systemtap.git/commitdiff
Correct a few comments to match the code
authorJosh Stone <jistone@redhat.com>
Wed, 26 Aug 2009 23:15:46 +0000 (16:15 -0700)
committerJosh Stone <jistone@redhat.com>
Wed, 26 Aug 2009 23:27:11 +0000 (16:27 -0700)
* tapset/conversions.stp (kernel_long, kernel_int, kernel_short,
  kernel_char): All are actually using kread(), not deref().
* tapset/i386/registers.stp (_stp_arg): Ditto.
* tapset/x86_64/registers.stp (_stp_arg): Ditto.

tapset/conversions.stp
tapset/i386/registers.stp
tapset/x86_64/registers.stp

index 31b1682177bcc8e495fc28c73bf2201439e04140..fdf00bd3cda365bc7d7a334da6a101f37ebf59f9 100644 (file)
@@ -34,7 +34,7 @@ deref_fault: /* branched to from deref_string() */
 function kernel_long:long (addr:long) %{ /* pure */
   THIS->__retvalue = kread((long *) (intptr_t) THIS->addr);
   if (0) {
-deref_fault: /* branched to from deref() */
+deref_fault: /* branched to from kread() */
     snprintf (CONTEXT->error_buffer, sizeof(CONTEXT->error_buffer),
         "kernel long copy fault at 0x%p", (void *) (uintptr_t) THIS->addr);
     CONTEXT->last_error = CONTEXT->error_buffer;
@@ -44,7 +44,7 @@ deref_fault: /* branched to from deref() */
 function kernel_int:long (addr:long) %{ /* pure */
   THIS->__retvalue = kread((int *) (intptr_t) THIS->addr);
   if (0) {
-deref_fault: /* branched to from deref() */
+deref_fault: /* branched to from kread() */
     snprintf (CONTEXT->error_buffer, sizeof(CONTEXT->error_buffer),
         "kernel int copy fault at 0x%p", (void *) (uintptr_t) THIS->addr);
     CONTEXT->last_error = CONTEXT->error_buffer;
@@ -54,7 +54,7 @@ deref_fault: /* branched to from deref() */
 function kernel_short:long (addr:long) %{ /* pure */
   THIS->__retvalue = kread((short *) (intptr_t) THIS->addr);
   if (0) {
-deref_fault: /* branched to from deref() */
+deref_fault: /* branched to from kread() */
     snprintf (CONTEXT->error_buffer, sizeof(CONTEXT->error_buffer),
         "kernel short copy fault at 0x%p", (void *) (uintptr_t) THIS->addr);
     CONTEXT->last_error = CONTEXT->error_buffer;
@@ -64,7 +64,7 @@ deref_fault: /* branched to from deref() */
 function kernel_char:long (addr:long) %{ /* pure */
   THIS->__retvalue = kread((char *) (intptr_t) THIS->addr);
   if (0) {
-deref_fault: /* branched to from deref() */
+deref_fault: /* branched to from kread() */
     snprintf (CONTEXT->error_buffer, sizeof(CONTEXT->error_buffer),
         "kernel char copy fault at 0x%p", (void *) (uintptr_t) THIS->addr);
     CONTEXT->last_error = CONTEXT->error_buffer;
index 997376dc334114f4f3ddf32df1a19fa4d00c5d14..c1e98ac008dceb475af9a1f1a718ae3d69d0de0c 100644 (file)
@@ -154,7 +154,7 @@ bad_argnum:
        return;
 
        if (0) {
-deref_fault: /* branched to from deref() */
+deref_fault: /* branched to from kread() */
                snprintf (CONTEXT->error_buffer, sizeof(CONTEXT->error_buffer),
                        "kernel fault at %#lx accessing arg(%lld)", val,
                        THIS->argnum);
index 48ba311943570807c51d9f97ef28dce317cffdad..e7abb18b7bd6fb2bdda838e1b0e53fa19c487907 100644 (file)
@@ -172,7 +172,7 @@ bad_argnum:
        return;
 
        if (0) {
-deref_fault: /* branched to from deref() */
+deref_fault: /* branched to from kread() */
                snprintf (CONTEXT->error_buffer, sizeof(CONTEXT->error_buffer),
                        "kernel fault at %#lx accessing arg(%lld)", val,
                        THIS->argnum);
This page took 0.033753 seconds and 5 git commands to generate.