The patch titled hfs-handle-more-on-disk-corruptions-without-oopsing update has been added to the -mm tree. Its filename is hfs-handle-more-on-disk-corruptions-without-oopsing-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: hfs-handle-more-on-disk-corruptions-without-oopsing update From: Eric Sandeen <sandeen@xxxxxxxxxx> I double-issued warnings in some cases. Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx> Cc: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/hfs/bfind.c | 3 --- 1 file changed, 3 deletions(-) diff -puN fs/hfs/bfind.c~hfs-handle-more-on-disk-corruptions-without-oopsing-fix fs/hfs/bfind.c --- a/fs/hfs/bfind.c~hfs-handle-more-on-disk-corruptions-without-oopsing-fix +++ a/fs/hfs/bfind.c @@ -53,7 +53,6 @@ int __hfs_brec_find(struct hfs_bnode *bn len = hfs_brec_lenoff(bnode, rec, &off); keylen = hfs_brec_keylen(bnode, rec); if (keylen == HFS_BAD_KEYLEN) { - printk(KERN_ERR "hfs: keylen %d too long\n", keylen); res = -EINVAL; goto done; } @@ -73,7 +72,6 @@ int __hfs_brec_find(struct hfs_bnode *bn len = hfs_brec_lenoff(bnode, e, &off); keylen = hfs_brec_keylen(bnode, e); if (keylen == HFS_BAD_KEYLEN) { - printk(KERN_ERR "hfs: keylen %d too long\n", keylen); res = -EINVAL; goto done; } @@ -209,7 +207,6 @@ int hfs_brec_goto(struct hfs_find_data * len = hfs_brec_lenoff(bnode, fd->record, &off); keylen = hfs_brec_keylen(bnode, fd->record); if (keylen == HFS_BAD_KEYLEN) { - printk(KERN_ERR "hfs: keylen %d too long\n", keylen); res = -EINVAL; goto out; } _ Patches currently in -mm which might be from sandeen@xxxxxxxxxx are ecryptfs-fix-string-overflow-on-long-cipher-names.patch ecryptfs-fix-unlocking-in-error-paths.patch ecryptfs-redo-dgetmntget-on-dentry_open-failure.patch hfs-handle-more-on-disk-corruptions-without-oopsing.patch hfs-handle-more-on-disk-corruptions-without-oopsing-fix.patch ext2-change-the-default-behaviour-on-error.patch ecryptfs-make-show_options-reflect-actual-mount-options.patch ecryptfs-make-show_options-reflect-actual-mount-options-fix.patch ecryptfs-remove-debug-as-mount-option-and-warn-if-set-via-modprobe.patch ext3-change-the-default-behaviour-on-error.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