diff options
author | David S. Miller <davem@davemloft.net> | 2018-12-19 20:53:18 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-07-10 09:53:46 +0200 |
commit | 382bc84da904a54ee2842c6babda3efca058b5f3 (patch) | |
tree | 675e4bf61b52e74cbede3b4cd68b1549d55babed /net/rds | |
parent | 7e6af1fa80b8a83203da97196ce240cba68235f7 (diff) | |
download | linux-stable-382bc84da904a54ee2842c6babda3efca058b5f3.tar.gz linux-stable-382bc84da904a54ee2842c6babda3efca058b5f3.tar.bz2 linux-stable-382bc84da904a54ee2842c6babda3efca058b5f3.zip |
rds: Fix warning.
[ Upstream commit d84e7bc0595a7e146ad0ddb80b240cea77825245 ]
>> net/rds/send.c:1109:42: warning: Using plain integer as NULL pointer
Fixes: ea010070d0a7 ("net/rds: fix warn in rds_message_alloc_sgs")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/rds')
-rw-r--r-- | net/rds/send.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/rds/send.c b/net/rds/send.c index ec2267cbf85f..26e2c2305f7a 100644 --- a/net/rds/send.c +++ b/net/rds/send.c @@ -1106,9 +1106,11 @@ int rds_sendmsg(struct socket *sock, struct msghdr *msg, size_t payload_len) sock_flag(rds_rs_to_sk(rs), SOCK_ZEROCOPY)); int num_sgs = ceil(payload_len, PAGE_SIZE); int namelen; - struct rds_iov_vector_arr vct = {0}; + struct rds_iov_vector_arr vct; int ind; + memset(&vct, 0, sizeof(vct)); + /* expect 1 RDMA CMSG per rds_sendmsg. can still grow if more needed. */ vct.incr = 1; |