|
@@ -2656,6 +2656,12 @@ static int peer_abort_intr(struct c4iw_dev *dev, struct sk_buff *skb)
|
|
|
unsigned int tid = GET_TID(req);
|
|
|
|
|
|
ep = lookup_tid(t, tid);
|
|
|
+ if (!ep) {
|
|
|
+ printk(KERN_WARNING MOD
|
|
|
+ "Abort on non-existent endpoint, tid %d\n", tid);
|
|
|
+ kfree_skb(skb);
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
if (is_neg_adv_abort(req->status)) {
|
|
|
PDBG("%s neg_adv_abort ep %p tid %u\n", __func__, ep,
|
|
|
ep->hwtid);
|