The patch titled fix utrace-utrace-tracehook-um has been added to the -mm tree. Its filename is fix-utrace-utrace-tracehook-um.patch *** 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 ------------------------------------------------------ Subject: fix utrace-utrace-tracehook-um From: Jeff Dike <jdike@xxxxxxxxxxx> When auditing is configured there are some mismatched types in ptrace.c Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxxxxxx> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Cc: Roland McGrath <roland@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/um/kernel/ptrace.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff -puN arch/um/kernel/ptrace.c~fix-utrace-utrace-tracehook-um arch/um/kernel/ptrace.c --- a/arch/um/kernel/ptrace.c~fix-utrace-utrace-tracehook-um +++ a/arch/um/kernel/ptrace.c @@ -48,8 +48,8 @@ void do_syscall_trace(struct pt_regs *re secure_computing(PT_REGS_SYSCALL_NR(regs)); if (unlikely(current->audit_context) && entryexit) - audit_syscall_exit(AUDITSC_RESULT(UPT_SYSCALL_RET(regs)), - UPT_SYSCALL_RET(regs)); + audit_syscall_exit(AUDITSC_RESULT(UPT_SYSCALL_RET(®s->regs)), + UPT_SYSCALL_RET(®s->regs)); if (test_thread_flag(TIF_SYSCALL_TRACE)) tracehook_report_syscall(regs, entryexit); @@ -61,9 +61,9 @@ void do_syscall_trace(struct pt_regs *re if (unlikely(current->audit_context) && !entryexit) audit_syscall_entry(HOST_AUDIT_ARCH, - UPT_SYSCALL_NR(regs), - UPT_SYSCALL_ARG1(regs), - UPT_SYSCALL_ARG2(regs), - UPT_SYSCALL_ARG3(regs), - UPT_SYSCALL_ARG4(regs)); + UPT_SYSCALL_NR(®s->regs), + UPT_SYSCALL_ARG1(®s->regs), + UPT_SYSCALL_ARG2(®s->regs), + UPT_SYSCALL_ARG3(®s->regs), + UPT_SYSCALL_ARG4(®s->regs)); } _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are uml-fix-epoll.patch uml-fix-static-linking.patch uml-use-correct-register-file-size-everywhere.patch remove-hardcoding-of-hard_smp_processor_id-on-up.patch uml-delete-unused-code.patch uml-formatting-fixes.patch uml-host_info-tidying.patch uml-mark-tt-mode-code-for-future-removal.patch uml-print-coredump-limits.patch uml-handle-block-device-hotplug-errors.patch uml-driver-formatting-fixes.patch uml-driver-formatting-fixes-fix.patch uml-network-interface-hotplug-error-handling.patch array_size-check-for-type-uml-fix.patch uml-fix-prototypes.patch uml-move-sigio-testing-to-sigioc.patch uml-create-archh.patch uml-create-as-layouth.patch uml-move-remaining-useful-contents-of-user_utilh.patch uml-remove-user_utilh.patch uml-add-missing-__init-declarations.patch remove-unused-header-file-arch-um-kernel-tt-include-mode_kern-tth.patch i386-fix-cmpxchg-warning.patch uml-fix-device-unplug-crash.patch uml-irq-locking-fixes.patch uml-fix-compilation-problems.patch fix-utrace-utrace-tracehook-um.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html