This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / include / linux / mount.h
index c69739b..42e2c94 100644 (file)
@@ -17,9 +17,6 @@
 #define MNT_NOSUID     1
 #define MNT_NODEV      2
 #define MNT_NOEXEC     4
-#define MNT_RDONLY     8
-#define MNT_NOATIME    16
-#define MNT_NODIRATIME 32
 
 struct vfsmount
 {
@@ -39,10 +36,6 @@ struct vfsmount
        struct namespace *mnt_namespace; /* containing namespace */
 };
 
-#define        MNT_IS_RDONLY(m)        ((m) && ((m)->mnt_flags & MNT_RDONLY))
-#define        MNT_IS_NOATIME(m)       ((m) && ((m)->mnt_flags & MNT_NOATIME))
-#define        MNT_IS_NODIRATIME(m)    ((m) && ((m)->mnt_flags & MNT_NODIRATIME))
-
 static inline struct vfsmount *mntget(struct vfsmount *mnt)
 {
        if (mnt)