diff options
author | 2024-09-06 17:30:33 -0700 | |
---|---|---|
committer | 2024-09-06 17:30:33 -0700 | |
commit | a86b83f77797ad1289601beb9a9ea61ad9f593cc (patch) | |
tree | d2e3a36fca71a4a71b0dfb9ac6e35f9faf7f138b /fs/netfs/io.c | |
parent | KVM: x86: don't fall through case statements without annotations (diff) | |
parent | netfs, cifs: Improve some debugging bits (diff) | |
download | wireguard-linux-a86b83f77797ad1289601beb9a9ea61ad9f593cc.tar.xz wireguard-linux-a86b83f77797ad1289601beb9a9ea61ad9f593cc.zip |
Merge tag 'v6.11-rc6-cifs-client-fixes' of git://git.samba.org/sfrench/cifs-2.6
Pull smb client fixes from Steve French:
- fix potential mount hang
- fix retry problem in two types of compound operations
- important netfs integration fix in SMB1 read paths
- fix potential uninitialized zero point of inode
- minor patch to improve debugging for potential crediting problems
* tag 'v6.11-rc6-cifs-client-fixes' of git://git.samba.org/sfrench/cifs-2.6:
netfs, cifs: Improve some debugging bits
cifs: Fix SMB1 readv/writev callback in the same way as SMB2/3
cifs: Fix zero_point init on inode initialisation
smb: client: fix double put of @cfile in smb2_set_path_size()
smb: client: fix double put of @cfile in smb2_rename_path()
smb: client: fix hang in wait_for_response() for negproto
Diffstat (limited to '')
-rw-r--r-- | fs/netfs/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/netfs/io.c b/fs/netfs/io.c index 943128507af5..d6ada4eba744 100644 --- a/fs/netfs/io.c +++ b/fs/netfs/io.c @@ -270,7 +270,7 @@ static void netfs_reset_subreq_iter(struct netfs_io_request *rreq, if (count == remaining) return; - _debug("R=%08x[%u] ITER RESUB-MISMATCH %zx != %zx-%zx-%llx %x\n", + _debug("R=%08x[%u] ITER RESUB-MISMATCH %zx != %zx-%zx-%llx %x", rreq->debug_id, subreq->debug_index, iov_iter_count(&subreq->io_iter), subreq->transferred, subreq->len, rreq->i_size, |