quota.h 432 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * quota.h - Defines for NTFS kernel quota ($Quota) handling. Part of the
  4. * Linux-NTFS project.
  5. *
  6. * Copyright (c) 2004 Anton Altaparmakov
  7. */
  8. #ifndef _LINUX_NTFS_QUOTA_H
  9. #define _LINUX_NTFS_QUOTA_H
  10. #ifdef NTFS_RW
  11. #include "types.h"
  12. #include "volume.h"
  13. extern bool ntfs_mark_quotas_out_of_date(ntfs_volume *vol);
  14. #endif /* NTFS_RW */
  15. #endif /* _LINUX_NTFS_QUOTA_H */