From: Jaegeuk Kim <jaegeuk@kernel.org>
To: Yunlei He <heyunlei@huawei.com>
Cc: linux-f2fs-devel@lists.sourceforge.net
Subject: Re: [PATCH] f2fs: no need lock_op in f2fs_write_inline_data
Date: Thu, 23 Feb 2017 11:45:29 -0800 [thread overview]
Message-ID: <20170223194529.GE2026@jaegeuk.local> (raw)
In-Reply-To: <20170223123120.18842-1-heyunlei@huawei.com>
Hi Yunlei,
On 02/23, Yunlei He wrote:
> Similar as f2fs_write_inode, f2fs_write_inline_data just
> mark inode page dirty, so it's no need to write inline data
> under read lock of cp_rwsem.
We count # of dirty inodes that we need to flush through f2fs_write_inode, so
it's fine to go without f2fs_lock_op. In this case, however, I don't think we
can do like this.
Thanks,
>
> Signed-off-by: Yunlei He <heyunlei@huawei.com>
> ---
> fs/f2fs/data.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
> index 5f3bc98..836a15a 100644
> --- a/fs/f2fs/data.c
> +++ b/fs/f2fs/data.c
> @@ -1414,9 +1414,9 @@ static int __write_data_page(struct page *page, bool *submitted,
> goto redirty_out;
>
> err = -EAGAIN;
> - f2fs_lock_op(sbi);
> if (f2fs_has_inline_data(inode))
> err = f2fs_write_inline_data(inode, page);
> + f2fs_lock_op(sbi);
> if (err == -EAGAIN)
> err = do_write_data_page(&fio);
> if (F2FS_I(inode)->last_disk_size < psize)
> --
> 2.10.1
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
next prev parent reply other threads:[~2017-02-23 19:45 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-23 12:31 [PATCH] f2fs: no need lock_op in f2fs_write_inline_data Yunlei He
2017-02-23 19:45 ` Jaegeuk Kim [this message]
2017-02-24 3:29 ` heyunlei
2017-02-24 19:58 ` Jaegeuk Kim
2017-02-25 0:59 ` Chao Yu
2017-02-25 1:58 ` heyunlei
2017-02-25 2:10 ` Jaegeuk Kim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170223194529.GE2026@jaegeuk.local \
--to=jaegeuk@kernel.org \
--cc=heyunlei@huawei.com \
--cc=linux-f2fs-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).