Lines Matching defs:mnt_flags
1492 static int ntfs_mntent_check(const char *file, unsigned long *mnt_flags)
1525 *mnt_flags = NTFS_MF_MOUNTED;
1527 *mnt_flags |= NTFS_MF_ISROOT;
1530 *mnt_flags |= NTFS_MF_READONLY;
1546 static int ntfs_mntent_check(const char *file, unsigned long *mnt_flags)
1574 *mnt_flags = NTFS_MF_MOUNTED;
1576 *mnt_flags |= NTFS_MF_ISROOT;
1578 *mnt_flags |= NTFS_MF_READONLY;
1600 * @mnt_flags: pointer into which to return the ntfs mount flags (see volume.h)
1603 * just return 0 and set *@mnt_flags to zero.
1608 * return 0 and set *@mnt_flags to zero.
1610 * If the device @file is found, set the NTFS_MF_MOUNTED flags in *@mnt_flags.
1613 * NTFS_MF_ISROOT in *@mnt_flags.
1616 * NTFS_MF_READONLY flag in *@mnt_flags.
1618 * On success return 0 with *@mnt_flags set to the ntfs mount flags.
1623 unsigned long *mnt_flags)
1625 *mnt_flags = 0;
1627 return ntfs_mntent_check(file, mnt_flags);