1 #include "defs.h"
2 
3 #define MNT_FORCE	0x00000001	/* Attempt to forcibily umount */
4 #define MNT_DETACH	0x00000002	/* Just detach from the tree */
5 #define MNT_EXPIRE	0x00000004	/* Mark for expiry */
6 
7 #include "xlat/umount_flags.h"
8 
SYS_FUNC(umount2)9 SYS_FUNC(umount2)
10 {
11 	if (entering(tcp)) {
12 		printstr(tcp, tcp->u_arg[0], -1);
13 		tprints(", ");
14 		printflags(umount_flags, tcp->u_arg[1], "MNT_???");
15 	}
16 	return 0;
17 }
18