mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
bufcache: convert bo_numoutput from long to int
int is wide enough and it plugs a hole in struct vnode, taking it down from 496 to 488 bytes.
This commit is contained in:
parent
e90afaa015
commit
62d77e4e0c
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ struct bufobj {
|
|||
void *bo_private; /* private pointer */
|
||||
struct bufv bo_clean; /* i Clean buffers */
|
||||
struct bufv bo_dirty; /* i Dirty buffers */
|
||||
long bo_numoutput; /* i Writes in progress */
|
||||
int bo_numoutput; /* i Writes in progress */
|
||||
u_int bo_flag; /* i Flags */
|
||||
int bo_domain; /* - Clean queue affinity */
|
||||
int bo_bsize; /* - Block size for i/o */
|
||||
|
|
|
|||
Loading…
Reference in a new issue