The patch titled Subject: f2fs-simplify-page-iteration-loops-fix has been removed from the -mm tree. Its filename was f2fs-simplify-page-iteration-loops-fix.patch This patch was dropped because it was folded into f2fs-simplify-page-iteration-loops.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: f2fs-simplify-page-iteration-loops-fix fix warnings fs/f2fs/checkpoint.c: In function 'sync_meta_pages': fs/f2fs/checkpoint.c:322: warning: suggest parentheses around assignment used as truth value fs/f2fs/node.c: In function 'last_fsync_dnode': fs/f2fs/node.c:1289: warning: suggest parentheses around assignment used as truth value fs/f2fs/node.c: In function 'fsync_node_pages': fs/f2fs/node.c:1443: warning: suggest parentheses around assignment used as truth value fs/f2fs/node.c: In function 'sync_node_pages': fs/f2fs/node.c:1556: warning: suggest parentheses around assignment used as truth value fs/f2fs/node.c: In function 'wait_on_node_pages_writeback': fs/f2fs/node.c:1654: warning: suggest parentheses around assignment used as truth value Cc: Chao Yu <yuchao0@xxxxxxxxxx> Cc: Daniel Jordan <daniel.m.jordan@xxxxxxxxxx> Cc: Jaegeuk Kim <jaegeuk@xxxxxxxxxx> Cc: Jan Kara <jack@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/f2fs/checkpoint.c | 4 ++-- fs/f2fs/node.c | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff -puN fs/f2fs/checkpoint.c~f2fs-simplify-page-iteration-loops-fix fs/f2fs/checkpoint.c --- a/fs/f2fs/checkpoint.c~f2fs-simplify-page-iteration-loops-fix +++ a/fs/f2fs/checkpoint.c @@ -318,8 +318,8 @@ long sync_meta_pages(struct f2fs_sb_info blk_start_plug(&plug); - while (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, - PAGECACHE_TAG_DIRTY, PAGEVEC_SIZE)) { + while ((nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, + PAGECACHE_TAG_DIRTY, PAGEVEC_SIZE))) { int i; for (i = 0; i < nr_pages; i++) { diff -puN fs/f2fs/node.c~f2fs-simplify-page-iteration-loops-fix fs/f2fs/node.c --- a/fs/f2fs/node.c~f2fs-simplify-page-iteration-loops-fix +++ a/fs/f2fs/node.c @@ -1285,8 +1285,8 @@ static struct page *last_fsync_dnode(str pagevec_init(&pvec, 0); index = 0; - while (nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, - PAGECACHE_TAG_DIRTY, PAGEVEC_SIZE)) { + while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, + PAGECACHE_TAG_DIRTY, PAGEVEC_SIZE))) { int i; for (i = 0; i < nr_pages; i++) { @@ -1439,8 +1439,8 @@ retry: pagevec_init(&pvec, 0); index = 0; - while (nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, - PAGECACHE_TAG_DIRTY, PAGEVEC_SIZE)) { + while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, + PAGECACHE_TAG_DIRTY, PAGEVEC_SIZE))) { int i; for (i = 0; i < nr_pages; i++) { @@ -1552,8 +1552,8 @@ int sync_node_pages(struct f2fs_sb_info next_step: index = 0; - while (nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, - PAGECACHE_TAG_DIRTY, PAGEVEC_SIZE)) { + while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, + PAGECACHE_TAG_DIRTY, PAGEVEC_SIZE))) { int i; for (i = 0; i < nr_pages; i++) { @@ -1650,8 +1650,8 @@ int wait_on_node_pages_writeback(struct pagevec_init(&pvec, 0); - while (nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, - PAGECACHE_TAG_WRITEBACK, PAGEVEC_SIZE)) { + while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index, + PAGECACHE_TAG_WRITEBACK, PAGEVEC_SIZE))) { int i; for (i = 0; i < nr_pages; i++) { _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are include-linux-sched-mmh-uninline-mmdrop_async-etc.patch f2fs-simplify-page-iteration-loops.patch mm-consolidate-page-table-accounting-fix-fix.patch mm-stop-zeroing-memory-during-allocation-in-vmemmap-fix.patch mm-batch-radix-tree-operations-when-truncating-pages-fix-fix.patch mm-simplify-nodemask-printing-fix.patch mm-make-alloc_node_mem_map-a-voidcall-if-we-dont-have-config_flat_node_mem_map-fix.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