Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 358863
b: refs/heads/master
c: 710a311
h: refs/heads/master
i:
  358861: 2a32d4f
  358859: c62b0c3
  358855: 6129ec5
  358847: de3ad5d
v: v3
  • Loading branch information
Paul Bolle authored and Roland Dreier committed Feb 14, 2013
1 parent c508221 commit d00bba6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ef5d6355ed4bcf574e8473c3ce667cbf6c66a0ee
refs/heads/master: 710a31102be46ffc2f087119dca19c894dc237eb
4 changes: 2 additions & 2 deletions trunk/drivers/infiniband/hw/cxgb4/cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2818,7 +2818,7 @@ static void passive_ofld_conn_reply(struct c4iw_dev *dev, struct sk_buff *skb,
struct cpl_pass_accept_req *cpl;
int ret;

rpl_skb = (__force struct sk_buff *)cpu_to_be64(req->cookie);
rpl_skb = (struct sk_buff *)(unsigned long)req->cookie;
BUG_ON(!rpl_skb);
if (req->retval) {
PDBG("%s passive open failure %d\n", __func__, req->retval);
Expand Down Expand Up @@ -2962,7 +2962,7 @@ static void send_fw_pass_open_req(struct c4iw_dev *dev, struct sk_buff *skb,
* TP will ignore any value > 0 for MSS index.
*/
req->tcb.opt0 = cpu_to_be64(V_MSS_IDX(0xF));
req->cookie = (__force __u64) cpu_to_be64((u64)skb);
req->cookie = (unsigned long)skb;

set_wr_txq(req_skb, CPL_PRIORITY_CONTROL, port_id);
cxgb4_ofld_send(dev->rdev.lldi.ports[0], req_skb);
Expand Down

0 comments on commit d00bba6

Please sign in to comment.