diff options
author | Josh Stone <jistone@redhat.com> | 2009-08-26 16:15:46 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-08-26 16:27:11 -0700 |
commit | b13d5a188321fc6856cf379a74b3004ce094a3af (patch) | |
tree | 69df0840d74abbbf416878d30e165094712c7a86 /tapset/x86_64 | |
parent | fdef9f1f12e4a087c87c8bf7e5078f88fcc0d33f (diff) | |
download | systemtap-steved-b13d5a188321fc6856cf379a74b3004ce094a3af.tar.gz systemtap-steved-b13d5a188321fc6856cf379a74b3004ce094a3af.tar.xz systemtap-steved-b13d5a188321fc6856cf379a74b3004ce094a3af.zip |
Correct a few comments to match the code
* 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.
Diffstat (limited to 'tapset/x86_64')
-rw-r--r-- | tapset/x86_64/registers.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/x86_64/registers.stp b/tapset/x86_64/registers.stp index 48ba3119..e7abb18b 100644 --- a/tapset/x86_64/registers.stp +++ b/tapset/x86_64/registers.stp @@ -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); |