search for: tc_verd

Displaying 2 results from an estimated 2 matches for "tc_verd".

Did you mean: coverd
2005 Dec 20
0
Question about tc class in skb
...to the hardware queue, since we''ve already classified them correctly. However by the time it gets into the driver nothing in the skb seems to be usefully set to allow this. I''m looking at skb->priority, skb->dst->tclassid, skb->tc_classid, skb->tc_index, skb->tc_verd (okay, that was reaching). If I ping with different QoS bits which I''m assigning to different htb flows, I see (these are my debugging messages in the driver): ~$ ping -Q 0x10 172.29.50.230 kernel: outpkt: priority:06 tclassid:0x0 tc_classid:0x0 tc_index:0x0 tc_verd:0x2000 nfmark:00 ~...
2007 Apr 18
5
[Bridge] RFC: [PATCH] bridge vlan integration
...CONFIG_NET_SCHED C(tc_index); #ifdef CONFIG_NET_CLS_ACT @@ -550,6 +553,9 @@ static void copy_skb_header(struct sk_bu nf_bridge_get(old->nf_bridge); #endif #endif +#ifdef CONFIG_BRIDGE_VLAN + new->vlan = old->vlan; +#endif #ifdef CONFIG_NET_SCHED #ifdef CONFIG_NET_CLS_ACT new->tc_verd = old->tc_verd; Index: wireless-dev/net/bridge/Kconfig =================================================================== --- wireless-dev.orig/net/bridge/Kconfig +++ wireless-dev/net/bridge/Kconfig @@ -30,3 +30,13 @@ config BRIDGE will be called bridge. If unsure, say N. + +config BR...