Received: by 2002:a25:ad19:0:0:0:0:0 with SMTP id y25csp523411ybi; Fri, 12 Jul 2019 00:05:40 -0700 (PDT) X-Google-Smtp-Source: APXvYqyh9XEhF3gPIu50M8zMtbMDF7p3s1Fbmks91dXfJ8Xr9w8eIMa2f6pzxjfui9s/f5oC7Q3q X-Received: by 2002:a17:902:1e7:: with SMTP id b94mr9742010plb.333.1562915140453; Fri, 12 Jul 2019 00:05:40 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1562915140; cv=none; d=google.com; s=arc-20160816; b=ChaMqQZG9bKpo6NfuMSK58Zb5HGG6j719N5cTBLOwEwBmR4MM7asu1xBiW8Um1Pnw/ 9cVIy64C6aVw5DXoxQu0pnW4G93/bSDHtNYjPk4RgI1G92+Lg2LnYnfdtPUmRpDJT809 n4ehXwfdHkH1xpBgsG++zERPnvFUMswH0zgKaMum3cJUw3qsZamFwD90XHyHngSc0eJe xeEmeP0VpDGhsT/zp8CmD8rmz1p888AdXxcvD+NQU9dx4xu7q2N/mSXi1KN8xgdjvL2y COPFklZF7YSH8Gc7uyI5fzqBz3zDQQXHoX0diWWg58cNCWLsmSTxOz6GsRdkSw1efqu6 yRrg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=TmW3YWQClQImMKcGr9F1+NI0OivSlX7f8Nw/+MPNSXk=; b=IqfMhY8+KlwRlnKGcpzWoKrYBDYLtMAI4X7USReyYjbbAkakqU2jFA1zPsnrg5ypic MVvHQMXyRtxkzWbyVjr5B/YANu0SkHHHu5MttbyV4iAnPKnHN9uf0Nhiic4Wuzf1P+jA 93mjBWZVnbQrg4uAB+B1xqGJJLEI2imVToDNhAZf5cCUnjYczXi0y65Id7uRw914I2j7 sba9GVUXw7A2CTsINOTLYT6zwbvWFA140YC5/e1kv83VoxTn9Aj9tdO2hIABglVw8WVS OVqy5XgeLZOnWHyrsTkdU7YqjV37HKvmtvWQirWCN/ELDjA6mbR7ZwB3xIU+SlFWfhgP XBUQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-ext4-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id k15si7487299pga.99.2019.07.12.00.05.25; Fri, 12 Jul 2019 00:05:40 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-ext4-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-ext4-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726078AbfGLHC4 (ORCPT + 99 others); Fri, 12 Jul 2019 03:02:56 -0400 Received: from out30-54.freemail.mail.aliyun.com ([115.124.30.54]:57569 "EHLO out30-54.freemail.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725866AbfGLHC4 (ORCPT ); Fri, 12 Jul 2019 03:02:56 -0400 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R191e4;CH=green;DM=||false|;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01e04407;MF=joseph.qi@linux.alibaba.com;NM=1;PH=DS;RN=5;SR=0;TI=SMTPD_---0TWgg66T_1562914972; Received: from localhost(mailfrom:joseph.qi@linux.alibaba.com fp:SMTPD_---0TWgg66T_1562914972) by smtp.aliyun-inc.com(127.0.0.1); Fri, 12 Jul 2019 15:02:52 +0800 From: Joseph Qi To: akpm@linux-foundation.org Cc: Theodore Ts'o , Ross Zwisler , linux-ext4@vger.kernel.org, ocfs2-devel@oss.oracle.com Subject: [PATCH 1/2] ocfs2: use jbd2_inode dirty range scoping Date: Fri, 12 Jul 2019 15:02:51 +0800 Message-Id: <1562914972-97318-1-git-send-email-joseph.qi@linux.alibaba.com> X-Mailer: git-send-email 1.8.3.1 Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org commit 6ba0e7dc64a5 ("jbd2: introduce jbd2_inode dirty range scoping") allow us scoping each of the inode dirty ranges associated with a given transaction, and ext4 already does this way. Now let's also use the newly introduced jbd2_inode dirty range scoping to prevent us from waiting forever when trying to complete a journal transaction in ocfs2. Signed-off-by: Joseph Qi --- fs/ocfs2/alloc.c | 4 +++- fs/ocfs2/aops.c | 6 ++++-- fs/ocfs2/file.c | 10 +++++++--- fs/ocfs2/journal.h | 6 ++++-- 4 files changed, 18 insertions(+), 8 deletions(-) diff --git a/fs/ocfs2/alloc.c b/fs/ocfs2/alloc.c index d1348fc..2a58ca4 100644 --- a/fs/ocfs2/alloc.c +++ b/fs/ocfs2/alloc.c @@ -6792,6 +6792,8 @@ void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle, struct page *page, int zero, u64 *phys) { int ret, partial = 0; + loff_t start_byte = ((loff_t)page->index << PAGE_SHIFT) + from; + loff_t length = to - from; ret = ocfs2_map_page_blocks(page, phys, inode, from, to, 0); if (ret) @@ -6811,7 +6813,7 @@ void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle, if (ret < 0) mlog_errno(ret); else if (ocfs2_should_order_data(inode)) { - ret = ocfs2_jbd2_file_inode(handle, inode); + ret = ocfs2_jbd2_file_inode(handle, inode, start_byte, length); if (ret < 0) mlog_errno(ret); } diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c index a4c905d..bbb508a 100644 --- a/fs/ocfs2/aops.c +++ b/fs/ocfs2/aops.c @@ -942,7 +942,7 @@ static void ocfs2_write_failure(struct inode *inode, if (tmppage && page_has_buffers(tmppage)) { if (ocfs2_should_order_data(inode)) - ocfs2_jbd2_file_inode(wc->w_handle, inode); + ocfs2_jbd2_file_inode(wc->w_handle, inode, user_pos, user_len); block_commit_write(tmppage, from, to); } @@ -2024,7 +2024,9 @@ int ocfs2_write_end_nolock(struct address_space *mapping, if (page_has_buffers(tmppage)) { if (handle && ocfs2_should_order_data(inode)) - ocfs2_jbd2_file_inode(handle, inode); + ocfs2_jbd2_file_inode(handle, inode, + ((loff_t)tmppage->index << PAGE_SHIFT) + from, + to - from); block_commit_write(tmppage, from, to); } } diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 4435df3..43e6c28 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -706,7 +706,9 @@ static int ocfs2_extend_allocation(struct inode *inode, u32 logical_start, * Thus, we need to explicitly order the zeroed pages. */ static handle_t *ocfs2_zero_start_ordered_transaction(struct inode *inode, - struct buffer_head *di_bh) + struct buffer_head *di_bh, + loff_t start_bytes, + loff_t length) { struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); handle_t *handle = NULL; @@ -722,7 +724,7 @@ static handle_t *ocfs2_zero_start_ordered_transaction(struct inode *inode, goto out; } - ret = ocfs2_jbd2_file_inode(handle, inode); + ret = ocfs2_jbd2_file_inode(handle, inode, start_bytes, length); if (ret < 0) { mlog_errno(ret); goto out; @@ -761,7 +763,9 @@ static int ocfs2_write_zero_page(struct inode *inode, u64 abs_from, BUG_ON(abs_to > (((u64)index + 1) << PAGE_SHIFT)); BUG_ON(abs_from & (inode->i_blkbits - 1)); - handle = ocfs2_zero_start_ordered_transaction(inode, di_bh); + handle = ocfs2_zero_start_ordered_transaction(inode, di_bh, + abs_from, + abs_to - abs_from); if (IS_ERR(handle)) { ret = PTR_ERR(handle); goto out; diff --git a/fs/ocfs2/journal.h b/fs/ocfs2/journal.h index c0fe6ed..932e6a8 100644 --- a/fs/ocfs2/journal.h +++ b/fs/ocfs2/journal.h @@ -603,9 +603,11 @@ static inline int ocfs2_calc_tree_trunc_credits(struct super_block *sb, return credits; } -static inline int ocfs2_jbd2_file_inode(handle_t *handle, struct inode *inode) +static inline int ocfs2_jbd2_file_inode(handle_t *handle, struct inode *inode, + loff_t start_byte, loff_t length) { - return jbd2_journal_inode_add_write(handle, &OCFS2_I(inode)->ip_jinode); + return jbd2_journal_inode_ranged_write(handle, &OCFS2_I(inode)->ip_jinode, + start_byte, length); } static inline int ocfs2_begin_ordered_truncate(struct inode *inode, -- 1.8.3.1