Commit 5ed610f6 authored by Shuhei Matsumoto's avatar Shuhei Matsumoto Committed by Ben Walker
Browse files

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



Change-Id: I6555b4012d375d05f7ffd3b72ad84de12b05a2c0
Signed-off-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-on: https://review.gerrithub.io/431431


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarPawel Wodkowski <pawelx.wodkowski@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
parent 6532e923
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;