Author: kib
Date: Wed Feb  8 18:36:07 2012
New Revision: 231220
URL: http://svn.freebsd.org/changeset/base/231220

Log:
  Trim 8 unused bytes from struct vnode on 64-bit architectures.
  
  Reviewed by:  alc

Modified:
  head/sys/sys/vnode.h

Modified: head/sys/sys/vnode.h
==============================================================================
--- head/sys/sys/vnode.h        Wed Feb  8 18:22:10 2012        (r231219)
+++ head/sys/sys/vnode.h        Wed Feb  8 18:36:07 2012        (r231220)
@@ -149,8 +149,8 @@ struct vnode {
        struct  lock *v_vnlock;                 /* u pointer to vnode lock */
        int     v_holdcnt;                      /* i prevents recycling. */
        int     v_usecount;                     /* i ref count of users */
-       u_long  v_iflag;                        /* i vnode flags (see below) */
-       u_long  v_vflag;                        /* v vnode flags */
+       u_int   v_iflag;                        /* i vnode flags (see below) */
+       u_int   v_vflag;                        /* v vnode flags */
        int     v_writecount;                   /* v ref count of writers */
 
        /*
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to