The patch titled include/linux/kernel.h: Remove labs() has been removed from the -mm tree. Its filename was include-linux-kernelh-remove-labs.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: include/linux/kernel.h: Remove labs() From: Richard Knutsson <ricknu-0@xxxxxxxxxxxxxx> Remove labs() since it is not used/needed. Signed-off-by: Richard Knutsson <ricknu-0@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/kernel.h | 5 ----- 1 file changed, 5 deletions(-) diff -puN include/linux/kernel.h~include-linux-kernelh-remove-labs include/linux/kernel.h --- a/include/linux/kernel.h~include-linux-kernelh-remove-labs +++ a/include/linux/kernel.h @@ -92,11 +92,6 @@ extern int cond_resched(void); (__x < 0) ? -__x : __x; \ }) -#define labs(x) ({ \ - long __x = (x); \ - (__x < 0) ? -__x : __x; \ - }) - extern struct atomic_notifier_head panic_notifier_list; extern long (*panic_blink)(long time); NORET_TYPE void panic(const char * fmt, ...) _ Patches currently in -mm which might be from ricknu-0@xxxxxxxxxxxxxx are origin.patch git-dvb.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