]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
dm space map metadata: constify dm_space_map structures
authorBhumika Goyal <bhumirks@gmail.com>
Wed, 15 Feb 2017 18:13:28 +0000 (23:43 +0530)
committerMike Snitzer <snitzer@redhat.com>
Thu, 16 Feb 2017 19:14:36 +0000 (14:14 -0500)
Declare dm_space_map structures as const as they are only passed as an
argument to the function memcpy. This argument is of type const void *,
so dm_space_map structures having this property can be declared as
const.

File size before:
   text    data     bss     dec     hex filename
   4889     240       0    5129    1409 dm-space-map-metadata.o

File size after:
   text    data     bss     dec     hex filename
   5139       0       0    5139    1413 dm-space-map-metadata.o

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
drivers/md/persistent-data/dm-space-map-metadata.c

index 20557e2c60c6236bf16cc35e33d3f9eb0e318779..4aed69d9dd17ca1c4f9aa055699f53764a681ccb 100644 (file)
@@ -544,7 +544,7 @@ static int sm_metadata_copy_root(struct dm_space_map *sm, void *where_le, size_t
 
 static int sm_metadata_extend(struct dm_space_map *sm, dm_block_t extra_blocks);
 
-static struct dm_space_map ops = {
+static const struct dm_space_map ops = {
        .destroy = sm_metadata_destroy,
        .extend = sm_metadata_extend,
        .get_nr_blocks = sm_metadata_get_nr_blocks,
@@ -671,7 +671,7 @@ static int sm_bootstrap_copy_root(struct dm_space_map *sm, void *where,
        return -EINVAL;
 }
 
-static struct dm_space_map bootstrap_ops = {
+static const struct dm_space_map bootstrap_ops = {
        .destroy = sm_bootstrap_destroy,
        .extend = sm_bootstrap_extend,
        .get_nr_blocks = sm_bootstrap_get_nr_blocks,