From patchwork Wed Nov 12 07:53:17 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Toshiyuki Okajima X-Patchwork-Id: 8325 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 3E9CBDDD04 for ; Wed, 12 Nov 2008 19:02:52 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751161AbYKLICu (ORCPT ); Wed, 12 Nov 2008 03:02:50 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751273AbYKLICt (ORCPT ); Wed, 12 Nov 2008 03:02:49 -0500 Received: from fgwmail7.fujitsu.co.jp ([192.51.44.37]:50961 "EHLO fgwmail7.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751161AbYKLICs (ORCPT ); Wed, 12 Nov 2008 03:02:48 -0500 Received: from m3.gw.fujitsu.co.jp ([10.0.50.73]) by fgwmail7.fujitsu.co.jp (Fujitsu Gateway) with ESMTP id mAC82lNi028612 (envelope-from toshi.okajima@jp.fujitsu.com); Wed, 12 Nov 2008 17:02:47 +0900 Received: from smail (m3 [127.0.0.1]) by outgoing.m3.gw.fujitsu.co.jp (Postfix) with ESMTP id 3646C45DD83; Wed, 12 Nov 2008 17:02:47 +0900 (JST) Received: from s3.gw.fujitsu.co.jp (s3.gw.fujitsu.co.jp [10.0.50.93]) by m3.gw.fujitsu.co.jp (Postfix) with ESMTP id DE0F545DD7B; Wed, 12 Nov 2008 17:02:46 +0900 (JST) Received: from s3.gw.fujitsu.co.jp (localhost.localdomain [127.0.0.1]) by s3.gw.fujitsu.co.jp (Postfix) with ESMTP id A1686E0800D; Wed, 12 Nov 2008 17:02:46 +0900 (JST) Received: from m108.s.css.fujitsu.com (m108.s.css.fujitsu.com [10.249.87.108]) by s3.gw.fujitsu.co.jp (Postfix) with ESMTP id 2F538E08002; Wed, 12 Nov 2008 17:02:46 +0900 (JST) Received: from m108.css.fujitsu.com (m108 [127.0.0.1]) by m108.s.css.fujitsu.com (Postfix) with ESMTP id 000ED42805A; Wed, 12 Nov 2008 17:02:45 +0900 (JST) Received: from stratos.soft.fujitsu.com (stratos.soft.fujitsu.com [10.124.101.114]) by m108.s.css.fujitsu.com (Postfix) with SMTP id 5CF78428057; Wed, 12 Nov 2008 17:02:45 +0900 (JST) Date: Wed, 12 Nov 2008 16:53:17 +0900 From: Toshiyuki Okajima To: akpm@linux-foundation.org, tytso@mit.edu, viro@zeniv.linux.org.uk, sct@redhat.com, adilger@sun.com Cc: linux-ext4@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: [PATCH 2/3][RFC] ext3: release block-device-mapping buffer_heads which have the filesystem private data for avoiding oom-killer Message-Id: <20081112165317.f0c86284.toshi.okajima@jp.fujitsu.com> In-Reply-To: <4913B35A.8080203@jp.fujitsu.com> References: <20081017.223716.147444348.00960188@stratos.soft.fujitsu.com> <20081020160249.ff41f762.akpm@linux-foundation.org> <20081023174101.85b59177.toshi.okajima@jp.fujitsu.com> <20081027142657.2120aa3f.akpm@linux-foundation.org> <49067D03.6080609@jp.fujitsu.com> <20081105131140.7689f048.toshi.okajima@jp.fujitsu.com> <20081105135349.GA22998@mit.edu> <4913B35A.8080203@jp.fujitsu.com> Organization: Fujitsu co.,ltd. X-Mailer: Sylpheed 2.5.0rc2 (GTK+ 2.12.12; i386-redhat-linux-gnu) Mime-Version: 1.0 Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org [PATCH 2/3] ext3: release block-device-mapping buffer_heads which have the filesystem private data for avoiding oom-killer Implement releasepage() of a client of a block device to release its private data (journal_heads) and the page. The client is an ext3 filesystem. This function is called from releasepage() of the block-device mapping, blkdev_releasepage(). Signed-off-by: Toshiyuki Okajima --- fs/ext3/inode.c | 16 ++++++++++++++++ fs/ext3/super.c | 2 ++ include/linux/ext3_fs.h | 2 ++ 3 files changed, 20 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff -Nurp linux-2.6.28-rc4.orig/fs/ext3/inode.c linux-2.6.28-rc4/fs/ext3/inode.c --- linux-2.6.28-rc4.orig/fs/ext3/inode.c 2008-11-10 09:36:15.000000000 +0900 +++ linux-2.6.28-rc4/fs/ext3/inode.c 2008-11-11 09:31:13.000000000 +0900 @@ -1680,6 +1680,28 @@ static int ext3_releasepage(struct page } /* + * ext3_release_metadata: try to release own page. + * The mapping of this page is block device's. Therefore try_to_free_buffers() + * cannot release it. As a result, a function which releases own page is + * required. + */ +int ext3_release_metadata(void *client, struct page *page, gfp_t wait) +{ + struct super_block *sb = (struct super_block*)client; + journal_t *journal; + + WARN_ON(PageChecked(page)); + if (!page_has_buffers(page)) + return 0; + BUG_ON(EXT3_SB(sb) == NULL); + journal = EXT3_SB(sb)->s_journal; + if (journal != NULL) + return journal_try_to_free_buffers(journal, page, wait); + else + return try_to_free_buffers(page); +} + +/* * If the O_DIRECT write will extend the file then add this inode to the * orphan list. So recovery will truncate it back to the original size * if the machine crashes during the write. diff -Nurp linux-2.6.28-rc4.orig/fs/ext3/super.c linux-2.6.28-rc4/fs/ext3/super.c --- linux-2.6.28-rc4.orig/fs/ext3/super.c 2008-11-10 09:36:15.000000000 +0900 +++ linux-2.6.28-rc4/fs/ext3/super.c 2008-11-11 09:01:53.000000000 +0900 @@ -2972,6 +2972,8 @@ static struct file_system_type ext3_fs_t .name = "ext3", .get_sb = ext3_get_sb, .kill_sb = kill_block_super, + .release_metadata + = ext3_release_metadata, .fs_flags = FS_REQUIRES_DEV, }; diff -Nurp linux-2.6.28-rc4.orig/include/linux/ext3_fs.h linux-2.6.28-rc4/include/linux/ext3_fs.h --- linux-2.6.28-rc4.orig/include/linux/ext3_fs.h 2008-11-10 09:36:15.000000000 +0900 +++ linux-2.6.28-rc4/include/linux/ext3_fs.h 2008-11-10 18:33:52.000000000 +0900 @@ -841,6 +841,8 @@ extern void ext3_get_inode_flags(struct extern void ext3_set_aops(struct inode *inode); extern int ext3_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, u64 start, u64 len); +extern int ext3_release_metadata(void *client, struct page *page, + gfp_t wait); /* ioctl.c */ extern int ext3_ioctl (struct inode *, struct file *, unsigned int,