Date: Mon, 31 Aug 2015 18:58:54 +0000 (UTC) From: Xin LI <delphij@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r287329 - stable/10/sys/sys Message-ID: <201508311858.t7VIwsX4040820@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: delphij Date: Mon Aug 31 18:58:53 2015 New Revision: 287329 URL: https://svnweb.freebsd.org/changeset/base/287329 Log: MFC r286836: so_vnet is constant after creation and no locking is necessary, document this fact. Modified: stable/10/sys/sys/socketvar.h Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/sys/socketvar.h ============================================================================== --- stable/10/sys/sys/socketvar.h Mon Aug 31 18:53:41 2015 (r287328) +++ stable/10/sys/sys/socketvar.h Mon Aug 31 18:58:53 2015 (r287329) @@ -76,7 +76,7 @@ struct socket { short so_state; /* (b) internal state flags SS_* */ int so_qstate; /* (e) internal state flags SQ_* */ void *so_pcb; /* protocol control block */ - struct vnet *so_vnet; /* network stack instance */ + struct vnet *so_vnet; /* (a) network stack instance */ struct protosw *so_proto; /* (a) protocol handle */ /* * Variables for connection queuing.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508311858.t7VIwsX4040820>