dm: don't indent labels

Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
This commit is contained in:
Heinz Mauelshagen 2023-02-07 21:02:51 +01:00 committed by Mike Snitzer
parent 9bfeac5d33
commit a6ba79c014
4 changed files with 4 additions and 4 deletions

View File

@ -433,7 +433,7 @@ static int __init dm_bio_prison_init(void)
return 0;
bad:
bad:
while (i--)
_exits[i]();

View File

@ -66,7 +66,7 @@ struct dm_io_client *dm_io_client_create(void)
return client;
bad:
bad:
mempool_exit(&client->pool);
kfree(client);
return ERR_PTR(ret);

View File

@ -65,7 +65,7 @@ static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv)
ti->private = lc;
return 0;
bad:
bad:
kfree(lc);
return ret;
}

View File

@ -1342,7 +1342,7 @@ static int dmz_load_sb(struct dmz_metadata *zmd)
if (ret == -EINVAL)
goto out_kfree;
}
out_kfree:
out_kfree:
kfree(sb);
}
return ret;