X-Git-Url: https://gitweb.dragonflybsd.org/~nant/dragonfly.git/blobdiff_plain/75cdc755a6a127d7019fc5700872450ef9ca1367..aabd5ce88e10cfe2005dedc5da2071731329e39d:/test/debug/vnodeinfo.c diff --git a/test/debug/vnodeinfo.c b/test/debug/vnodeinfo.c index 563232861b..0b4ca2fa6e 100644 --- a/test/debug/vnodeinfo.c +++ b/test/debug/vnodeinfo.c @@ -245,6 +245,10 @@ dumpvp(kvm_t *kd, struct vnode *vp, int whichlist) #endif if (vn.v_flag & VOBJBUF) printf(" VOBJBUF"); +#ifdef VSWAPCACHE + if (vn.v_flag & VSWAPCACHE) + printf(" VSWAPCACHE"); +#endif switch(vn.v_flag & (VAGE0 | VAGE1)) { case 0: printf(" VAGE0");