Received: by 10.223.176.5 with SMTP id f5csp272145wra; Fri, 2 Feb 2018 22:38:16 -0800 (PST) X-Google-Smtp-Source: AH8x227zrMdHL663k+M08X+69xx3O9u7duCWGFZCfHizRkLTFonHir73UOKIKvRAYIWwjeXB4cN6 X-Received: by 10.98.92.1 with SMTP id q1mr1241782pfb.238.1517639896293; Fri, 02 Feb 2018 22:38:16 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1517639896; cv=none; d=google.com; s=arc-20160816; b=n4Ai83pduHsQUERHlQ+BJuvQyvzrgOplgZNKLJeC+7v2t8jVzFPPidvwFFbhHWzQIR hOsn0S+9ZGRWEobovAte7CINCKQOeMc6mv/LV59hrRsmlv8enItAW9eusrilQ2lq+40K evB+qfYSCCtl4uRedfarCIIFfkgW9xds5E3lTsEkUG8MgzPCitsgpvx48CXQwtwM5Plh 6oYJT96cN3V6p9QcPm2S9szx3ujZrgvXnkC8pdrx2njJMlzQPvmG1zsK4IRu8ZznJuZW +zpA0/Atdh2BdvKz0/opaXAPfsw+tzU1HhpqQiG/xBszssH5Uk1Prb6sSzuHJgVbzJV9 hwaw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:arc-authentication-results; bh=zsNu6hDl4Qsb3EvObDJI+aJADN0oAEtYdcsMy7kVZFM=; b=Ca/ejt4r3Om/JuxdpDQsCWKJFyGqOUGFlhWHXbdYrFhhdWwYI1XeA0xUTilI+WZlTx wdD4ThbUmPMseVVwJkLomdYOzEgmfzxCv5nHWEDs3jbN66TZ6aEKJyCRS1lWD3ftKh7M 4dfE5O/LkWBLja5f2JNj3+ACexViPF6D+uJh1OO//7s5Rv2QjaT7u2LbmHDqlZkqlpGK PYznc2tgnRYoGB/7PK/HBQ8C6i5ayq64n5PUO6hkW+vbyzfvt1q2wf0MULBcIOM2ExFr LXm+wtRJaLbklk3kIMH8E57xI52v0us4KEp/zLZPY16JZLxNmQc3uC3SDpR7Npw+ak3T 120w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id f13si417112pgn.155.2018.02.02.22.37.47; Fri, 02 Feb 2018 22:38:16 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752542AbeBCCsd (ORCPT + 99 others); Fri, 2 Feb 2018 21:48:33 -0500 Received: from szxga06-in.huawei.com ([45.249.212.32]:41338 "EHLO huawei.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1752513AbeBCCs1 (ORCPT ); Fri, 2 Feb 2018 21:48:27 -0500 Received: from DGGEMS405-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 99FF9C08176F8; Sat, 3 Feb 2018 10:48:14 +0800 (CST) Received: from huawei.com (10.107.193.250) by DGGEMS405-HUB.china.huawei.com (10.3.19.205) with Microsoft SMTP Server id 14.3.361.1; Sat, 3 Feb 2018 10:48:08 +0800 From: Yunlong Song To: , , , , CC: , , , , , , Subject: [PATCH 2/2] f2fs: add GC_WRITTEN_PAGE to gc atomic file Date: Sat, 3 Feb 2018 10:47:48 +0800 Message-ID: <1517626068-49739-2-git-send-email-yunlong.song@huawei.com> X-Mailer: git-send-email 1.8.5.2 In-Reply-To: <1517626068-49739-1-git-send-email-yunlong.song@huawei.com> References: <1517626068-49739-1-git-send-email-yunlong.song@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.107.193.250] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch enables to gc atomic file by adding GC_WRITTEN_PAGE to identify the gced pages of atomic file, which can avoid register_inmem_page in set_page_dirty, so the gced pages will not mix with the inmem pages. Signed-off-by: Yunlong Song --- fs/f2fs/data.c | 7 ++++++- fs/f2fs/gc.c | 25 ++++++++++++++++++------- fs/f2fs/segment.h | 3 +++ 3 files changed, 27 insertions(+), 8 deletions(-) diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index edafcb6..5e1fc5d 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -120,6 +120,10 @@ static void f2fs_write_end_io(struct bio *bio) dec_page_count(sbi, type); clear_cold_data(page); + if (IS_GC_WRITTEN_PAGE(page)) { + set_page_private(page, 0); + ClearPagePrivate(page); + } end_page_writeback(page); } if (!get_pages(sbi, F2FS_WB_CP_DATA) && @@ -2418,7 +2422,8 @@ static int f2fs_set_data_page_dirty(struct page *page) if (!PageUptodate(page)) SetPageUptodate(page); - if (f2fs_is_atomic_file(inode) && !f2fs_is_commit_atomic_write(inode)) { + if (f2fs_is_atomic_file(inode) && !f2fs_is_commit_atomic_write(inode) + && !IS_GC_WRITTEN_PAGE(page)) { if (!IS_ATOMIC_WRITTEN_PAGE(page)) { register_inmem_page(inode, page); return 1; diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c index 84ab3ff..9d54ddb 100644 --- a/fs/f2fs/gc.c +++ b/fs/f2fs/gc.c @@ -622,10 +622,6 @@ static void move_data_block(struct inode *inode, block_t bidx, if (!check_valid_map(F2FS_I_SB(inode), segno, off)) goto out; - if (f2fs_is_atomic_file(inode) && - !f2fs_is_commit_atomic_write(inode)) - goto out; - if (f2fs_is_pinned_file(inode)) { f2fs_pin_file_control(inode, true); goto out; @@ -680,6 +676,12 @@ static void move_data_block(struct inode *inode, block_t bidx, goto put_page_out; } + if (f2fs_is_atomic_file(inode) && + !f2fs_is_commit_atomic_write(inode) && + !IS_GC_WRITTEN_PAGE(fio.encrypted_page)) { + set_page_private(fio.encrypted_page, (unsigned long)GC_WRITTEN_PAGE); + SetPagePrivate(fio.encrypted_page); + } set_page_dirty(fio.encrypted_page); f2fs_wait_on_page_writeback(fio.encrypted_page, DATA, true); if (clear_page_dirty_for_io(fio.encrypted_page)) @@ -730,9 +732,6 @@ static void move_data_page(struct inode *inode, block_t bidx, int gc_type, if (!check_valid_map(F2FS_I_SB(inode), segno, off)) goto out; - if (f2fs_is_atomic_file(inode) && - !f2fs_is_commit_atomic_write(inode)) - goto out; if (f2fs_is_pinned_file(inode)) { if (gc_type == FG_GC) f2fs_pin_file_control(inode, true); @@ -742,6 +741,12 @@ static void move_data_page(struct inode *inode, block_t bidx, int gc_type, if (gc_type == BG_GC) { if (PageWriteback(page)) goto out; + if (f2fs_is_atomic_file(inode) && + !f2fs_is_commit_atomic_write(inode) && + !IS_GC_WRITTEN_PAGE(page)) { + set_page_private(page, (unsigned long)GC_WRITTEN_PAGE); + SetPagePrivate(page); + } set_page_dirty(page); set_cold_data(page); } else { @@ -762,6 +767,12 @@ static void move_data_page(struct inode *inode, block_t bidx, int gc_type, int err; retry: + if (f2fs_is_atomic_file(inode) && + !f2fs_is_commit_atomic_write(inode) && + !IS_GC_WRITTEN_PAGE(page)) { + set_page_private(page, (unsigned long)GC_WRITTEN_PAGE); + SetPagePrivate(page); + } set_page_dirty(page); f2fs_wait_on_page_writeback(page, DATA, true); if (clear_page_dirty_for_io(page)) { diff --git a/fs/f2fs/segment.h b/fs/f2fs/segment.h index f11c4bc..f0a6432 100644 --- a/fs/f2fs/segment.h +++ b/fs/f2fs/segment.h @@ -203,11 +203,14 @@ struct segment_allocation { */ #define ATOMIC_WRITTEN_PAGE ((unsigned long)-1) #define DUMMY_WRITTEN_PAGE ((unsigned long)-2) +#define GC_WRITTEN_PAGE ((unsigned long)-3) #define IS_ATOMIC_WRITTEN_PAGE(page) \ (page_private(page) == (unsigned long)ATOMIC_WRITTEN_PAGE) #define IS_DUMMY_WRITTEN_PAGE(page) \ (page_private(page) == (unsigned long)DUMMY_WRITTEN_PAGE) +#define IS_GC_WRITTEN_PAGE(page) \ + (page_private(page) == (unsigned long)GC_WRITTEN_PAGE) struct inmem_pages { struct list_head list; -- 1.8.5.2