From 48b2cf6dd7a4de40e78b829ee2c475b0cdef90df Mon Sep 17 00:00:00 2001 From: kib Date: Tue, 14 Sep 2010 18:58:51 +0000 Subject: Rename the field to not confuse readers. The bytes are actually used. Discussed with: rmacklem MFC after: 1 week --- sys/sys/mount.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/mount.h b/sys/sys/mount.h index f68e95d..d9b6ff4 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -56,7 +56,7 @@ typedef struct fsid { int32_t val[2]; } fsid_t; /* filesystem id type */ 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) */ }; -- cgit v1.1