From: Nikolay Borisov <nborisov@suse.com>
To: Goldwyn Rodrigues <rgoldwyn@suse.de>, linux-fsdevel@vger.kernel.org
Cc: jack@suse.cz, linux-btrfs@vger.kernel.org
Subject: Re: [PATCH 7/7] nonblocking aio: btrfs
Date: Tue, 14 Feb 2017 11:24:42 +0200 [thread overview]
Message-ID: <c88c6498-40ad-fd8b-abd8-bc5599fc72d9@suse.com> (raw)
In-Reply-To: <20170214024603.9563-8-rgoldwyn@suse.de>
On 14.02.2017 04:46, Goldwyn Rodrigues wrote:
> From: Goldwyn Rodrigues <rgoldwyn@suse.com>
>
> Return EAGAIN if any of the following checks fail
> + i_rwsem is lockable
> + NODATACOW or PREALLOC is set
perhaps you wanted to say "NODATACOW or PREALLOC is _not_ set"? See below
> + Can nocow at the desired location
> + Writing beyond end of file
>
> Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com>
> ---
> fs/btrfs/file.c | 25 ++++++++++++++++++++-----
> fs/btrfs/inode.c | 3 +++
> 2 files changed, 23 insertions(+), 5 deletions(-)
>
> diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
> index 3a14c87..f4dcc7a 100644
> --- a/fs/btrfs/file.c
> +++ b/fs/btrfs/file.c
> @@ -1804,12 +1804,29 @@ static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
> ssize_t num_written = 0;
> bool sync = (file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host);
> ssize_t err;
> - loff_t pos;
> - size_t count;
> + loff_t pos = iocb->ki_pos;
> + size_t count = iov_iter_count(from);
> loff_t oldsize;
> int clean_page = 0;
>
> - inode_lock(inode);
> + if ((iocb->ki_flags & IOCB_NONBLOCKING) &&
> + (iocb->ki_flags & IOCB_DIRECT)) {
> + /* Don't sleep on inode rwsem */
> + if (!inode_trylock(inode))
> + return -EAGAIN;
> + /*
> + * We will allocate space in case nodatacow is not set,
> + * so bail
> + */
> + if (!(BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
> + BTRFS_INODE_PREALLOC)) ||
The first part of the condition will evaluate to true only when both
btrfs_inode_nodatacow and btrfs_inodeprealloc are not set. The code
contradicts your statement in the change log.
> + check_can_nocow(inode, pos, &count) <= 0) {
> + inode_unlock(inode);
> + return -EAGAIN;
> + }
> + } else
> + inode_lock(inode);
> +
> err = generic_write_checks(iocb, from);
> if (err <= 0) {
> inode_unlock(inode);
> @@ -1843,8 +1860,6 @@ static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
> */
> update_time_for_write(inode);
>
> - pos = iocb->ki_pos;
> - count = iov_iter_count(from);
> start_pos = round_down(pos, root->sectorsize);
> oldsize = i_size_read(inode);
> if (start_pos > oldsize) {
> diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
> index be4da91..9911ebd 100644
> --- a/fs/btrfs/inode.c
> +++ b/fs/btrfs/inode.c
> @@ -8690,6 +8690,9 @@ static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
> if (offset + count <= inode->i_size) {
> inode_unlock(inode);
> relock = true;
> + } else if (iocb->ki_flags & IOCB_NONBLOCKING) {
> + ret = -EAGAIN;
> + goto out;
> }
> ret = btrfs_delalloc_reserve_space(inode, offset, count);
> if (ret)
>
prev parent reply other threads:[~2017-02-14 9:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20170214024603.9563-1-rgoldwyn@suse.de>
2017-02-14 2:46 ` [PATCH 7/7] nonblocking aio: btrfs Goldwyn Rodrigues
2017-02-14 9:24 ` Nikolay Borisov [this message]
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=c88c6498-40ad-fd8b-abd8-bc5599fc72d9@suse.com \
--to=nborisov@suse.com \
--cc=jack@suse.cz \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=rgoldwyn@suse.de \
/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).