The patch titled Potential fix for fdtable badness has been added to the -mm tree. Its filename is fdtable-implement-new-pagesize-based-fdtable-allocator-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Potential fix for fdtable badness From: Vadim Lobanov <vlobanov@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/file.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN fs/file.c~fdtable-implement-new-pagesize-based-fdtable-allocator-fix fs/file.c --- a/fs/file.c~fdtable-implement-new-pagesize-based-fdtable-allocator-fix +++ a/fs/file.c @@ -164,9 +164,8 @@ static struct fdtable * alloc_fdtable(un * the fdarray into page-sized chunks: starting at a quarter of a page, * and growing in powers of two from there on. */ - nr++; nr /= (PAGE_SIZE / 4 / sizeof(struct file *)); - nr = roundup_pow_of_two(nr); + nr = roundup_pow_of_two(nr + 1); nr *= (PAGE_SIZE / 4 / sizeof(struct file *)); if (nr > NR_OPEN) nr = NR_OPEN; _ Patches currently in -mm which might be from vlobanov@xxxxxxxxxxxxx are fdtable-delete-pointless-code-in-dup_fd.patch fdtable-make-fdarray-and-fdsets-equal-in-size.patch fdtable-remove-the-free_files-field.patch fdtable-implement-new-pagesize-based-fdtable-allocator.patch fdtable-implement-new-pagesize-based-fdtable-allocator-fix.patch fdtable-make-fdarray-and-fdsets-equal-in-size-slim.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