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