summaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-raid1.c
diff options
context:
space:
mode:
authorAlasdair G Kergon <agk@redhat.com>2012-07-27 16:08:08 +0200
committerAlasdair G Kergon <agk@redhat.com>2012-07-27 16:08:08 +0200
commit0ac55489d9e3898987b2ae305844cf2af86e6b8d (patch)
treeceacdf378d929bd0037879f42ea6270bc5ba220d /drivers/md/dm-raid1.c
parentdm thin: set flush_supported (diff)
downloadlinux-0ac55489d9e3898987b2ae305844cf2af86e6b8d.tar.xz
linux-0ac55489d9e3898987b2ae305844cf2af86e6b8d.zip
dm: use bool bitfields in struct dm_target
Use boolean bit fields for flags in struct dm_target. Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-raid1.c')
-rw-r--r--drivers/md/dm-raid1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c
index 819ccba65912..596a3a1164a7 100644
--- a/drivers/md/dm-raid1.c
+++ b/drivers/md/dm-raid1.c
@@ -1088,7 +1088,7 @@ static int mirror_ctr(struct dm_target *ti, unsigned int argc, char **argv)
ti->num_flush_requests = 1;
ti->num_discard_requests = 1;
- ti->discard_zeroes_data_unsupported = 1;
+ ti->discard_zeroes_data_unsupported = true;
ms->kmirrord_wq = alloc_workqueue("kmirrord",
WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);