dm: add missing blank line after declarations/fix those
authorHeinz Mauelshagen <heinzm@redhat.com>
Tue, 7 Feb 2023 19:48:51 +0000 (20:48 +0100)
committerMike Snitzer <snitzer@kernel.org>
Tue, 14 Feb 2023 19:23:07 +0000 (14:23 -0500)
Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
drivers/md/dm-raid.c
drivers/md/dm.c
drivers/md/persistent-data/dm-array.c
drivers/md/persistent-data/dm-btree.c
drivers/md/persistent-data/dm-btree.h

index de646eca6de0d55bb4aba6e5a18d50323dc72ea1..e777d7f4669dd338ff46aa1a15989e539af77626 100644 (file)
@@ -33,7 +33,7 @@
 static bool devices_handle_discard_safely;
 
 /*
- * The following flags are used by dm-raid.c to set up the array state.
+ * The following flags are used by dm-raid to set up the array state.
  * They must be cleared before md_run is called.
  */
 #define FirstUse 10            /* rdev flag */
index 96a2d615187954bf01b6c51145f4da313ecffe3f..50dc1f4e46154bdb25681195352924ed99e47b00 100644 (file)
@@ -105,6 +105,7 @@ EXPORT_SYMBOL_GPL(dm_per_bio_data);
 struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size)
 {
        struct dm_io *io = (struct dm_io *)((char *)data + data_size);
+
        if (io->magic == DM_IO_MAGIC)
                return (struct bio *)((char *)io + DM_IO_BIO_OFFSET);
        BUG_ON(io->magic != DM_TIO_MAGIC);
@@ -128,6 +129,7 @@ static int swap_bios = DEFAULT_SWAP_BIOS;
 static int get_swap_bios(void)
 {
        int latch = READ_ONCE(swap_bios);
+
        if (unlikely(latch <= 0))
                latch = DEFAULT_SWAP_BIOS;
        return latch;
@@ -1115,6 +1117,7 @@ static void clone_endio(struct bio *bio)
 
        if (endio) {
                int r = endio(ti, bio, &error);
+
                switch (r) {
                case DM_ENDIO_REQUEUE:
                        if (static_branch_unlikely(&zoned_enabled)) {
@@ -1403,6 +1406,7 @@ static void __map_bio(struct bio *clone)
        if (static_branch_unlikely(&swap_bios_enabled) &&
            unlikely(swap_bios_limit(ti, clone))) {
                int latch = get_swap_bios();
+
                if (unlikely(latch != md->swap_bios))
                        __set_swap_bios_limit(md, latch);
                down(&md->swap_bios_semaphore);
@@ -2803,6 +2807,7 @@ static int __dm_resume(struct mapped_device *md, struct dm_table *map)
 {
        if (map) {
                int r = dm_table_resume_targets(map);
+
                if (r)
                        return r;
        }
index 10dd058c56c02cb366987132c844d7f5cb2c45b6..798c9c53a343537be9b55ddbc59b83eb7b76b15f 100644 (file)
@@ -695,7 +695,7 @@ static int array_resize(struct dm_array_info *info, dm_block_t root,
 int dm_array_resize(struct dm_array_info *info, dm_block_t root,
                    uint32_t old_size, uint32_t new_size,
                    const void *value, dm_block_t *new_root)
-                   __dm_written_to_disk(value)
+       __dm_written_to_disk(value)
 {
        int r = array_resize(info, root, old_size, new_size, value, new_root);
 
@@ -846,7 +846,7 @@ out:
 
 int dm_array_set_value(struct dm_array_info *info, dm_block_t root,
                 uint32_t index, const void *value, dm_block_t *new_root)
-                __dm_written_to_disk(value)
+       __dm_written_to_disk(value)
 {
        int r;
 
index bb8b34ffeafc95df2292ee169fc4333f8e106fda..0c7a2e8d18468a1dba780124dd530f9de5cefe4d 100644 (file)
@@ -1320,7 +1320,7 @@ bad_unblessed:
 
 int dm_btree_insert(struct dm_btree_info *info, dm_block_t root,
                    uint64_t *keys, void *value, dm_block_t *new_root)
-                   __dm_written_to_disk(value)
+       __dm_written_to_disk(value)
 {
        return insert(info, root, keys, value, new_root, NULL);
 }
@@ -1329,7 +1329,7 @@ EXPORT_SYMBOL_GPL(dm_btree_insert);
 int dm_btree_insert_notify(struct dm_btree_info *info, dm_block_t root,
                           uint64_t *keys, void *value, dm_block_t *new_root,
                           int *inserted)
-                          __dm_written_to_disk(value)
+       __dm_written_to_disk(value)
 {
        return insert(info, root, keys, value, new_root, inserted);
 }
index f3f2b21c82c8aa6bca83a2fe8f462e1f77443d50..1b92acd7823da8b2ba1cc7ad5d323e81369a1905 100644 (file)
@@ -122,7 +122,7 @@ int dm_btree_lookup_next(struct dm_btree_info *info, dm_block_t root,
  */
 int dm_btree_insert(struct dm_btree_info *info, dm_block_t root,
                    uint64_t *keys, void *value, dm_block_t *new_root)
-                   __dm_written_to_disk(value);
+       __dm_written_to_disk(value);
 
 /*
  * A variant of insert that indicates whether it actually inserted or just