Cc: Kok, Auke <auke-jan.h.kok@...>, David Miller <davem@...>, Garzik, Jeff <jgarzik@...>, <netdev@...>, <linux-kernel@...>, Peter Waskiewicz Jr <peter.p.waskiewicz.jr@...>, Brandeburg, Jesse <jesse.brandeburg@...>, Kok, Auke <auke@...>, Ronciak, John <john.ronciak@...>
I'm not sure Dave Miller thought about this place, when he proposed
to save the mapping, but I think this could be not enough. This place
is racy: ->map_queue() is called 2 times and with some filters (and
policies/actions) results could differ. And of course the subqueue
lock doesn't prevent any filter from a config change in the meantime.
After second reading of this patch I have doubts it's the proper way
to solve the problem: there are many subqueues but we need a top queue
(prio here) to mange them, anyway. So, why not to build this
functionality directly into the queue? There is no difference for a
device if skbs are going from the subqueue or a class, it is only
interested in the mapping result and a possibility to stop and start
a subqueue and to query its status. All this could be done by adding
the callbacks directly to any classful scheduler or, if not enough,
to write some specialized qdisc based on prio. The possibility to lock
only a subqueue instead of a queue could be analized independently -
current proposal doesn't solve this anyway.
Regards,
Jarek P.
-