]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - net/sched/sch_blackhole.c
Merge tag 'regulator-v4.13' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[karo-tx-linux.git] / net / sched / sch_blackhole.c
index 3fee70d9814f91f0e61d06aeecf6b1d5a6f94eeb..c98a61e980baa68931f7e974582eb1c43ed60cf5 100644 (file)
 #include <linux/skbuff.h>
 #include <net/pkt_sched.h>
 
-static int blackhole_enqueue(struct sk_buff *skb, struct Qdisc *sch)
+static int blackhole_enqueue(struct sk_buff *skb, struct Qdisc *sch,
+                            struct sk_buff **to_free)
 {
-       qdisc_drop(skb, sch);
+       qdisc_drop(skb, sch, to_free);
        return NET_XMIT_SUCCESS;
 }