diff options
author | Eric Sandeen <sandeen@redhat.com> | 2024-07-03 00:41:22 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-07-03 10:48:59 +0200 |
commit | 206d3d8e006c77b8016de586423de37dbff9e6fc (patch) | |
tree | 05905d8b45db74096f1c150499b24ecca0f94f50 /fs/fat/fat.h | |
parent | vboxsf: Convert to new uid/gid option parsing helpers (diff) | |
download | linux-206d3d8e006c77b8016de586423de37dbff9e6fc.tar.xz linux-206d3d8e006c77b8016de586423de37dbff9e6fc.zip |
fat: move debug into fat_mount_options
Move the debug variable into fat_mount_options for consistency and
to facilitate conversion to new mount API.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Link: https://lore.kernel.org/r/f6155247-32ee-4cfe-b808-9102b17f7cd1@redhat.com
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/fat/fat.h')
-rw-r--r-- | fs/fat/fat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/fat/fat.h b/fs/fat/fat.h index 66cf4778cf3b..37ced7bb06d5 100644 --- a/fs/fat/fat.h +++ b/fs/fat/fat.h @@ -51,7 +51,8 @@ struct fat_mount_options { tz_set:1, /* Filesystem timestamps' offset set */ rodir:1, /* allow ATTR_RO for directory */ discard:1, /* Issue discard requests on deletions */ - dos1xfloppy:1; /* Assume default BPB for DOS 1.x floppies */ + dos1xfloppy:1, /* Assume default BPB for DOS 1.x floppies */ + debug:1; /* Not currently used */ }; #define FAT_HASH_BITS 8 |