summaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorLuis de Bethencourt <luisbg@kernel.org>2018-01-17 15:09:25 +0000
committerMike Snitzer <snitzer@redhat.com>2018-01-29 13:44:57 -0500
commitbd6d1e0a5fafd47acb4ca5ca51d5dc8c7563112c (patch)
treef864f7ee41873f3d8cc5e42f41a0bf7b0ed7cf89 /drivers/md
parenteaa160ededfad7a38f7ee06dc1af2ced1b410ad8 (diff)
downloadlinux-0-day-bd6d1e0a5fafd47acb4ca5ca51d5dc8c7563112c.tar.gz
linux-0-day-bd6d1e0a5fafd47acb4ca5ca51d5dc8c7563112c.tar.xz
dm thin: fix trailing semicolon in __remap_and_issue_shared_cell
The trailing semicolon is an empty statement that does no operation. Removing it since it doesn't do anything. Signed-off-by: Luis de Bethencourt <luisbg@kernel.org> Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-thin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-thin.c b/drivers/md/dm-thin.c
index c1c6160be355f..629c555890c1b 100644
--- a/drivers/md/dm-thin.c
+++ b/drivers/md/dm-thin.c
@@ -1722,7 +1722,7 @@ static void __remap_and_issue_shared_cell(void *context,
bio_op(bio) == REQ_OP_DISCARD)
bio_list_add(&info->defer_bios, bio);
else {
- struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));;
+ struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
h->shared_read_entry = dm_deferred_entry_inc(info->tc->pool->shared_read_ds);
inc_all_io_entry(info->tc->pool, bio);