summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/super.c
diff options
context:
space:
mode:
authorDavid Sterba2015-11-19 11:42:31 +0100
committerDavid Sterba2016-01-07 15:01:15 +0100
commit4d4ab6d6bc05ba65169de9a5391e6ccbe09d8719 (patch)
treeb4402e0388ee13df3bbd6d7f78108436e0dbea6b /fs/btrfs/super.c
parentbtrfs: constify remaining structs with function pointers (diff)
downloadkernel-qcow2-linux-4d4ab6d6bc05ba65169de9a5391e6ccbe09d8719.tar.gz
kernel-qcow2-linux-4d4ab6d6bc05ba65169de9a5391e6ccbe09d8719.tar.xz
kernel-qcow2-linux-4d4ab6d6bc05ba65169de9a5391e6ccbe09d8719.zip
btrfs: constify static arrays
There are a few statically initialized arrays that can be made const. The remaining (like file_system_type, sysfs attributes or prop handlers) do not allow that due to type mismatch when passed to the APIs or because the structures are modified through other members. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r--fs/btrfs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index 24154e422945..b813fd76f03f 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -309,7 +309,7 @@ enum {
Opt_err,
};
-static match_table_t tokens = {
+static const match_table_t tokens = {
{Opt_degraded, "degraded"},
{Opt_subvol, "subvol=%s"},
{Opt_subvolid, "subvolid=%s"},