From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wu Fengguang Subject: [PATCH 03/45] ext4: remove unused parameter wbc from __ext4_journalled_writepage() Date: Wed, 07 Oct 2009 15:38:21 +0800 Message-ID: <20091007074901.484264566@intel.com> References: <20091007073818.318088777@intel.com> Cc: Theodore Tso , Christoph Hellwig , Dave Chinner , Chris Mason , Peter Zijlstra , "Li Shaohua" , "Myklebust Trond" , "jens.axboe@oracle.com" , Jan Kara , Nick Piggin , , Wu Fengguang To: Andrew Morton Return-path: Received: from mga03.intel.com ([143.182.124.21]:9396 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750810AbZJGIAD (ORCPT ); Wed, 7 Oct 2009 04:00:03 -0400 Cc: LKML Content-Disposition: inline; filename=writeback-ext4-remove-wbc.patch Sender: linux-fsdevel-owner@vger.kernel.org List-ID: CC: Theodore Ts'o CC: Jan Kara Signed-off-by: Wu Fengguang --- fs/ext4/inode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- linux.orig/fs/ext4/inode.c 2009-10-06 23:31:41.000000000 +0800 +++ linux/fs/ext4/inode.c 2009-10-06 23:31:54.000000000 +0800 @@ -2599,7 +2599,6 @@ static int bput_one(handle_t *handle, st } static int __ext4_journalled_writepage(struct page *page, - struct writeback_control *wbc, unsigned int len) { struct address_space *mapping = page->mapping; @@ -2757,7 +2756,7 @@ static int ext4_writepage(struct page *p * doesn't seem much point in redirtying the page here. */ ClearPageChecked(page); - return __ext4_journalled_writepage(page, wbc, len); + return __ext4_journalled_writepage(page, len); } if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode))