The patch titled reiserfs: fmt bugfix has been removed from the -mm tree. Its filename was reiserfs-fmt-bugfix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: reiserfs: fmt bugfix From: Alexey Dobriyan <adobriyan@xxxxxxxxx> One reiserfs_warning() call uses %lu, but doesn't supply what to print. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/reiserfs/file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN fs/reiserfs/file.c~reiserfs-fmt-bugfix fs/reiserfs/file.c --- a/fs/reiserfs/file.c~reiserfs-fmt-bugfix +++ a/fs/reiserfs/file.c @@ -74,7 +74,8 @@ static int reiserfs_file_release(struct igrab(inode); reiserfs_warning(inode->i_sb, "pinning inode %lu because the " - "preallocation can't be freed"); + "preallocation can't be freed", + inode->i_ino); goto out; } } _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch git-cpufreq.patch git-gfs2-nmw.patch git-ieee1394.patch git-mtd.patch git-netdev-all.patch git-net.patch megaraid-fix-warnings-when-config_proc_fs=n.patch security-keys-user-kmemdup.patch paride-rename-pi_register-and-pi_unregister.patch paride_register-shuffle-return-values.patch compile-time-check-re-world-writeable-module-params.patch fs-trivial-vsnprintf-conversion.patch hpfs-bring-hpfs_error-into-shape.patch hpfs-fix-printk-format-warnings.patch drivers-cdrom-trivial-vsnprintf-conversion.patch drivers-isdn-trivial-vsnprintf-conversion.patch drivers-video-use-kmemdup.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