svn commit: r202482 - stable/7/sys/kern

Bjoern A. Zeeb bz at FreeBSD.org
Sun Jan 17 13:45:34 UTC 2010


Author: bz
Date: Sun Jan 17 13:45:33 2010
New Revision: 202482
URL: http://svn.freebsd.org/changeset/base/202482

Log:
  MFC r202116:
    Adjust a comment to reflect reality, as we have proper source
    address selection, even for IPv4, since r183571.
  
    Pointed out by:       Jase Thew (bazerka beardz.net)

Modified:
  stable/7/sys/kern/kern_jail.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/kern/kern_jail.c
==============================================================================
--- stable/7/sys/kern/kern_jail.c	Sun Jan 17 13:42:07 2010	(r202481)
+++ stable/7/sys/kern/kern_jail.c	Sun Jan 17 13:45:33 2010	(r202482)
@@ -267,7 +267,9 @@ jail_copyin_ips(struct jail *j)
 	 *
 	 * IP addresses are all sorted but ip[0] to preserve the primary IP
 	 * address as given from userland.  This special IP is used for
-	 * unbound outgoing connections as well for "loopback" traffic.
+	 * unbound outgoing connections as well for "loopback" traffic in case
+	 * source address selection cannot find any more fitting address to
+	 * connect from.
 	 */
 #ifdef INET
 	ip4 = NULL;


More information about the svn-src-stable-7 mailing list