diff options
author | Patrick McHardy <kaber@trash.net> | 2006-01-17 13:01:06 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-01-17 13:01:06 -0800 |
commit | ae82af54d73becd66804d942cf39b049e625fa89 (patch) | |
tree | d987461ee9dfbfb963bb96052cf92bca176469ff /net | |
parent | 2f970d83576cf4938fd75551c465050f6a16c33c (diff) | |
download | linux-3.10-ae82af54d73becd66804d942cf39b049e625fa89.tar.gz linux-3.10-ae82af54d73becd66804d942cf39b049e625fa89.tar.bz2 linux-3.10-ae82af54d73becd66804d942cf39b049e625fa89.zip |
[PKT_SCHED]: Handle SCTP/DCCP in sfq_hash
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sched/sch_sfq.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/sched/sch_sfq.c b/net/sched/sch_sfq.c index 8734bb7280e..86d8da0cbd0 100644 --- a/net/sched/sch_sfq.c +++ b/net/sched/sch_sfq.c @@ -144,6 +144,8 @@ static unsigned sfq_hash(struct sfq_sched_data *q, struct sk_buff *skb) if (!(iph->frag_off&htons(IP_MF|IP_OFFSET)) && (iph->protocol == IPPROTO_TCP || iph->protocol == IPPROTO_UDP || + iph->protocol == IPPROTO_SCTP || + iph->protocol == IPPROTO_DCCP || iph->protocol == IPPROTO_ESP)) h2 ^= *(((u32*)iph) + iph->ihl); break; @@ -155,6 +157,8 @@ static unsigned sfq_hash(struct sfq_sched_data *q, struct sk_buff *skb) h2 = iph->saddr.s6_addr32[3]^iph->nexthdr; if (iph->nexthdr == IPPROTO_TCP || iph->nexthdr == IPPROTO_UDP || + iph->nexthdr == IPPROTO_SCTP || + iph->nexthdr == IPPROTO_DCCP || iph->nexthdr == IPPROTO_ESP) h2 ^= *(u32*)&iph[1]; break; |