提交 bc4ba94c 编写于 作者: C Cong Ding 提交者: Roland Dreier

RDMA/cxgb3: Fix uninitialized variable

The variable npages might be used uninitialized.
Signed-off-by: NCong Ding <dinggnu@gmail.com>
Acked-by: NSteve Wise <swise@opengridcomputing.com>
Signed-off-by: NRoland Dreier <roland@purestorage.com>
上级 41ef2d56
...@@ -559,7 +559,7 @@ static int iwch_reregister_phys_mem(struct ib_mr *mr, ...@@ -559,7 +559,7 @@ static int iwch_reregister_phys_mem(struct ib_mr *mr,
__be64 *page_list = NULL; __be64 *page_list = NULL;
int shift = 0; int shift = 0;
u64 total_size; u64 total_size;
int npages; int npages = 0;
int ret; int ret;
PDBG("%s ib_mr %p ib_pd %p\n", __func__, mr, pd); PDBG("%s ib_mr %p ib_pd %p\n", __func__, mr, pd);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册