mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04: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
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue