The patch titled Subject: lib-vsprintfc-expand-field_width-to-24-bits-fix has been removed from the -mm tree. Its filename was lib-vsprintfc-expand-field_width-to-24-bits-fix.patch This patch was dropped because it was folded into lib-vsprintfc-expand-field_width-to-24-bits.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: lib-vsprintfc-expand-field_width-to-24-bits-fix avoid open-coded BUILD_BUG_ON Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Kees Cook <keescook@xxxxxxxxxxxx> Cc: Maurizio Lombardi <mlombard@xxxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Cc: Tejun Heo <tj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/vsprintf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN lib/vsprintf.c~lib-vsprintfc-expand-field_width-to-24-bits-fix lib/vsprintf.c --- a/lib/vsprintf.c~lib-vsprintfc-expand-field_width-to-24-bits-fix +++ a/lib/vsprintf.c @@ -389,7 +389,6 @@ struct printf_spec { unsigned int base:8; /* number base, 8, 10 or 16 only */ signed int precision:16; /* # of digits/chars */ } __packed; -extern char __check_printf_spec[1-2*(sizeof(struct printf_spec) != 8)]; static noinline_for_stack char *number(char *buf, char *end, unsigned long long num, @@ -403,6 +402,8 @@ char *number(char *buf, char *end, unsig int i; bool is_zero = num == 0LL; + BUILD_BUG_ON(sizeof(struct printf_spec) != 8); + /* locase = 0 or 0x20. ORing digits or letters with 'locase' * produces same digits or (maybe lowercased) letters */ locase = (spec.flags & SMALL); _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-define-madv_free-for-some-arches.patch arch-uapi-asm-mmanh-let-madv_free-have-same-value-for-all-architectures.patch kernel-stop_machinec-remove-config_smp-dependencies.patch lib-vsprintfc-expand-field_width-to-24-bits.patch lib-test_printfc-test-dentry-printing-fix.patch printk-help-pr_debug-and-pr_devel-to-optimize-out-arguments-fix.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