X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=io_u_queue.c;h=8cf4c8c3d702234a1cc0b0ba5ffee83ef3a4687a;hp=5734e9c399cc9fc48238bf1c8c943f956b7dbf72;hb=089ddd95141af8a6cb83067123af1200aa81b2b8;hpb=2ae0b204743d6b4048c6fffd46c6280a70f2ecd1 diff --git a/io_u_queue.c b/io_u_queue.c index 5734e9c3..8cf4c8c3 100644 --- a/io_u_queue.c +++ b/io_u_queue.c @@ -1,14 +1,15 @@ #include #include "io_u_queue.h" -int io_u_qinit(struct io_u_queue *q, unsigned int nr) +bool io_u_qinit(struct io_u_queue *q, unsigned int nr) { - q->io_us = calloc(sizeof(struct io_u *), nr); + q->io_us = calloc(nr, sizeof(struct io_u *)); if (!q->io_us) - return 1; + return false; q->nr = 0; - return 0; + q->max = nr; + return true; } void io_u_qexit(struct io_u_queue *q) @@ -16,7 +17,7 @@ void io_u_qexit(struct io_u_queue *q) free(q->io_us); } -int io_u_rinit(struct io_u_ring *ring, unsigned int nr) +bool io_u_rinit(struct io_u_ring *ring, unsigned int nr) { ring->max = nr + 1; if (ring->max & (ring->max - 1)) { @@ -29,12 +30,12 @@ int io_u_rinit(struct io_u_ring *ring, unsigned int nr) ring->max++; } - ring->ring = calloc(sizeof(struct io_u *), ring->max); + ring->ring = calloc(ring->max, sizeof(struct io_u *)); if (!ring->ring) - return 1; + return false; ring->head = ring->tail = 0; - return 0; + return true; } void io_u_rexit(struct io_u_ring *ring)