The patch titled fs/cramfs/inode.c: remove unused variable has been added to the -mm tree. Its filename is fs-cramfs-inodec-remove-unused-variable.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 ------------------------------------------------------ Subject: fs/cramfs/inode.c: remove unused variable From: Andi Drebes <lists-receive@xxxxxxxxxxxxxxxxxxx> Remove a variable that is never read. Signed-off-by: Andi Drebes <lists-receive@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/cramfs/inode.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN fs/cramfs/inode.c~fs-cramfs-inodec-remove-unused-variable fs/cramfs/inode.c --- a/fs/cramfs/inode.c~fs-cramfs-inodec-remove-unused-variable +++ a/fs/cramfs/inode.c @@ -148,7 +148,7 @@ static void *cramfs_read(struct super_bl { struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping; struct page *pages[BLKS_PER_BUF]; - unsigned i, blocknr, buffer, unread; + unsigned i, blocknr, buffer; unsigned long devsize; char *data; @@ -175,7 +175,6 @@ static void *cramfs_read(struct super_bl devsize = mapping->host->i_size >> PAGE_CACHE_SHIFT; /* Ok, read in BLKS_PER_BUF pages completely first. */ - unread = 0; for (i = 0; i < BLKS_PER_BUF; i++) { struct page *page = NULL; _ 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