From 5837c6db43c65c263796a972d5f6f84cbdd968ea Mon Sep 17 00:00:00 2001 From: Bryant Mairs Date: Tue, 5 Dec 2017 19:36:53 -0800 Subject: [PATCH] Remove internal kernel flags --- src/mount.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/mount.rs b/src/mount.rs index fb43e24cb1..2969154307 100644 --- a/src/mount.rs +++ b/src/mount.rs @@ -18,7 +18,6 @@ bitflags!( const MS_BIND = libc::MS_BIND; // Linux 2.4.0 - Bind directory at different place const MS_MOVE = libc::MS_MOVE; const MS_REC = libc::MS_REC; - const MS_VERBOSE = 1 << 15; // Deprecated const MS_SILENT = libc::MS_SILENT; const MS_POSIXACL = libc::MS_POSIXACL; const MS_UNBINDABLE = libc::MS_UNBINDABLE; @@ -29,8 +28,6 @@ bitflags!( const MS_KERNMOUNT = libc::MS_KERNMOUNT; const MS_I_VERSION = libc::MS_I_VERSION; const MS_STRICTATIME = libc::MS_STRICTATIME; - const MS_NOSEC = 1 << 28; - const MS_BORN = 1 << 29; const MS_ACTIVE = libc::MS_ACTIVE; const MS_NOUSER = libc::MS_NOUSER; const MS_RMT_MASK = libc::MS_RMT_MASK;