diff options
| author | Jan Kara <jack@suse.cz> | 2025-02-26 17:57:51 +0100 |
|---|---|---|
| committer | Jan Kara <jack@suse.cz> | 2025-02-26 18:00:24 +0100 |
| commit | a7624ccdef4f020325893534914fad549e51ac83 (patch) | |
| tree | b9abc9d20952399c70890ae9bfdd3e67478e8ded /fs/ext2 | |
| parent | ext2: create ext2_msg_fc for use during parsing (diff) | |
| download | linux-a7624ccdef4f020325893534914fad549e51ac83.tar.gz linux-a7624ccdef4f020325893534914fad549e51ac83.zip | |
ext2: Make ext2_params_spec static
It isn't used outside of fs/ext2/super.c.
Reported-by: kernel test robot <lkp@intel.com>
Fixes: eab61d3260d7 ("ext2: convert to the new mount API")
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ext2')
| -rw-r--r-- | fs/ext2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index 4b894d16937d..28ff47ec4be6 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -442,7 +442,7 @@ static const struct constant_table ext2_param_errors[] = { {} }; -const struct fs_parameter_spec ext2_param_spec[] = { +static const struct fs_parameter_spec ext2_param_spec[] = { fsparam_flag ("bsddf", Opt_bsd_df), fsparam_flag ("minixdf", Opt_minix_df), fsparam_flag ("grpid", Opt_grpid), |
