diff options
author | Heinz Mauelshagen <heinzm@redhat.com> | 2023-01-26 01:31:55 +0300 |
---|---|---|
committer | Mike Snitzer <snitzer@kernel.org> | 2023-02-14 22:23:06 +0300 |
commit | 255e2646496fcbf836a3dfe1b535692f09f11b45 (patch) | |
tree | 2f049f43246d6b0c9445818eb0a2d91ac4a61e69 /drivers/md/dm-log.c | |
parent | 96422281baf57f4d9418581fdfaca9617bb805e1 (diff) | |
download | linux-255e2646496fcbf836a3dfe1b535692f09f11b45.tar.xz |
dm: address indent/space issues
Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Diffstat (limited to 'drivers/md/dm-log.c')
-rw-r--r-- | drivers/md/dm-log.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/md/dm-log.c b/drivers/md/dm-log.c index c87d8758718d..fe7b24a45812 100644 --- a/drivers/md/dm-log.c +++ b/drivers/md/dm-log.c @@ -758,8 +758,8 @@ static void core_set_region_sync(struct dm_dirty_log *log, region_t region, log_clear_bit(lc, lc->recovering_bits, region); if (in_sync) { log_set_bit(lc, lc->sync_bits, region); - lc->sync_count++; - } else if (log_test_bit(lc->sync_bits, region)) { + lc->sync_count++; + } else if (log_test_bit(lc->sync_bits, region)) { lc->sync_count--; log_clear_bit(lc, lc->sync_bits, region); } @@ -767,9 +767,9 @@ static void core_set_region_sync(struct dm_dirty_log *log, region_t region, static region_t core_get_sync_count(struct dm_dirty_log *log) { - struct log_c *lc = (struct log_c *) log->context; + struct log_c *lc = (struct log_c *) log->context; - return lc->sync_count; + return lc->sync_count; } #define DMEMIT_SYNC \ |