These patches add support for external classifiers to SFQ and add a new "flow" classifier, which can do hashing based on user-specified keys or deterministic mapping of keys to classes. Additionally there is a patch to make the SFQ queues visisble as classes to verify that the hash is indeed doing something useful and a patch to consifiy struct tcf_ext_map, which I had queued in the same tree.
Please apply, thanks. include/linux/pkt_cls.h | 50 ++++ include/linux/pkt_sched.h | 5 + include/net/pkt_cls.h | 6 +- net/sched/Kconfig | 11 + net/sched/Makefile | 1 + net/sched/cls_api.c | 6 +- net/sched/cls_basic.c | 2 +- net/sched/cls_flow.c | 660 +++++++++++++++++++++++++++++++++++++++++++++ net/sched/cls_fw.c | 2 +- net/sched/cls_route.c | 2 +- net/sched/cls_tcindex.c | 2 +- net/sched/cls_u32.c | 2 +- net/sched/sch_sfq.c | 134 +++++++++- 13 files changed, 868 insertions(+), 15 deletions(-) create mode 100644 net/sched/cls_flow.c Patrick McHardy (4): [NET_SCHED]: Constify struct tcf_ext_map [NET_SCHED]: sch_sfq: add support for external classifiers [NET_SCHED]: sch_sfq: make internal queues visible as classes [NET_SCHED]: Add flow classifier -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html