diff options
author | Bob Peterson <rpeterso@redhat.com> | 2023-06-28 21:52:42 +0300 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2023-09-05 16:58:17 +0300 |
commit | eef46ab713f78591fe2cb20f5e90d9a8fdbddd59 (patch) | |
tree | a8ae6d6818677c099f18ddb6f9d69f42d809c480 /fs/gfs2/incore.h | |
parent | 267d1a011ec2345a320e84c16d8b91411f165aa8 (diff) | |
download | linux-eef46ab713f78591fe2cb20f5e90d9a8fdbddd59.tar.xz |
gfs2: Introduce new quota=quiet mount option
This patch adds a new mount option quota=quiet which is the same as
quota=on but it suppresses gfs2 quota error messages.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
-rw-r--r-- | fs/gfs2/incore.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index ab857431dfa4..7e94cf3562d6 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h @@ -537,6 +537,7 @@ struct gfs2_statfs_change_host { #define GFS2_QUOTA_OFF 0 #define GFS2_QUOTA_ACCOUNT 1 #define GFS2_QUOTA_ON 2 +#define GFS2_QUOTA_QUIET 3 /* on but not complaining */ #define GFS2_DATA_DEFAULT GFS2_DATA_ORDERED #define GFS2_DATA_WRITEBACK 1 |