CVSROOT: /cvs Module name: src Changes by: k...@cvs.openbsd.org 2021/04/06 08:17:35
Modified files: sys/sys : mount.h Log message: Print all mount(2) flags in ddb's "show all mounts" Quite a few flags were never accounted for in MNT_BITS, resulting in bogus debug output such as "flags 4205800<WXALLOWED,LOCAL,ROOTFS>" (integer value does not match string interpretation, i.e. "SOFTDEP,SWAPPABLE" is missing). Spotted while instrumenting "show all mounts" to report a softdep panic. Feedback OK visa