svn commit: r212960 - stable/8/sys/sys

Konstantin Belousov kib at FreeBSD.org
Tue Sep 21 09:33:44 UTC 2010


Author: kib
Date: Tue Sep 21 09:33:44 2010
New Revision: 212960
URL: http://svn.freebsd.org/changeset/base/212960

Log:
  MFC r212618:
  Rename the field to not confuse readers. The bytes are actually used.

Modified:
  stable/8/sys/sys/mount.h
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/sys/mount.h
==============================================================================
--- stable/8/sys/sys/mount.h	Tue Sep 21 08:25:00 2010	(r212959)
+++ stable/8/sys/sys/mount.h	Tue Sep 21 09:33:44 2010	(r212960)
@@ -56,7 +56,7 @@ typedef struct fsid { int32_t val[2]; } 
 
 struct fid {
 	u_short		fid_len;		/* length of data in bytes */
-	u_short		fid_reserved;		/* force longword alignment */
+	u_short		fid_data0;		/* force longword alignment */
 	char		fid_data[MAXFIDSZ];	/* data (variable length) */
 };
 


More information about the svn-src-all mailing list