From c0f7366f3ae8de8a62e3cc6824080e02e780f3b2 Mon Sep 17 00:00:00 2001 From: Chuck Lever Date: Mon, 16 Jul 2007 16:28:56 -0400 Subject: mount.nfs: Move MS_DUMMY and friends to header file We move the definitions of MS_USER and friends to our local copy of mount_constants.h. These will need to be available in nfsmount.c and nfs4mount.c when we move the mount system call out of mount.c. Signed-off-by: Chuck Lever Signed-off-by: Neil Brown --- utils/mount/mount.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'utils/mount/mount.c') diff --git a/utils/mount/mount.c b/utils/mount/mount.c index e3f84a0..de94e66 100644 --- a/utils/mount/mount.c +++ b/utils/mount/mount.c @@ -72,11 +72,6 @@ struct opt_map { int mask; /* flag mask value */ }; -/* Custom mount options for our own purposes. */ -#define MS_DUMMY 0x00000000 -#define MS_USERS 0x40000000 -#define MS_USER 0x80000000 - static const struct opt_map opt_map[] = { { "defaults", 0, 0, 0 }, /* default options */ { "ro", 1, 0, MS_RDONLY }, /* read-only */ -- cgit