HomeSort by relevance Sort by last modified time
    Searched refs:npkts (Results 1 - 3 of 3) sorted by null

  /external/blktrace/btreplay/
btrecord.c 257 cur->hdr.npkts = 0;
280 assert(cur->hdr.npkts < BT_MAX_PKTS);
283 cur->pkts[cur->hdr.npkts++] = iop; // Struct copy
575 assert(0 < hdrp->npkts && hdrp->npkts <= BT_MAX_PKTS);
589 (unsigned long long)hdrp->npkts);
600 size_t npkts = stream->cur->hdr.npkts; local
602 assert(0 < npkts && npkts <= BT_MAX_PKTS)
    [all...]
btrecord.h 35 __u64 npkts; member in struct:io_bunch_hdr
btreplay.c 1131 assert(bunch->hdr.npkts <= BT_MAX_PKTS);
1133 count = bunch->hdr.npkts * sizeof(struct io_pkt);
1255 struct iocb *list[bunch->hdr.npkts];
1257 assert(0 < bunch->hdr.npkts && bunch->hdr.npkts <= BT_MAX_PKTS);
1258 while (!is_send_done(tip) && (i < bunch->hdr.npkts)) {
1260 int ntodo = min(nfree_current(tip), bunch->hdr.npkts - i);
1289 assert(i <= bunch->hdr.npkts);
    [all...]

Completed in 21 milliseconds