diff options
author | David Sterba <dsterba@suse.cz> | 2015-01-02 18:23:10 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.cz> | 2015-02-16 18:48:44 +0100 |
commit | e8c9f18603f7ce2beca233401e228de730f121fa (patch) | |
tree | 33df6dd1661f9a25a167f011a7669db44b588e5b /fs/btrfs/volumes.c | |
parent | f749303bda20392e1d4a10adda84524365afd0e6 (diff) | |
download | op-kernel-dev-e8c9f18603f7ce2beca233401e228de730f121fa.zip op-kernel-dev-e8c9f18603f7ce2beca233401e228de730f121fa.tar.gz |
btrfs: constify structs with op functions or static definitions
There are some op tables that can be easily made const, similarly the
sysfs feature and raid tables. This is motivated by PaX CONSTIFY plugin.
Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'fs/btrfs/volumes.c')
-rw-r--r-- | fs/btrfs/volumes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index cd4d131..33ed9df 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -4131,7 +4131,7 @@ static int btrfs_cmp_device_info(const void *a, const void *b) return 0; } -static struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = { +static const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = { [BTRFS_RAID_RAID10] = { .sub_stripes = 2, .dev_stripes = 1, |