Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1686338

[PATCH] rbd: Fix uninitialized variable use in rbd_acquire_lock

From Kefeng Wang <wangkefeng.wang@huawei.com>
Newsgroups linux.kernel
Subject [PATCH] rbd: Fix uninitialized variable use in rbd_acquire_lock
Date 2017-07-13 10:00 +0200
Message-ID <u2Hcu-2Mh-17@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


drivers/block/rbd.c: In function 'rbd_acquire_lock':
drivers/block/rbd.c:3602:44: error: 'ret' may be used uninitialized in this function [-Werror=maybe-uninitialized]

Silence the warning, found it when built old kernel(3.10) with
OBS(opensuse build service).

Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
---
 drivers/block/rbd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
index b008b6a..b640ad8 100644
--- a/drivers/block/rbd.c
+++ b/drivers/block/rbd.c
@@ -3435,7 +3435,7 @@ static void rbd_acquire_lock(struct work_struct *work)
 	struct rbd_device *rbd_dev = container_of(to_delayed_work(work),
 					    struct rbd_device, lock_dwork);
 	enum rbd_lock_state lock_state;
-	int ret;
+	int ret = 0;
 
 	dout("%s rbd_dev %p\n", __func__, rbd_dev);
 again:
-- 
1.7.12.4

Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread


Thread

[PATCH] rbd: Fix uninitialized variable use in rbd_acquire_lock Kefeng Wang <wangkefeng.wang@huawei.com> - 2017-07-13 10:00 +0200
  Re: [PATCH] rbd: Fix uninitialized variable use in rbd_acquire_lock Ilya Dryomov <idryomov@gmail.com> - 2017-07-14 12:10 +0200
    Re: [PATCH] rbd: Fix uninitialized variable use in rbd_acquire_lock Kefeng Wang <wangkefeng.wang@huawei.com> - 2017-07-14 13:30 +0200
      Re: [PATCH] rbd: Fix uninitialized variable use in rbd_acquire_lock Ilya Dryomov <idryomov@gmail.com> - 2017-07-17 17:10 +0200

csiph-web