The patch titled Subject: nilfs2-fix-potential-memory-overrun-on-inode-fix has been added to the -mm tree. Its filename is nilfs2-fix-potential-memory-overrun-on-inode-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/nilfs2-fix-potential-memory-overrun-on-inode-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/nilfs2-fix-potential-memory-overrun-on-inode-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Ryusuke Konishi <konishi.ryusuke@xxxxxxxxxxxxx> Subject: nilfs2-fix-potential-memory-overrun-on-inode-fix I've got a warning from 0day kernel testing backend: fs/nilfs2/btree.c: In function 'nilfs_btree_root_broken': >> fs/nilfs2/btree.c:394:3: warning: format '%lu' expects argument of type 'long unsigned int', but argument 2 has type 'ino_t' [-Wformat=] pr_crit("NILFS: bad btree root (inode number=%lu): level = %d, flags = 0x%x, nchildren = %d\n", ^ This is output for s390 arch since ino_t doesn't mean "unsigned long" in s390. Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/nilfs2/btree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/nilfs2/btree.c~nilfs2-fix-potential-memory-overrun-on-inode-fix fs/nilfs2/btree.c --- a/fs/nilfs2/btree.c~nilfs2-fix-potential-memory-overrun-on-inode-fix +++ a/fs/nilfs2/btree.c @@ -378,7 +378,7 @@ static int nilfs_btree_node_broken(const * Return Value: If node is broken, 1 is returned. Otherwise, 0 is returned. */ static int nilfs_btree_root_broken(const struct nilfs_btree_node *node, - ino_t ino) + unsigned long ino) { int level, flags, nchildren; int ret = 0; _ Patches currently in -mm which might be from konishi.ryusuke@xxxxxxxxxxxxx are origin.patch nilfs2-fix-potential-memory-overrun-on-inode.patch nilfs2-fix-potential-memory-overrun-on-inode-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