X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=io_u_queue.c;h=9994c7879a066a6b277b1863bd6e7f902ba01795;hp=5734e9c399cc9fc48238bf1c8c943f956b7dbf72;hb=33d20146da0290049cf58fcc5ba9116bca9d7f92;hpb=2ae0b204743d6b4048c6fffd46c6280a70f2ecd1 diff --git a/io_u_queue.c b/io_u_queue.c index 5734e9c3..9994c787 100644 --- a/io_u_queue.c +++ b/io_u_queue.c @@ -3,11 +3,12 @@ int 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; q->nr = 0; + q->max = nr; return 0; } @@ -29,7 +30,7 @@ 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;