public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH/RFC] RDMA/iwpm: Fix uninitialized error code in iwpm_send_mapinfo()
@ 2017-11-16 10:26 Geert Uytterhoeven
       [not found] ` <1510827964-11100-1-git-send-email-geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org>
  2017-11-28 23:08 ` Jason Gunthorpe
  0 siblings, 2 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2017-11-16 10:26 UTC (permalink / raw)
  To: Tatyana Nikolova, Roland Dreier, Doug Ledford
  Cc: Arnd Bergmann, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

With gcc-4.1.2:

    drivers/infiniband/core/iwpm_util.c: In function ‘iwpm_send_mapinfo’:
    drivers/infiniband/core/iwpm_util.c:647: warning: ‘ret’ may be used uninitialized in this function

Indeed, if nl_client is not found in any of the scanned has buckets, ret
will be used uninitialized.

Preinitialize ret to zero to fix this.

Fixes: 30dc5e63d6a5ad24 ("RDMA/core: Add support for iWARP Port Mapper user space service")
Signed-off-by: Geert Uytterhoeven <geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org>
---
RFC as I have no idea if this can ever happen, and if yes, what's the
correct behavior to handle it:
  - return 0,
  - return an error code,
  - don't send anything,
  - anything else?
---
 drivers/infiniband/core/iwpm_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/infiniband/core/iwpm_util.c b/drivers/infiniband/core/iwpm_util.c
index 3c4faadb8cddd7fd..eb000b540495acd1 100644
--- a/drivers/infiniband/core/iwpm_util.c
+++ b/drivers/infiniband/core/iwpm_util.c
@@ -644,7 +644,7 @@ int iwpm_send_mapinfo(u8 nl_client, int iwpm_pid)
 	int i = 0, nlmsg_bytes = 0;
 	unsigned long flags;
 	const char *err_str = "";
-	int ret;
+	int ret = 0;
 
 	skb = dev_alloc_skb(NLMSG_GOODSIZE);
 	if (!skb) {
-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2017-11-29  8:39 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-16 10:26 [PATCH/RFC] RDMA/iwpm: Fix uninitialized error code in iwpm_send_mapinfo() Geert Uytterhoeven
     [not found] ` <1510827964-11100-1-git-send-email-geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org>
2017-11-16 10:50   ` Arnd Bergmann
     [not found]     ` <CAK8P3a2D6dnQELKww5V-=mNAzrD-XQoWtNTXCmgMtsnFnujq5A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-16 11:05       ` Geert Uytterhoeven
     [not found]         ` <CAMuHMdXcvBDGvQ0K38POmarUY65ntTw5-xh9s=Sk4ZH+98MrhQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-16 11:32           ` Arnd Bergmann
     [not found]             ` <CAK8P3a38=xM+NSxuc+5gXXe0vWGxf6+Z6Av01YFiFWyseT1_ng-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-16 12:03               ` Geert Uytterhoeven
     [not found]                 ` <CAMuHMdWA5cge8HomTuZ960rGCKueFmG6_KX4VCkY0XGWZfZZ2g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-16 12:51                   ` Arnd Bergmann
2017-11-16 11:21       ` Leon Romanovsky
2017-11-28 23:08 ` Jason Gunthorpe
     [not found]   ` <20171128230834.GH21325-uk2M96/98Pc@public.gmane.org>
2017-11-29  8:10     ` Geert Uytterhoeven
     [not found]       ` <CAMuHMdUEcHMFML71E-8AOSpCrjComvJiij+dM9H=j7atnBsiZw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-29  8:20         ` Arnd Bergmann
     [not found]           ` <CAK8P3a2chJ_kSAX1R=mBoLCbo+4d60_y6wW-pdzxwxv=rCuC9A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-29  8:24             ` Geert Uytterhoeven
     [not found]               ` <CAMuHMdVMJAm3i65kjfo6ut6bMWsoi7pzGL1n2q6XZNY__=N4Jg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-29  8:39                 ` Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox