Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Jul 2010 12:22:18 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r209691 - stable/8/sys/netipsec
Message-ID:  <201007041222.o64CMIhx027174@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Sun Jul  4 12:22:17 2010
New Revision: 209691
URL: http://svn.freebsd.org/changeset/base/209691

Log:
  MFC r208508:
  
    MFp4 @178283:
  
    Improve IPsec flow distribution for better netisr parallelism.
    Instead of using the pointer that would have the last bits masked in a %
    statement in netisr_select_cpuid() to select the queue, use the SPI.
  
    Reviewed by:  rwatson

Modified:
  stable/8/sys/netipsec/ipsec_input.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/netipsec/ipsec_input.c
==============================================================================
--- stable/8/sys/netipsec/ipsec_input.c	Sun Jul  4 12:09:30 2010	(r209690)
+++ stable/8/sys/netipsec/ipsec_input.c	Sun Jul  4 12:22:17 2010	(r209691)
@@ -489,7 +489,7 @@ ipsec4_common_input_cb(struct mbuf *m, s
 	/*
 	 * Re-dispatch via software interrupt.
 	 */
-	if ((error = netisr_queue_src(NETISR_IP, (uintptr_t)sav, m))) {
+	if ((error = netisr_queue_src(NETISR_IP, (uintptr_t)sav->spi, m))) {
 		IPSEC_ISTAT(sproto, V_espstat.esps_qfull, V_ahstat.ahs_qfull,
 			    V_ipcompstat.ipcomps_qfull);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201007041222.o64CMIhx027174>