svn commit: r268913 - head/sys/netinet

看板FB_svn作者時間11年前 (2014/07/20 16:01), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
Author: adrian Date: Sun Jul 20 07:38:38 2014 New Revision: 268913 URL: http://svnweb.freebsd.org/changeset/base/268913 Log: Make the PCBGROUPS code aware of IPv4 UDP 4-tuple. Modified: head/sys/netinet/in_pcbgroup.c Modified: head/sys/netinet/in_pcbgroup.c ============================================================================== --- head/sys/netinet/in_pcbgroup.c Sun Jul 20 07:37:47 2014 (r268912) +++ head/sys/netinet/in_pcbgroup.c Sun Jul 20 07:38:38 2014 (r268913) @@ -243,6 +243,8 @@ in_pcbgroup_byhash(struct inpcbinfo *pcb #ifdef RSS if ((pcbinfo->ipi_hashfields == IPI_HASHFIELDS_4TUPLE && hashtype == M_HASHTYPE_RSS_TCP_IPV4) || + (pcbinfo->ipi_hashfields == IPI_HASHFIELDS_4TUPLE && + hashtype == M_HASHTYPE_RSS_UDP_IPV4) || (pcbinfo->ipi_hashfields == IPI_HASHFIELDS_2TUPLE && hashtype == M_HASHTYPE_RSS_IPV4)) return (&pcbinfo->ipi_pcbgroups[ _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
文章代碼(AID): #1JotS-Kf (FB_svn)