mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
RDMA/cxgb3: Fix uninitialized variable warning in iwch_post_send()
drivers/infiniband/hw/cxgb3/iwch_qp.c: In function 'iwch_post_send': drivers/infiniband/hw/cxgb3/iwch_qp.c:232: warning: 't3_wr_flit_cnt' may be used uninitialized in this function This is what akpm describes as "the dopey gcc-doesn't-know-that-foo(&var)-writes-to-var problem." Signed-off-by: Roland Dreier <rolandd@cisco.com> Acked-by: Steve Wise <swise@opengridcomputing.com>
This commit is contained in:
parent
a3d8e1591d
commit
21609ae3ef
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ int iwch_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
|
|||
struct ib_send_wr **bad_wr)
|
||||
{
|
||||
int err = 0;
|
||||
u8 t3_wr_flit_cnt;
|
||||
u8 uninitialized_var(t3_wr_flit_cnt);
|
||||
enum t3_wr_opcode t3_wr_opcode = 0;
|
||||
enum t3_wr_flags t3_wr_flags;
|
||||
struct iwch_qp *qhp;
|
||||
|
|
Loading…
Reference in a new issue