net: tc: Remove not used field from net_traffic_class struct
The "tc" field which was holding the traffic class thread priority is not used nor needed so remove it from the struct to save some space. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
a6856811a3
commit
db889774c2
2 changed files with 0 additions and 5 deletions
|
@ -392,9 +392,6 @@ struct net_traffic_class {
|
||||||
|
|
||||||
/** Stack for this work queue */
|
/** Stack for this work queue */
|
||||||
k_thread_stack_t *stack;
|
k_thread_stack_t *stack;
|
||||||
|
|
||||||
/** Traffic class value */
|
|
||||||
int tc;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -234,7 +234,6 @@ void net_tc_tx_init(void)
|
||||||
uint8_t thread_priority;
|
uint8_t thread_priority;
|
||||||
|
|
||||||
thread_priority = tx_tc2thread(i);
|
thread_priority = tx_tc2thread(i);
|
||||||
tx_classes[i].tc = thread_priority;
|
|
||||||
|
|
||||||
NET_DBG("[%d] Starting TX queue %p stack size %zd "
|
NET_DBG("[%d] Starting TX queue %p stack size %zd "
|
||||||
"prio %d (%d)", i,
|
"prio %d (%d)", i,
|
||||||
|
@ -264,7 +263,6 @@ void net_tc_rx_init(void)
|
||||||
uint8_t thread_priority;
|
uint8_t thread_priority;
|
||||||
|
|
||||||
thread_priority = rx_tc2thread(i);
|
thread_priority = rx_tc2thread(i);
|
||||||
rx_classes[i].tc = thread_priority;
|
|
||||||
|
|
||||||
NET_DBG("[%d] Starting RX queue %p stack size %zd "
|
NET_DBG("[%d] Starting RX queue %p stack size %zd "
|
||||||
"prio %d (%d)", i,
|
"prio %d (%d)", i,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue