Commit 1f999572 authored by Oliver Chick's avatar Oliver Chick Committed by Jens Axboe

xen/blkback: Change xen_vbd's flush_support and discard_secure to have type...

xen/blkback: Change xen_vbd's flush_support and discard_secure to have type unsigned int, rather than bool

Changing the type of bdev parameters to be unsigned int :1, rather than bool.
This is more consistent with the types of other features in the block drivers.
Signed-off-by: default avatarOliver Chick <oliver.chick@citrix.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent b7010ede
...@@ -158,8 +158,8 @@ struct xen_vbd { ...@@ -158,8 +158,8 @@ struct xen_vbd {
struct block_device *bdev; struct block_device *bdev;
/* Cached size parameter. */ /* Cached size parameter. */
sector_t size; sector_t size;
bool flush_support; unsigned int flush_support:1;
bool discard_secure; unsigned int discard_secure:1;
}; };
struct backend_info; struct backend_info;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment