Re: [PATCH 2/3] ntfs: use $Q when marking quotas out of date

From: Namjae Jeon

Date: Wed May 13 2026 - 10:57:54 EST


> diff --git a/fs/ntfs/quota.c b/fs/ntfs/quota.c
> index b443243..7086951 100644
> --- a/fs/ntfs/quota.c
> +++ b/fs/ntfs/quota.c
> @@ -21,6 +21,7 @@ bool ntfs_mark_quotas_out_of_date(struct ntfs_volume *vol)
> {
> struct ntfs_index_context *ictx;
> struct quota_control_entry *qce;
> + static __le16 Q[3] = { cpu_to_le16('$'), cpu_to_le16('Q'), 0 };
Since Q[] is already defined in load_and_init_quota(), it would be
better to define it in quota.h to avoid redundancy.