Re[2]: [leo@yuriev.ru: [PATCH] ethernet-bridge: update skb->priority in case forwarded frame has VLAN-header]

2005-03-10 Thread Leo Yuriev
>>From looking at the patch: j> -- j> + /* j> +* We map VLAN_TCI priority (0..7) to skb->priority (0..15) j> +* most similarly e.g. 0->0, 1->1, .., 7->7 j> +*/ j> + skb->priority = (vlan_TCI >> 13) & 7; j> --

Re[2]: [leo@yuriev.ru: [PATCH] ethernet-bridge: update skb-priority in case forwarded frame has VLAN-header]

2005-03-10 Thread Leo Yuriev
From looking at the patch: j -- j + /* j +* We map VLAN_TCI priority (0..7) to skb-priority (0..15) j +* most similarly e.g. 0-0, 1-1, .., 7-7 j +*/ j + skb-priority = (vlan_TCI 13) 7; j -- j This is wrong.