]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
afs: Fix missing wire-up of afs_retry_request()
authorDavid Howells <dhowells@redhat.com>
Sat, 14 Sep 2024 20:40:02 +0000 (21:40 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Oct 2024 10:00:06 +0000 (12:00 +0200)
[ Upstream commit 2cf36327ee1e47733aba96092d7bd082a4056ff5 ]

afs_retry_request() is supposed to be pointed to by the afs_req_ops netfs
operations table, but the pointer got lost somewhere.  The function is used
during writeback to rotate through the authentication keys that were in
force when the file was modified locally.

Fix this by adding the pointer to the function.

Fixes: 1ecb146f7cd8 ("netfs, afs: Use writeback retry to deal with alternate keys")
Reported-by: Dr. David Alan Gilbert <linux@treblig.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Link: https://lore.kernel.org/r/1690847.1726346402@warthog.procyon.org.uk
cc: Marc Dionne <marc.dionne@auristor.com>
cc: Jeff Layton <jlayton@kernel.org>
cc: linux-afs@lists.infradead.org
cc: netfs@lists.linux.dev
cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/afs/file.c

index c3f0c45ae9a9b6f6582accd6e9365862808fb7e1..e0885cfeb72a72f2d81d8eea9a973f2772945e73 100644 (file)
@@ -403,6 +403,7 @@ const struct netfs_request_ops afs_req_ops = {
        .begin_writeback        = afs_begin_writeback,
        .prepare_write          = afs_prepare_write,
        .issue_write            = afs_issue_write,
+       .retry_request          = afs_retry_request,
 };
 
 static void afs_add_open_mmap(struct afs_vnode *vnode)