struct mfsnode bloated in size by 12 bytes, so reduce spare padding by 3 longs.

We now only have 4 spare bytes before hitting the dreaded 32 byte threshold.
This commit is contained in:
Jeffrey Hsu 1996-11-04 20:53:02 +00:00
parent d57b472224
commit 78769fbc6a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=19403

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)mfsnode.h 8.2 (Berkeley) 8/11/93
* $Id: mfsnode.h,v 1.3 1994/08/21 07:16:12 paul Exp $
* $Id: mfsnode.h,v 1.4 1996/04/08 07:54:51 phk Exp $
*/
#ifndef _UFS_MFS_MFSNODE_H_
@ -48,7 +48,7 @@ struct mfsnode {
pid_t mfs_pid; /* supporting process pid */
struct buf_queue_head buf_queue; /* list of I/O requests */
int mfs_active;
long mfs_spare[4];
long mfs_spare[1];
};
/*