From 62d77e4e0c90fb59b7e14123249572b19e7e2fd0 Mon Sep 17 00:00:00 2001 From: Mateusz Guzik Date: Mon, 9 Nov 2020 00:04:58 +0000 Subject: [PATCH] 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. --- sys/sys/bufobj.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/bufobj.h b/sys/sys/bufobj.h index e52af6cbba2..0945097077b 100644 --- a/sys/sys/bufobj.h +++ b/sys/sys/bufobj.h @@ -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 */