Searched refs:mnt_flags (Results 1 - 22 of 22) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dpnode.h14 #define IS_MNT_SHARED(mnt) (mnt->mnt_flags & MNT_SHARED)
17 #define CLEAR_MNT_SHARED(mnt) (mnt->mnt_flags &= ~MNT_SHARED)
18 #define IS_MNT_UNBINDABLE(mnt) (mnt->mnt_flags & MNT_UNBINDABLE)
28 mnt->mnt_flags &= ~MNT_SHARED_MASK;
29 mnt->mnt_flags |= MNT_SHARED;
H A Dstatfs.c11 static int flags_by_mnt(int mnt_flags) argument
15 if (mnt_flags & MNT_READONLY)
17 if (mnt_flags & MNT_NOSUID)
19 if (mnt_flags & MNT_NODEV)
21 if (mnt_flags & MNT_NOEXEC)
23 if (mnt_flags & MNT_NOATIME)
25 if (mnt_flags & MNT_NODIRATIME)
27 if (mnt_flags & MNT_RELATIME)
44 return ST_VALID | flags_by_mnt(mnt->mnt_flags) |
H A Dnamespace.c212 if (mnt->mnt_flags & MNT_READONLY)
284 while (mnt->mnt_flags & MNT_WRITE_HOLD)
365 mnt->mnt_flags |= MNT_WRITE_HOLD;
391 mnt->mnt_flags |= MNT_READONLY;
397 mnt->mnt_flags &= ~MNT_WRITE_HOLD;
405 mnt->mnt_flags &= ~MNT_READONLY;
598 mnt->mnt_flags = old->mnt_flags;
830 if (mnt->mnt_flags & fs_infop->flag)
896 seq_puts(m, mnt->mnt_flags
1612 do_remount(struct path *path, int flags, int mnt_flags, void *data) argument
1735 do_new_mount(struct path *path, char *type, int flags, int mnt_flags, char *name, void *data) argument
1760 do_add_mount(struct vfsmount *newmnt, struct path *path, int mnt_flags, struct list_head *fslist) argument
2011 int mnt_flags = 0; local
[all...]
H A Dpnode.c143 mnt->mnt_flags |= MNT_UNBINDABLE;
145 mnt->mnt_flags &= ~MNT_UNBINDABLE;
H A Dinode.c1289 if (!(mnt->mnt_flags & MNT_RELATIME))
1335 if (mnt->mnt_flags & MNT_NOATIME)
1337 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
H A Dexec.c128 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
728 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
1208 if (!(bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID)) {
H A Dopen.c333 if (path.mnt->mnt_flags & MNT_NOEXEC)
H A Dsuper.c941 mnt->mnt_flags = MNT_INTERNAL;
H A Dblock_dev.c1682 if (path.mnt->mnt_flags & MNT_NODEV)
H A Dnamei.c1424 if (path->mnt->mnt_flags & MNT_NODEV)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dmount.h57 int mnt_flags; member in struct:vfsmount
76 * (so that reads of mnt_flags wont ping-pong on SMP machines)
136 int mnt_flags, struct list_head *fslist);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/tomoyo/
H A Drealpath.c135 if (!IS_ERR(pos) && (path->mnt->mnt_flags & MNT_INTERNAL) &&
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dvolume.c1241 static int ntfs_mntent_check(const char *file, unsigned long *mnt_flags) argument
1273 *mnt_flags = NTFS_MF_MOUNTED;
1275 *mnt_flags |= NTFS_MF_ISROOT;
1278 *mnt_flags |= NTFS_MF_READONLY;
1294 * @mnt_flags: pointer into which to return the ntfs mount flags (see volume.h)
1297 * just return 0 and set *@mnt_flags to zero.
1302 * return 0 and set *@mnt_flags to zero.
1304 * If the device @file is found, set the NTFS_MF_MOUNTED flags in *@mnt_flags.
1307 * NTFS_MF_ISROOT in *@mnt_flags.
1310 * NTFS_MF_READONLY flag in *@mnt_flags
1316 ntfs_check_if_mounted(const char *file __attribute__((unused)), unsigned long *mnt_flags) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/include/ntfs-3g/
H A Dvolume.h81 extern int ntfs_check_if_mounted(const char *file, unsigned long *mnt_flags);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfs/
H A Dnamespace.c147 err = do_add_mount(mnt, &nd->path, nd->path.mnt->mnt_flags|MNT_SHRINKABLE,
H A Dinode.c522 if ((mnt->mnt_flags & MNT_NOATIME) ||
523 ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cifs/
H A Dcifs_dfs_ref.c266 err = do_add_mount(newmnt, &nd->path, nd->path.mnt->mnt_flags | MNT_SHRINKABLE, mntlist);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/
H A Dcommoncap.c393 if (bprm->file->f_vfsmnt->mnt_flags & MNT_NOSUID)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/
H A Dfile.c238 if ((vfsmnt->mnt_flags & MNT_NOATIME) ||
239 ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
242 if (vfsmnt->mnt_flags & MNT_RELATIME) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/
H A Dmmap.c953 if (!(file && (file->f_path.mnt->mnt_flags & MNT_NOEXEC)))
1033 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
H A Dnommu.c941 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/selinux/
H A Dhooks.c531 char mnt_flags = sbsec->flags & SE_MNTMASK; local
543 if (mnt_flags & flag)
2075 if (bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID)

Completed in 392 milliseconds