diff options
author | David Howells <dhowells@redhat.com> | 2023-02-23 09:15:39 +0100 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2023-03-02 01:17:36 +0100 |
commit | 4bd3e4c7e4e552aa148edd3f2a2326ccc3011122 (patch) | |
tree | fe02e8e38ef36d42b5dc0057e6cd292c3aba456f /fs | |
parent | cifs: Add some missing xas_retry() calls (diff) | |
download | linux-4bd3e4c7e4e552aa148edd3f2a2326ccc3011122.tar.xz linux-4bd3e4c7e4e552aa148edd3f2a2326ccc3011122.zip |
cifs: Fix an uninitialised variable
Fix an uninitialised variable introduced in cifs.
Fixes: 3d78fe73fa12 ("cifs: Build the RDMA SGE list directly from an iterator")
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Paulo Alcantara (SUSE) <pc@cjr.nz>
cc: Steve French <sfrench@samba.org>
cc: Shyam Prasad N <nspmangalore@gmail.com>
cc: Rohith Surabattula <rohiths.msft@gmail.com>
cc: Tom Talpey <tom@talpey.com>
cc: Jeff Layton <jlayton@kernel.org>
cc: linux-cifs@vger.kernel.org
cc: linux-rdma@vger.kernel.org
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/smbdirect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/smbdirect.c b/fs/cifs/smbdirect.c index 55b6e319a61d..0362ebd4fa0f 100644 --- a/fs/cifs/smbdirect.c +++ b/fs/cifs/smbdirect.c @@ -837,7 +837,7 @@ static int smbd_post_send_iter(struct smbd_connection *info, int data_length; struct smbd_request *request; struct smbd_data_transfer *packet; - int new_credits; + int new_credits = 0; wait_credit: /* Wait for send credits. A SMBD packet needs one credit */ |