Date: Tue, 2 Dec 2008 00:51:56 +0000 (UTC) From: Kip Macy <kmacy@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r185537 - head/sys/dev/cxgb/sys Message-ID: <200812020051.mB20puVd042159@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kmacy Date: Tue Dec 2 00:51:56 2008 New Revision: 185537 URL: http://svn.freebsd.org/changeset/base/185537 Log: The pkthdr field is flowid not rss_hash Modified: head/sys/dev/cxgb/sys/uipc_mvec.c Modified: head/sys/dev/cxgb/sys/uipc_mvec.c ============================================================================== --- head/sys/dev/cxgb/sys/uipc_mvec.c Tue Dec 2 00:48:08 2008 (r185536) +++ head/sys/dev/cxgb/sys/uipc_mvec.c Tue Dec 2 00:51:56 2008 (r185537) @@ -125,7 +125,7 @@ _mcl_collapse_mbuf(struct mbuf_iovec *mi mi->mi_ether_vtag = m->m_pkthdr.ether_vtag; mi->mi_tso_segsz = m->m_pkthdr.tso_segsz; #ifdef IFNET_MULTIQUEUE - mi->mi_rss_hash = m->m_pkthdr.rss_hash; + mi->mi_rss_hash = m->m_pkthdr.flowid; #endif if(!SLIST_EMPTY(&m->m_pkthdr.tags)) m_tag_delete_chain(m, NULL);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812020051.mB20puVd042159>