ioat: Use not C++ style comments // but C-style comments /* */

Change-Id: I6555b4012d375d05f7ffd3b72ad84de12b05a2c0
Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-on: https://review.gerrithub.io/431431
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Shuhei Matsumoto 2018-10-31 09:16:54 +09:00 committed by Ben Walker
parent 6532e92353
commit 5ed610f63b

View File

@ -349,7 +349,7 @@ work_fn(void *arg)
t = worker->ctx;
while (t != NULL) {
// begin to submit transfers
/* begin to submit transfers */
submit_xfers(t, g_user_config.queue_depth);
t = t->next;
}
@ -368,7 +368,7 @@ work_fn(void *arg)
t = worker->ctx;
while (t != NULL) {
// begin to drain io
/* begin to drain io */
t->is_draining = true;
drain_io(t);
t = t->next;