diff options
author | dg <dg@FreeBSD.org> | 1994-08-09 15:10:14 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-08-09 15:10:14 +0000 |
commit | 4dfef8927a471f872e91db87d21de39321808275 (patch) | |
tree | 50cb232834e9ffb6a6661686ac00de0068153f56 /sys/nfs | |
parent | 98758fdaff9ac6b6cc5b61fe8fef19b1299a06a2 (diff) | |
download | FreeBSD-src-4dfef8927a471f872e91db87d21de39321808275.zip FreeBSD-src-4dfef8927a471f872e91db87d21de39321808275.tar.gz |
Removed some padding bytes from the nfsnode struct to make the structure
size a power of 2 again. The system complains otherwise - probably because
it wastes space with our malloc scheme otherwise.
Diffstat (limited to 'sys/nfs')
-rw-r--r-- | sys/nfs/nfsnode.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/nfs/nfsnode.h b/sys/nfs/nfsnode.h index f21f220..ab88873 100644 --- a/sys/nfs/nfsnode.h +++ b/sys/nfs/nfsnode.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsnode.h 8.4 (Berkeley) 2/13/94 - * $Id: nfsnode.h,v 1.2 1994/08/02 07:52:22 davidg Exp $ + * $Id: nfsnode.h,v 1.3 1994/08/08 17:30:55 davidg Exp $ */ /* @@ -76,7 +76,6 @@ struct nfsnode { time_t n_expiry; /* Lease expiry time */ struct nfsnode *n_tnext; /* Nqnfs timer chain */ struct nfsnode *n_tprev; - long spare1; /* To 8 byte boundary */ struct sillyrename n_silly; /* Silly rename struct */ struct timeval n_atim; /* Special file times */ struct timeval n_mtim; |