atm: clip: move clip_devs check to clip_push
This will allow further cleanup. Signed-off-by: Jorge Boncompte [DTI2] <jorge@dti2.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
ada22aa563
commit
3b829366cc
@@ -189,6 +189,13 @@ static void clip_push(struct atm_vcc *vcc, struct sk_buff *skb)
|
|||||||
struct clip_vcc *clip_vcc = CLIP_VCC(vcc);
|
struct clip_vcc *clip_vcc = CLIP_VCC(vcc);
|
||||||
|
|
||||||
pr_debug("\n");
|
pr_debug("\n");
|
||||||
|
|
||||||
|
if (!clip_devs) {
|
||||||
|
atm_return(vcc, skb->truesize);
|
||||||
|
kfree_skb(skb);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!skb) {
|
if (!skb) {
|
||||||
pr_debug("removing VCC %p\n", clip_vcc);
|
pr_debug("removing VCC %p\n", clip_vcc);
|
||||||
if (clip_vcc->entry)
|
if (clip_vcc->entry)
|
||||||
@@ -480,13 +487,9 @@ static int clip_mkip(struct atm_vcc *vcc, int timeout)
|
|||||||
spin_unlock_irqrestore(&rq->lock, flags);
|
spin_unlock_irqrestore(&rq->lock, flags);
|
||||||
|
|
||||||
/* re-process everything received between connection setup and MKIP */
|
/* re-process everything received between connection setup and MKIP */
|
||||||
skb_queue_walk_safe(&queue, skb, tmp) {
|
skb_queue_walk_safe(&queue, skb, tmp)
|
||||||
if (!clip_devs) {
|
clip_push(vcc, skb);
|
||||||
atm_return(vcc, skb->truesize);
|
|
||||||
kfree_skb(skb);
|
|
||||||
} else
|
|
||||||
clip_push(vcc, skb);
|
|
||||||
}
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user