diff options
| author | David S. Miller <davem@davemloft.net> | 2008-08-18 00:51:03 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2008-08-18 00:51:03 -0400 |
| commit | a9312ae89324438b0edc554eb36c3ec6bf927d04 (patch) | |
| tree | 8a440aa75a9ac5aba1447082ec43ed48951aa121 /include/net | |
| parent | 08013fa353fdcfc0a03cae805393abfc56722387 (diff) | |
pkt_sched: Add 'deactivated' state.
This new state lets dev_deactivate() mark a qdisc as having been
deactivated.
dev_queue_xmit() and ing_filter() check for this bit and do not
try to process the qdisc if the bit is set.
dev_deactivate() polls the qdisc after setting the bit, waiting
for both __QDISC_STATE_RUNNING and __QDISC_STATE_SCHED to clear.
This isn't perfect yet, but subsequent changesets will make it so.
This part is just one piece of the puzzle.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
| -rw-r--r-- | include/net/sch_generic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h index a7abfda3e447..757ab087adbf 100644 --- a/include/net/sch_generic.h +++ b/include/net/sch_generic.h | |||
| @@ -27,6 +27,7 @@ enum qdisc_state_t | |||
| 27 | { | 27 | { |
| 28 | __QDISC_STATE_RUNNING, | 28 | __QDISC_STATE_RUNNING, |
| 29 | __QDISC_STATE_SCHED, | 29 | __QDISC_STATE_SCHED, |
| 30 | __QDISC_STATE_DEACTIVATED, | ||
| 30 | }; | 31 | }; |
| 31 | 32 | ||
| 32 | struct qdisc_size_table { | 33 | struct qdisc_size_table { |
