The patch titled Char: vt, use ARRAY_SIZE has been removed from the -mm tree. Its filename was char-vt-use-array_size.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Char: vt, use ARRAY_SIZE From: Jiri Slaby <jirislaby@xxxxxxxxx> vt, use ARRAY_SIZE Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Acked-by: Alan Cox <alan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/vt.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/char/vt.c~char-vt-use-array_size drivers/char/vt.c --- a/drivers/char/vt.c~char-vt-use-array_size +++ a/drivers/char/vt.c @@ -1990,8 +1990,7 @@ static int is_double_width(uint32_t ucs) { 0xFE10, 0xFE19 }, { 0xFE30, 0xFE6F }, { 0xFF00, 0xFF60 }, { 0xFFE0, 0xFFE6 }, { 0x20000, 0x2FFFD }, { 0x30000, 0x3FFFD } }; - return bisearch(ucs, double_width, - sizeof(double_width) / sizeof(*double_width) - 1); + return bisearch(ucs, double_width, ARRAY_SIZE(double_width) - 1); } /* acquires console_sem */ _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are origin.patch some-kmalloc-memset-kzalloc-tree-wide.patch shrink_slab-handle-bad-shrinkers.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