summaryrefslogtreecommitdiffstats
path: root/isys/mount_constants.h
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-01-22 16:50:19 -0500
committerChris Lumens <clumens@redhat.com>2008-02-11 10:44:58 -0500
commit0020bc8dc4458fb6ff1a7d42ad5c3eb5c85306c8 (patch)
treebba8cbbb1c428a5cc0cf45b85c9d42cadebbcaf7 /isys/mount_constants.h
parentcc92e5a32bb9ac4e11a965e276e9535fb76a4371 (diff)
downloadanaconda-0020bc8dc4458fb6ff1a7d42ad5c3eb5c85306c8.tar.gz
anaconda-0020bc8dc4458fb6ff1a7d42ad5c3eb5c85306c8.tar.xz
anaconda-0020bc8dc4458fb6ff1a7d42ad5c3eb5c85306c8.zip
Remove all our own mount code.
Diffstat (limited to 'isys/mount_constants.h')
-rw-r--r--isys/mount_constants.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/isys/mount_constants.h b/isys/mount_constants.h
deleted file mode 100644
index 7bf96103f..000000000
--- a/isys/mount_constants.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * mount_constants.h
- *
- * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#define MS_RDONLY 1 /* Mount read-only */
-#define MS_NOSUID 2 /* Ignore suid and sgid bits */
-#define MS_NODEV 4 /* Disallow access to device special files */
-#define MS_NOEXEC 8 /* Disallow program execution */
-#define MS_SYNCHRONOUS 16 /* Writes are synced at once */
-#define MS_REMOUNT 32 /* Alter flags of a mounted FS */
-#define MS_MANDLOCK 64 /* Allow mandatory locks on an FS */
-#define MS_NOATIME 1024 /* Do not update access times. */
-#define MS_NODIRATIME 2048 /* Do not update directory access times */
-/*
- * Magic mount flag number. Has to be or-ed to the flag values.
- */
-#ifndef MS_MGC_VAL
-#define MS_MGC_VAL 0xC0ED0000 /* magic flag number to indicate "new" flags */
-#endif
-#define MS_MGC_MSK 0xffff0000 /* magic flag number mask */