The patch titled
Documentation: Remove references to FASTCALL/fastcall
has been added to the -mm tree. Its filename is
remove-final-fastcall-users-fix.patch
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: Documentation: Remove references to FASTCALL/fastcall
From: Harvey Harrison <[EMAIL PROTECTED]>
An example function prototype and description of options that
modify how arguments are passed had references to fastcall.
Signed-off-by: Harvey Harrison <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
Documentation/RCU/NMI-RCU.txt | 2 +-
Documentation/kprobes.txt | 11 +++++------
2 files changed, 6 insertions(+), 7 deletions(-)
diff -puN Documentation/RCU/NMI-RCU.txt~remove-final-fastcall-users-fix
Documentation/RCU/NMI-RCU.txt
--- a/Documentation/RCU/NMI-RCU.txt~remove-final-fastcall-users-fix
+++ a/Documentation/RCU/NMI-RCU.txt
@@ -25,7 +25,7 @@ the NMI handler to take the default mach
This nmi_callback variable is a global function pointer to the current
NMI handler.
- fastcall void do_nmi(struct pt_regs * regs, long error_code)
+ void do_nmi(struct pt_regs * regs, long error_code)
{
int cpu;
diff -puN Documentation/kprobes.txt~remove-final-fastcall-users-fix
Documentation/kprobes.txt
--- a/Documentation/kprobes.txt~remove-final-fastcall-users-fix
+++ a/Documentation/kprobes.txt
@@ -92,9 +92,8 @@ handler has run. Up to MAX_STACK_SIZE b
64 bytes on i386.
Note that the probed function's args may be passed on the stack
-or in registers (e.g., for x86_64 or for an i386 fastcall function).
-The jprobe will work in either case, so long as the handler's
-prototype matches that of the probed function.
+or in registers. The jprobe will work in either case, so long as the
+handler's prototype matches that of the probed function.
1.3 Return Probes
@@ -270,9 +269,9 @@ Kprobes runs the handler whose address i
The handler should have the same arg list and return type as the probed
function; and just before it returns, it must call jprobe_return().
(The handler never actually returns, since jprobe_return() returns
-control to Kprobes.) If the probed function is declared asmlinkage,
-fastcall, or anything else that affects how args are passed, the
-handler's declaration must match.
+control to Kprobes.) If the probed function is declared asmlinkage
+or anything else that affects how args are passed, the handler's
+declaration must match.
register_jprobe() returns 0 on success, or a negative errno otherwise.
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
include-linux-remove-all-users-of-fastcall-macro.patch
include-linux-remove-all-users-of-fastcall-macro-checkpatch-fixes.patch
remove-final-fastcall-users.patch
remove-final-fastcall-users-fix.patch
final-removal-of-fastcall-fastcall.patch
git-x86.patch
x86-remove-pt_regs-arg-from-smp_thermal_interrupt.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html