IPoIB/cm: Set correct SG list in ipoib_cm_init_rx_wr()

wr->sg_list should be set to the sge pointer passed in, not
priv->cm.rx_sge.

Reported-by: Hoang-Nam Nguyen <HNGUYEN@de.ibm.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>

+1 -1
+1 -1
drivers/infiniband/ulp/ipoib/ipoib_cm.c
··· 337 337 sge[i].length = PAGE_SIZE; 338 338 339 339 wr->next = NULL; 340 - wr->sg_list = priv->cm.rx_sge; 340 + wr->sg_list = sge; 341 341 wr->num_sge = priv->cm.num_frags; 342 342 } 343 343