diff options
author | Shmulik Ladkani <shmulik.ladkani@gmail.com> | 2016-07-18 14:49:33 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-07-19 16:40:22 -0700 |
commit | 359ebda25aa06fe3a1d028f7e338a849165e661b (patch) | |
tree | f3bf5da129f7922ebd9aefd4f27c17d10934bff7 /net/ipv4/ipmr.c | |
parent | dfa15378bd69c6b193a483725889dd90c1a7dd48 (diff) | |
download | op-kernel-dev-359ebda25aa06fe3a1d028f7e338a849165e661b.zip op-kernel-dev-359ebda25aa06fe3a1d028f7e338a849165e661b.tar.gz |
net/ipv4: Introduce IPSKB_FRAG_SEGS bit to inet_skb_parm.flags
This flag indicates whether fragmentation of segments is allowed.
Formerly this policy was hardcoded according to IPSKB_FORWARDED (set by
either ip_forward or ipmr_forward).
Cc: Hannes Frederic Sowa <hannes@stressinduktion.org>
Cc: Florian Westphal <fw@strlen.de>
Signed-off-by: Shmulik Ladkani <shmulik.ladkani@gmail.com>
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipmr.c')
-rw-r--r-- | net/ipv4/ipmr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipmr.c b/net/ipv4/ipmr.c index e0d76f5..eec2341 100644 --- a/net/ipv4/ipmr.c +++ b/net/ipv4/ipmr.c @@ -1749,7 +1749,7 @@ static void ipmr_queue_xmit(struct net *net, struct mr_table *mrt, vif->dev->stats.tx_bytes += skb->len; } - IPCB(skb)->flags |= IPSKB_FORWARDED; + IPCB(skb)->flags |= IPSKB_FORWARDED | IPSKB_FRAG_SEGS; /* RFC1584 teaches, that DVMRP/PIM router must deliver packets locally * not only before forwarding, but after forwarding on all output |