test/io_uring-cp: add some comments

Signed-off-by: Jens Axboe <axboe@kernel.dk>
diff --git a/test/io_uring-cp.c b/test/io_uring-cp.c
index e129d84..3790736 100644
--- a/test/io_uring-cp.c
+++ b/test/io_uring-cp.c
@@ -154,8 +154,7 @@
 		}
 
 		/*
-		 * read queue full, get at least one completion and queue up
-		 * a write
+		 * Queue is full at this point. Find at least one completion.
 		 */
 		got_comp = 0;
 		while (write_left) {
@@ -184,6 +183,7 @@
 						strerror(-cqe->res));
 				return 1;
 			} else if (cqe->res != data->iov.iov_len) {
+				/* Short read/write, adjust and requeue */
 				data->iov.iov_base += cqe->res;
 				data->iov.iov_len -= cqe->res;
 				data->offset += cqe->res;