From: Chandan Rajendra <chandan@linux.vnet.ibm.com>
To: bo.li.liu@oracle.com
Cc: linux-btrfs@vger.kernel.org, chandan@mykolab.com
Subject: Re: [PATCH V2] Btrfs: Direct I/O: Fix space accounting
Date: Fri, 28 Aug 2015 20:30:45 +0530 [thread overview]
Message-ID: <1799477.BQMYSeN9Uy@localhost.localdomain> (raw)
In-Reply-To: <20150828020810.GA12392@localhost.localdomain>
On Friday 28 Aug 2015 10:10:54 Liu Bo wrote:
> On Thu, Aug 27, 2015 at 11:39:00PM +0530, Chandan Rajendra wrote:
> > The following call trace is seen when generic/095 test is executed,
> >
> > WARNING: CPU: 3 PID: 2769 at
> > /home/chandan/code/repos/linux/fs/btrfs/inode.c:8967
> > btrfs_destroy_inode+0x284/0x2a0() Modules linked in:
> > CPU: 3 PID: 2769 Comm: umount Not tainted 4.2.0-rc5+ #31
> > Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS
> > 1.7.5-20150306_163512-brownie 04/01/2014>
> > ffffffff81c08150 ffff8802ec9cbce8 ffffffff81984058 ffff8802ffd8feb0
> > 0000000000000000 ffff8802ec9cbd28 ffffffff81050385 ffff8802ec9cbd38
> > ffff8802d12f8588 ffff8802d12f8588 ffff8802f15ab000 ffff8800bb96c0b0
> >
> > Call Trace:
> > [<ffffffff81984058>] dump_stack+0x45/0x57
> > [<ffffffff81050385>] warn_slowpath_common+0x85/0xc0
> > [<ffffffff81050465>] warn_slowpath_null+0x15/0x20
> > [<ffffffff81340294>] btrfs_destroy_inode+0x284/0x2a0
> > [<ffffffff8117ce07>] destroy_inode+0x37/0x60
> > [<ffffffff8117cf39>] evict+0x109/0x170
> > [<ffffffff8117cfd5>] dispose_list+0x35/0x50
> > [<ffffffff8117dd3a>] evict_inodes+0xaa/0x100
> > [<ffffffff81165667>] generic_shutdown_super+0x47/0xf0
> > [<ffffffff81165951>] kill_anon_super+0x11/0x20
> > [<ffffffff81302093>] btrfs_kill_super+0x13/0x110
> > [<ffffffff81165c99>] deactivate_locked_super+0x39/0x70
> > [<ffffffff811660cf>] deactivate_super+0x5f/0x70
> > [<ffffffff81180e1e>] cleanup_mnt+0x3e/0x90
> > [<ffffffff81180ebd>] __cleanup_mnt+0xd/0x10
> > [<ffffffff81069c06>] task_work_run+0x96/0xb0
> > [<ffffffff81003a3d>] do_notify_resume+0x3d/0x50
> > [<ffffffff8198cbc2>] int_signal+0x12/0x17
> >
> > This means that the inode had non-zero "outstanding extents" during
> > eviction. This occurs because, during direct I/O a task which successfully
> > used up its reserved data space would set BTRFS_INODE_DIO_READY bit and
> > does not clear the bit after finishing the DIO write. A future DIO write
> > could actually fail and the unused reserve space won't be freed because
> > of the previously set BTRFS_INODE_DIO_READY bit.
> >
> > Clearing the BTRFS_INODE_DIO_READY bit in btrfs_direct_IO() caused the
> > following issue,
> >
> > |-----------------------------------+-------------------------------------
> > ||
> > |
> > | Task A | Task B
> > | |
> > |
> > |-----------------------------------+-------------------------------------
> > ||
> > |
> > | Start direct i/o write on inode X |
> > | |
> > | reserve space |
> > | |
> > | Allocate ordered extent |
> > | |
> > | release reserved space |
> > | |
> > | Set BTRFS_INODE_DIO_READY bit |
> > | |
> > |
> > | | Start direct i/o write on inode X
> > | | |
> > | | reserve space
> > | | |
> > | | dio_refill_pages()
> > | | |
> > | | - sdio->blocks_available == 0
> > | | |
> > | | - Return -EFAULT
> > | | |
> > | | Since BTRFS_INODE_DIO_READY is set,
> > | | |
> > | | we don't release reserved space.
> > | | |
> > | | Clear BTRFS_INODE_DIO_READY bit.
> > | | |
> > |
> > | -EIOCBQUEUED is returned. |
> > | |
> > |
> > |-----------------------------------+-------------------------------------
> > ||
>
> This doesn't explain why dio_refill_pages() returns -EFAULT when
> normally it doesn't, and I think it's important to save reviewers' time to
> understand the failure.
>
> Also it'd be better to add a changelog for this v2 patch.
>
> Thanks,
>
> -liubo
>
Sorry for the trouble Liu. The reason for -EFAULT is exactly the same as what
you had found it to be on your machine i.e. splice() provides kernel space
address where as iov_iter_get_pages() expects a user space address. I will
update the commit message and also add the changelog for version V3 of the
patch.
--
chandan
prev parent reply other threads:[~2015-08-28 15:00 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-27 18:09 [PATCH V2] Btrfs: Direct I/O: Fix space accounting Chandan Rajendra
2015-08-28 2:10 ` Liu Bo
2015-08-28 15:00 ` Chandan Rajendra [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=1799477.BQMYSeN9Uy@localhost.localdomain \
--to=chandan@linux.vnet.ibm.com \
--cc=bo.li.liu@oracle.com \
--cc=chandan@mykolab.com \
--cc=linux-btrfs@vger.kernel.org \
/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