module/raid: convert spaces to tabs in one .h struct

Adding a new element to this struct in an upcoming patch and want
it to look pretty and be consistent with everything else.

Signed-off-by: paul luse <paul.e.luse@intel.com>
Change-Id: I514244ea9441081ba83bd7425101a2bd3ba532c1
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/467885
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
This commit is contained in:
paul luse 2019-09-09 17:35:12 -04:00 committed by Jim Harris
parent db1f01c146
commit 3b128baead

View File

@ -193,23 +193,23 @@ struct raid_base_bdev_config {
*/ */
struct raid_bdev_config { struct raid_bdev_config {
/* base bdev config per underlying bdev */ /* base bdev config per underlying bdev */
struct raid_base_bdev_config *base_bdev; struct raid_base_bdev_config *base_bdev;
/* Points to already created raid bdev */ /* Points to already created raid bdev */
struct raid_bdev *raid_bdev; struct raid_bdev *raid_bdev;
char *name; char *name;
/* strip size of this raid bdev in kilo bytes */ /* strip size of this raid bdev in kilo bytes */
uint32_t strip_size; uint32_t strip_size;
/* number of base bdevs */ /* number of base bdevs */
uint8_t num_base_bdevs; uint8_t num_base_bdevs;
/* raid level */ /* raid level */
uint8_t raid_level; uint8_t raid_level;
TAILQ_ENTRY(raid_bdev_config) link; TAILQ_ENTRY(raid_bdev_config) link;
}; };
/* /*