Date: Sun, 2 Aug 2009 22:47:08 +0000 (UTC) From: Robert Watson <rwatson@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r196041 - head/sys/netinet Message-ID: <200908022247.n72Ml8n9026826@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rwatson Date: Sun Aug 2 22:47:08 2009 New Revision: 196041 URL: http://svn.freebsd.org/changeset/base/196041 Log: Add padding to struct inpcb, missed during our padding sweep earlier in the release cycle. Approved by: re (kensmith) Modified: head/sys/netinet/in_pcb.h Modified: head/sys/netinet/in_pcb.h ============================================================================== --- head/sys/netinet/in_pcb.h Sun Aug 2 21:16:01 2009 (r196040) +++ head/sys/netinet/in_pcb.h Sun Aug 2 22:47:08 2009 (r196041) @@ -169,7 +169,8 @@ struct inpcb { u_char inp_ip_minttl; /* (i) minimum TTL or drop */ uint32_t inp_flowid; /* (x) flow id / queue id */ u_int inp_refcount; /* (i) refcount */ - void *inp_pspare[2]; /* (x) rtentry / general use */ + void *inp_pspare[4]; /* (x) rtentry / general use */ + u_int inp_ispare[4]; /* general use */ /* Local and foreign ports, local and foreign addr. */ struct in_conninfo inp_inc; /* (i/p) list for PCB's local port */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200908022247.n72Ml8n9026826>