mirror of
https://github.com/torvalds/linux.git
synced 2026-09-27 11:02:03 +02:00
netfs, afs: Fix symlink reading
Fix the reading of symlinks from the cache in afs by making netfslib trim
the amount read down to i_size. The problem is that afs sets the size of
the iterator to the size of the buffer (PAGE_SIZE) so that the cache can
round the read size up to the cache's DIO size.
Note that this also impacts the reading of AFS mountpoints as they're just
stored as symlinks with an odd file mode.
Link: https://patch.msgid.link/3912795.1789489319@warthog.procyon.org.uk
Fixes: c0410adf3d ("afs: Fix the locking used by afs_get_link()")
Reviewed-by: Paulo Alcantara <pc@manguebit.org>
cc: Paulo Alcantara <pc@manguebit.org>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: linux-afs@lists.infradead.org
cc: netfs@lists.linux.dev
cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Christian Brauner (Amutable) <brauner@kernel.org>
This commit is contained in:
parent
fc3ae66514
commit
c51e89c5b5
|
|
@ -435,6 +435,11 @@ static void netfs_rreq_assess_single(struct netfs_io_request *rreq)
|
|||
netfs_single_mark_inode_dirty(rreq->inode);
|
||||
}
|
||||
|
||||
/* To do DIO, the cache has to round the size up, so we need to undo
|
||||
* the rounding.
|
||||
*/
|
||||
rreq->transferred = min(rreq->transferred, rreq->i_size);
|
||||
|
||||
if (rreq->iocb) {
|
||||
rreq->iocb->ki_pos += rreq->transferred;
|
||||
if (rreq->iocb->ki_complete) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user