The patch titled fs/cramfs/inode.c: remove error variable has been removed from the -mm tree. Its filename was fs-cramfs-inodec-remove-error-variable.patch This patch was dropped because it was withdrawn ------------------------------------------------------ Subject: fs/cramfs/inode.c: remove error variable From: Andi Drebes <lists-receive@xxxxxxxxxxxxxxxxxxx> Remove a variable from fs/cramfs/inode.c that is just used to store a return value which is immediately read afterwards. Tested on an i386 box. Signed-off-by: Andi Drebes <lists-receive@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/cramfs/inode.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff -puN fs/cramfs/inode.c~fs-cramfs-inodec-remove-error-variable fs/cramfs/inode.c --- a/fs/cramfs/inode.c~fs-cramfs-inodec-remove-error-variable +++ a/fs/cramfs/inode.c @@ -372,7 +372,7 @@ static int cramfs_readdir(struct file *f char *name; ino_t ino; mode_t mode; - int namelen, error; + int namelen; mutex_lock(&read_mutex); de = cramfs_read(sb, OFFSET(inode) + offset, sizeof(*de)+CRAMFS_MAXPATHLEN); @@ -398,8 +398,7 @@ static int cramfs_readdir(struct file *f break; namelen--; } - error = filldir(dirent, buf, namelen, offset, ino, mode >> 12); - if (error) + if (filldir(dirent, buf, namelen, offset, ino, mode >> 12)) break; offset = nextoffset; _ Patches currently in -mm which might be from lists-receive@xxxxxxxxxxxxxxxxxxx are git-dvb.patch cramfs-error-message-about-endianess.patch fs-cramfs-inodec-remove-unused-variable.patch fs-cramfs-inodec-replace-hardcoded-value-with-preprocessor-constant.patch fs-cramfs-inodec-remove-error-variable.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