sbr
sbr

Reputation: 11

What is skb->priority in linux? When is it used?

I am trying to understand a QoS implementation on an embedded system. Is this a kernel level prioritization for QoS?

Upvotes: 1

Views: 4913

Answers (1)

JDW
JDW

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

Related Questions