The patch titled Subject: fs/hfsplus: replace if/BUG by BUG_ON has been added to the -mm tree. Its filename is fs-hfsplus-replace-if-bug-by-bug_on.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fs-hfsplus-replace-if-bug-by-bug_on.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fs-hfsplus-replace-if-bug-by-bug_on.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: Fabian Frederick <fabf@xxxxxxxxx> Subject: fs/hfsplus: replace if/BUG by BUG_ON Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/hfsplus/bfind.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff -puN fs/hfsplus/bfind.c~fs-hfsplus-replace-if-bug-by-bug_on fs/hfsplus/bfind.c --- a/fs/hfsplus/bfind.c~fs-hfsplus-replace-if-bug-by-bug_on +++ a/fs/hfsplus/bfind.c @@ -118,9 +118,7 @@ int __hfs_brec_find(struct hfs_bnode *bn int b, e; int res; - if (!rec_found) - BUG(); - + BUG_ON(!rec_found); b = 0; e = bnode->num_recs - 1; res = -ENOENT; _ Patches currently in -mm which might be from fabf@xxxxxxxxx are fs-ext4-fsyncc-generic_file_fsync-call-based-on-barrier-flag.patch fs-hfsplus-move-xattr_name-allocation-in-hfsplus_getxattr.patch fs-hfsplus-move-xattr_name-allocation-in-hfsplus_setxattr.patch fs-hfsplus-atomically-set-inode-i_flags.patch fs-hfsplus-use-bool-instead-of-int-for-is_known_namespace-return-value.patch fs-hfsplus-replace-if-bug-by-bug_on.patch fs-affs-use-affs_mount-prefix-for-mount-options.patch fs-affs-affsh-add-mount-option-manipulation-macros.patch fs-affs-superc-use-affs_set_opt.patch fs-affs-use-affs_test_opt.patch linux-next.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