From 418f1e7b2941c3ccfa48c2e03092f4f80611deea Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Tue, 14 Sep 2010 18:58:51 +0000 Subject: [PATCH] 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 f68e95dbac9..d9b6ff4ed66 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) */ }; -- 2.45.2