The patch titled h8300 atomic.h update has been removed from the -mm tree. Its filename was h8300-atomich-update.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: h8300 atomic.h update From: Yoshinori Sato <ysato@xxxxxxxxxxxxxxxxxxxx> add atomic_sub_and_test define. Signed-off-by: Yoshinori Sato <ysato@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-h8300/atomic.h | 1 + 1 file changed, 1 insertion(+) diff -puN include/asm-h8300/atomic.h~h8300-atomich-update include/asm-h8300/atomic.h --- a/include/asm-h8300/atomic.h~h8300-atomich-update +++ a/include/asm-h8300/atomic.h @@ -37,6 +37,7 @@ static __inline__ int atomic_sub_return( } #define atomic_sub(i, v) atomic_sub_return(i, v) +#define atomic_sub_and_test(i,v) (atomic_sub_return(i, v) == 0) static __inline__ int atomic_inc_return(atomic_t *v) { _ Patches currently in -mm which might be from ysato@xxxxxxxxxxxxxxxxxxxx are origin.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