Author: adrian
Date: Sun Jul 20 07:37:47 2014
New Revision: 268912
URL: http://svnweb.freebsd.org/changeset/base/268912

Log:
  Add hash awareness of the IPv4 and IPv6 UDP 4-tuple.
  
  Note: it would be nice if the supported hash check would be used here!

Modified:
  head/sys/netinet/in_rss.c

Modified: head/sys/netinet/in_rss.c
==============================================================================
--- head/sys/netinet/in_rss.c   Sun Jul 20 07:36:59 2014        (r268911)
+++ head/sys/netinet/in_rss.c   Sun Jul 20 07:37:47 2014        (r268912)
@@ -436,8 +436,10 @@ rss_hash2cpuid(uint32_t hash_val, uint32
        switch (hash_type) {
        case M_HASHTYPE_RSS_IPV4:
        case M_HASHTYPE_RSS_TCP_IPV4:
+       case M_HASHTYPE_RSS_UDP_IPV4:
        case M_HASHTYPE_RSS_IPV6:
        case M_HASHTYPE_RSS_TCP_IPV6:
+       case M_HASHTYPE_RSS_UDP_IPV6:
                return (rss_getcpu(rss_getbucket(hash_val)));
        default:
                return (NETISR_CPUID_NONE);
@@ -455,8 +457,10 @@ rss_hash2bucket(uint32_t hash_val, uint3
        switch (hash_type) {
        case M_HASHTYPE_RSS_IPV4:
        case M_HASHTYPE_RSS_TCP_IPV4:
+       case M_HASHTYPE_RSS_UDP_IPV4:
        case M_HASHTYPE_RSS_IPV6:
        case M_HASHTYPE_RSS_TCP_IPV6:
+       case M_HASHTYPE_RSS_UDP_IPV6:
                *bucket_id = rss_getbucket(hash_val);
                return (0);
        default:
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to