The patch titled atomic: fix a typo in atomic_long_xchg() has been removed from the -mm tree. Its filename was atomic-fix-a-typo-in-atomic_long_xchg.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: atomic: fix a typo in atomic_long_xchg() From: Eric Dumazet <dada1@xxxxxxxxxxxxx> atomic_long_xchg() is not correctly defined for 32bit arches. Signed-off-by: Eric Dumazet <dada1@xxxxxxxxxxxxx> Cc: Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-generic/atomic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-generic/atomic.h~atomic-fix-a-typo-in-atomic_long_xchg include/asm-generic/atomic.h --- a/include/asm-generic/atomic.h~atomic-fix-a-typo-in-atomic_long_xchg +++ a/include/asm-generic/atomic.h @@ -251,7 +251,7 @@ static inline long atomic_long_add_unles #define atomic_long_cmpxchg(l, old, new) \ (atomic_cmpxchg((atomic_t *)(l), (old), (new))) #define atomic_long_xchg(v, new) \ - (atomic_xchg((atomic_t *)(l), (new))) + (atomic_xchg((atomic_t *)(v), (new))) #endif /* BITS_PER_LONG == 64 */ _ Patches currently in -mm which might be from dada1@xxxxxxxxxxxxx are origin.patch linux-next.patch percpu_counter-fbc_batch-should-be-a-variable.patch softirq-introduce-statistics-for-softirq.patch proc-export-statistics-for-softirq-to-proc.patch proc-update-document-for-proc-softirqs-and-proc-stat.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