|
@@ -1338,7 +1338,6 @@ static int pass_accept_req(struct t3cdev *tdev, struct sk_buff *skb, void *ctx)
|
|
|
struct iwch_ep *child_ep, *parent_ep = ctx;
|
|
|
struct cpl_pass_accept_req *req = cplhdr(skb);
|
|
|
unsigned int hwtid = GET_TID(req);
|
|
|
- struct neighbour *neigh;
|
|
|
struct dst_entry *dst;
|
|
|
struct l2t_entry *l2t;
|
|
|
struct rtable *rt;
|
|
@@ -1375,10 +1374,7 @@ static int pass_accept_req(struct t3cdev *tdev, struct sk_buff *skb, void *ctx)
|
|
|
goto reject;
|
|
|
}
|
|
|
dst = &rt->dst;
|
|
|
- rcu_read_lock();
|
|
|
- neigh = dst_get_neighbour_noref(dst);
|
|
|
- l2t = t3_l2t_get(tdev, neigh, neigh->dev);
|
|
|
- rcu_read_unlock();
|
|
|
+ l2t = t3_l2t_get(tdev, dst, NULL);
|
|
|
if (!l2t) {
|
|
|
printk(KERN_ERR MOD "%s - failed to allocate l2t entry!\n",
|
|
|
__func__);
|
|
@@ -1889,7 +1885,6 @@ static int is_loopback_dst(struct iw_cm_id *cm_id)
|
|
|
int iwch_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
|
|
|
{
|
|
|
struct iwch_dev *h = to_iwch_dev(cm_id->device);
|
|
|
- struct neighbour *neigh;
|
|
|
struct iwch_ep *ep;
|
|
|
struct rtable *rt;
|
|
|
int err = 0;
|
|
@@ -1947,13 +1942,7 @@ int iwch_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
|
|
|
goto fail3;
|
|
|
}
|
|
|
ep->dst = &rt->dst;
|
|
|
-
|
|
|
- rcu_read_lock();
|
|
|
- neigh = dst_get_neighbour_noref(ep->dst);
|
|
|
-
|
|
|
- /* get a l2t entry */
|
|
|
- ep->l2t = t3_l2t_get(ep->com.tdev, neigh, neigh->dev);
|
|
|
- rcu_read_unlock();
|
|
|
+ ep->l2t = t3_l2t_get(ep->com.tdev, ep->dst, NULL);
|
|
|
if (!ep->l2t) {
|
|
|
printk(KERN_ERR MOD "%s - cannot alloc l2e.\n", __func__);
|
|
|
err = -ENOMEM;
|