The patch titled frv: NULL noise removal in frv xchg() has been removed from the -mm tree. Its filename is frv-null-noise-removal-in-frv-xchg.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: frv: NULL noise removal in frv xchg() From: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Clean up the FRV arch's xchg() function. Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/asm-frv/atomic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN include/asm-frv/atomic.h~frv-null-noise-removal-in-frv-xchg include/asm-frv/atomic.h --- a/include/asm-frv/atomic.h~frv-null-noise-removal-in-frv-xchg +++ a/include/asm-frv/atomic.h @@ -227,7 +227,7 @@ extern unsigned long atomic_test_and_XOR break; \ \ default: \ - __xg_orig = 0; \ + __xg_orig = (__typeof__(__xg_orig))0; \ asm volatile("break"); \ break; \ } \ @@ -247,7 +247,7 @@ extern uint32_t __xchg_32(uint32_t i, vo switch (sizeof(__xg_orig)) { \ case 4: __xg_orig = (__typeof__(*(ptr))) __xchg_32((uint32_t) x, __xg_ptr); break; \ default: \ - __xg_orig = 0; \ + __xg_orig = (__typeof__(__xg_orig))0; \ asm volatile("break"); \ break; \ } \ _ Patches currently in -mm which might be from viro@xxxxxxxxxxxxxxxxxx are origin.patch kauditd_thread-warning-fix.patch kill-open-coded-offsetof-in-cm4000_csc-zero_dev.patch nbd-endian-annotations.patch ftruncate-does-not-always-update-m-ctime.patch affs_fill_super-%s-abuses-2.patch implement-at_symlink_follow-flag-for-linkat.patch task-watchers-register-audit-task-watcher.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