Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Sep 2010 18:58:52 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r212618 - head/sys/sys
Message-ID:  <201009141858.o8EIwqNP089842@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Tue Sep 14 18:58:51 2010
New Revision: 212618
URL: http://svn.freebsd.org/changeset/base/212618

Log:
  Rename the field to not confuse readers. The bytes are actually used.
  
  Discussed with:	rmacklem
  MFC after:	1 week

Modified:
  head/sys/sys/mount.h

Modified: head/sys/sys/mount.h
==============================================================================
--- head/sys/sys/mount.h	Tue Sep 14 18:04:05 2010	(r212617)
+++ head/sys/sys/mount.h	Tue Sep 14 18:58:51 2010	(r212618)
@@ -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) */
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009141858.o8EIwqNP089842>