We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aaea88 commit 22fc46cCopy full SHA for 22fc46c
net/atm/clip.c
@@ -632,8 +632,16 @@ static void atmarpd_close(struct atm_vcc *vcc)
632
module_put(THIS_MODULE);
633
}
634
635
+static int atmarpd_send(struct atm_vcc *vcc, struct sk_buff *skb)
636
+{
637
+ atm_return_tx(vcc, skb);
638
+ dev_kfree_skb_any(skb);
639
+ return 0;
640
+}
641
+
642
static const struct atmdev_ops atmarpd_dev_ops = {
- .close = atmarpd_close
643
+ .close = atmarpd_close,
644
+ .send = atmarpd_send
645
};
646
647
0 commit comments