Re: [PATCH] doc: fix wrongly referencing dev->skb_mark

2016-10-11 Thread Ryota Ozaki
On Mon, Oct 10, 2016 at 10:49 PM, Ido Schimmel wrote: > Hi, > > On Mon, Oct 10, 2016 at 08:15:39PM +0900, Ryota Ozaki wrote: >> Section "Flooding L2 domain" says, to avoid duplicated flooding, if >> skb->offload_fwd_mark is matched with dev->skb_mark, the kernel will >> drop the packet. However, t

Re: [PATCH] doc: fix wrongly referencing dev->skb_mark

2016-10-10 Thread Ido Schimmel
Hi, On Mon, Oct 10, 2016 at 08:15:39PM +0900, Ryota Ozaki wrote: > Section "Flooding L2 domain" says, to avoid duplicated flooding, if > skb->offload_fwd_mark is matched with dev->skb_mark, the kernel will > drop the packet. However, the relevant code in __dev_queue_xmit > compares skb->offload_fw

[PATCH] doc: fix wrongly referencing dev->skb_mark

2016-10-10 Thread Ryota Ozaki
Section "Flooding L2 domain" says, to avoid duplicated flooding, if skb->offload_fwd_mark is matched with dev->skb_mark, the kernel will drop the packet. However, the relevant code in __dev_queue_xmit compares skb->offload_fwd_mark with dev->offload_fwd_mark, not dev->skb_mark. I guess the text is