Reputation: 11
I am trying to understand a QoS implementation on an embedded system. Is this a kernel level prioritization for QoS?
Upvotes: 1
Views: 4913
Reputation: 460
The skb->priority
field is meant to be used for QoS purposes by the packet scheduler and classifier layer (if enabled). See http://vger.kernel.org/~davem/skb.html
Upvotes: 2