Lines Matching refs:vol
18 * @vol: ntfs volume on which to mark the quotas out of date
20 * Mark the quotas out of date on the ntfs volume @vol and return 'true' on
23 bool ntfs_mark_quotas_out_of_date(ntfs_volume *vol)
31 if (NVolQuotaOutOfDate(vol))
33 if (!vol->quota_ino || !vol->quota_q_ino) {
34 ntfs_error(vol->sb, "Quota inodes are not open.");
37 inode_lock(vol->quota_q_ino);
38 ictx = ntfs_index_ctx_get(NTFS_I(vol->quota_q_ino));
40 ntfs_error(vol->sb, "Failed to get index context.");
46 ntfs_error(vol->sb, "Quota defaults entry is not "
49 ntfs_error(vol->sb, "Lookup of quota defaults entry "
54 ntfs_error(vol->sb, "Quota defaults entry size is invalid. "
60 ntfs_error(vol->sb, "Quota defaults entry version 0x%x is not "
87 inode_unlock(vol->quota_q_ino);
92 NVolSetQuotaOutOfDate(vol);
99 inode_unlock(vol->quota_q_ino);