[PATCH] netfs, afs: Fix symlink reading

David Howells posted 1 patch 1 week, 2 days ago
fs/netfs/read_collect.c |    5 +++++
1 file changed, 5 insertions(+)
[PATCH] netfs, afs: Fix symlink reading
Posted by David Howells 1 week, 2 days ago
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.

Fixes: c0410adf3da6 ("afs: Fix the locking used by afs_get_link()")
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
---
 fs/netfs/read_collect.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/fs/netfs/read_collect.c b/fs/netfs/read_collect.c
index 5cf22087d243..a94197ef0181 100644
--- a/fs/netfs/read_collect.c
+++ b/fs/netfs/read_collect.c
@@ -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) {
Re: [PATCH] netfs, afs: Fix symlink reading
Posted by Christian Brauner 1 week ago
On Tue, 15 Sep 2026 17:21:59 +0100, David Howells wrote:
> 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.
> 
> [...]

Applied to the vfs.fixes branch of the vfs/vfs.git tree.
Patches in the vfs.fixes branch should appear in linux-next soon.

Please report any outstanding bugs that were missed during review in a
new review to the original patch series allowing us to drop it.

It's encouraged to provide Acked-bys and Reviewed-bys even though the
patch has now been applied. If possible patch trailers will be updated.

Note that commit hashes shown below are subject to change due to rebase,
trailer updates or similar. If in doubt, please check the listed branch.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
branch: vfs.fixes

[1/1] netfs, afs: Fix symlink reading
      https://git.kernel.org/vfs/vfs/c/c51e89c5b5db
Re: [PATCH] netfs, afs: Fix symlink reading
Posted by Paulo Alcantara 1 week, 2 days ago
David Howells <dhowells@redhat.com> writes:

> 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.
>
> Fixes: c0410adf3da6 ("afs: Fix the locking used by afs_get_link()")
> 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

Reviewed-by: Paulo Alcantara <pc@manguebit.org>