Re: [PATCH 09/10] xfs: nowait aio support
From: Jan Kara <jack@suse.cz>
Date: 2017-05-29 08:21:18
Also in:
linux-api, linux-btrfs, linux-ext4, linux-fsdevel, linux-xfs
From: Jan Kara <jack@suse.cz>
Date: 2017-05-29 08:21:18
Also in:
linux-api, linux-btrfs, linux-ext4, linux-fsdevel, linux-xfs
On Sun 28-05-17 21:38:26, Goldwyn Rodrigues wrote:
On 05/28/2017 04:31 AM, Christoph Hellwig wrote:quoted
Despite my previous reviewed-by tag this will need another fix: xfs_file_iomap_begin needs to return EAGAIN if we don't have the extent list in memoery already. E.g. something like this: if ((flags & IOMAP_NOWAIT) && !(ip->i_d.if_flags & XFS_IFEXTENTS)) { error = -EAGAIN; goto out_unlock; } right after locking the ilock.I am not sure if it is right to penalize the application to write to file which has been freshly opened (and is the first one to open). It basically means extent maps needs to be read from disk. Do you see a reason it would have a non-deterministic wait if it is the only user? I understand the block layer can block if it has too many requests though.
Well, submitting such write will have to wait for read of metadata from disk. That is certainly considered blocking so Christoph is right that we must return EAGAIN in such case. Honza -- Jan Kara [off-list ref] SUSE Labs, CR