mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 23:57:54 +01:00
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:
parent
d57b472224
commit
78769fbc6a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=19403
@ -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];
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user