aboutsummaryrefslogtreecommitdiffstats
path: root/umount.c
blob: b015f83871feba3bcea6c7e3f3e2d76e717c9ab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "defs.h"

#define MNT_FORCE	0x00000001	/* Attempt to forcibily umount */
#define MNT_DETACH	0x00000002	/* Just detach from the tree */
#define MNT_EXPIRE	0x00000004	/* Mark for expiry */

#include "xlat/umount_flags.h"

SYS_FUNC(umount2)
{
	if (entering(tcp)) {
		printstr(tcp, tcp->u_arg[0], -1);
		tprints(", ");
		printflags(umount_flags, tcp->u_arg[1], "MNT_???");
	}
	return 0;
}