The patch titled utrace: nommu fixup support utrace has been added to the -mm tree. Its filename is utrace-nommu-fixup-support-utrace.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: utrace: nommu fixup support utrace From: "Wu, Bryan" <bryan.wu@xxxxxxxxxx> When adding utrace support to blackfin architecture, I found a compiling error in nommu related utrace stuff. Then this little patch will fix this for nommu arch utrace. Signed-off-by: Bryan Wu <bryan.wu@xxxxxxxxxx> Cc: Roland McGrath <roland@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/nommu.c | 4 ++++ 1 file changed, 4 insertions(+) diff -puN mm/nommu.c~utrace-nommu-fixup-support-utrace mm/nommu.c --- a/mm/nommu.c~utrace-nommu-fixup-support-utrace +++ a/mm/nommu.c @@ -673,7 +673,11 @@ static unsigned long determine_vm_flags( * it's being traced - otherwise breakpoints set in it may interfere * with another untraced process */ +#ifdef CONFIG_UTRACE + if (flags & MAP_PRIVATE) +#else if ((flags & MAP_PRIVATE) && (current->ptrace & PT_PTRACED)) +#endif vm_flags &= ~VM_MAYSHARE; return vm_flags; _ Patches currently in -mm which might be from bryan.wu@xxxxxxxxxx are blackfin-Documentation.patch blackfin-arch.patch driver_bfin_serial_core.patch driver_bfin_serial_core-update.patch blackfin-on-chip-ethernet-mac-controller-driver.patch blackfin-on-chip-ethernet-mac-controller-driver-update.patch blackfin-patch-add-blackfin-support-in-smc91x.patch blackfin-on-chip-rtc-controller-driver.patch blackfin-blackfin-on-chip-spi-controller-driver.patch blackfin-blackfin-utrace-patch.patch utrace-nommu-fixup-support-utrace.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