[PATCH] infiniband: hw/cxgb3/iwch_provider.c: fix uninitialized variable issue

From: Cong Ding
Date: Mon Feb 04 2013 - 17:18:13 EST


The variable npages might be used uninitialized in line 594.

Signed-off-by: Cong Ding <dinggnu@xxxxxxxxx>
---
drivers/infiniband/hw/cxgb3/iwch_provider.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/infiniband/hw/cxgb3/iwch_provider.c b/drivers/infiniband/hw/cxgb3/iwch_provider.c
index 145d82a..90ce483 100644
--- a/drivers/infiniband/hw/cxgb3/iwch_provider.c
+++ b/drivers/infiniband/hw/cxgb3/iwch_provider.c
@@ -559,7 +559,7 @@ static int iwch_reregister_phys_mem(struct ib_mr *mr,
__be64 *page_list = NULL;
int shift = 0;
u64 total_size;
- int npages;
+ int npages = 0;
int ret;

PDBG("%s ib_mr %p ib_pd %p\n", __func__, mr, pd);
--
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/