diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-10-12 03:54:08 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-10-17 19:26:07 +0200 |
commit | 4b5cf429645d06d95774fb3288de74aa1f74fc46 (patch) | |
tree | 3fd737ad744ba043441708ef677708cddd2733e4 | |
parent | c90afbeddf9aa217c419b95e496337c89a1e4ba2 (diff) |
device: our use of queues means this check is worthless
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | src/device.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/device.c b/src/device.c index 6b56048..9abc031 100644 --- a/src/device.c +++ b/src/device.c @@ -110,12 +110,6 @@ static netdev_tx_t xmit(struct sk_buff *skb, struct net_device *dev) struct sk_buff_head packets; int ret; - if (unlikely(dev_recursion_level() > 4)) { - ret = -ELOOP; - net_dbg_ratelimited("%s: Routing loop detected\n", dev->name); - goto err; - } - if (unlikely(skb_examine_untrusted_ip_hdr(skb) != skb->protocol)) { ret = -EPROTONOSUPPORT; net_dbg_ratelimited("%s: Invalid IP packet\n", dev->name); |