From 6532e9235315f101bdc2d7b6772a6abd82c1f57e Mon Sep 17 00:00:00 2001 From: Shuhei Matsumoto Date: Tue, 30 Oct 2018 09:06:43 +0900 Subject: [PATCH] blob: Use not C++ style comments // but C-style comments /* */ Change-Id: I6f940519002c3999ef324cdbc6d034305cf115b9 Signed-off-by: Shuhei Matsumoto Reviewed-on: https://review.gerrithub.io/431236 Tested-by: SPDK CI Jenkins Chandler-Test-Pool: SPDK Automated Test System Reviewed-by: Jim Harris Reviewed-by: Ben Walker Reviewed-by: Pawel Wodkowski --- test/unit/lib/blob/blob.c/blob_ut.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/lib/blob/blob.c/blob_ut.c b/test/unit/lib/blob/blob.c/blob_ut.c index 88f438eb3..d55bd1e01 100644 --- a/test/unit/lib/blob/blob.c/blob_ut.c +++ b/test/unit/lib/blob/blob.c/blob_ut.c @@ -5647,7 +5647,7 @@ blob_io_unit(void) /* Create dev with 512 bytes io unit size */ spdk_bs_opts_init(&bsopts); - bsopts.cluster_sz = SPDK_BS_PAGE_SIZE * 4; // 8 * 4 = 32 io_unit + bsopts.cluster_sz = SPDK_BS_PAGE_SIZE * 4; /* 8 * 4 = 32 io_unit */ snprintf(bsopts.bstype.bstype, sizeof(bsopts.bstype.bstype), "TESTTYPE"); /* Try to initialize a new blob store with unsupported io_unit */ @@ -5785,7 +5785,7 @@ blob_io_unit_compatiblity(void) /* Create dev with 512 bytes io unit size */ spdk_bs_opts_init(&bsopts); - bsopts.cluster_sz = SPDK_BS_PAGE_SIZE * 4; // 8 * 4 = 32 io_unit + bsopts.cluster_sz = SPDK_BS_PAGE_SIZE * 4; /* 8 * 4 = 32 io_unit */ snprintf(bsopts.bstype.bstype, sizeof(bsopts.bstype.bstype), "TESTTYPE"); /* Try to initialize a new blob store with unsupported io_unit */