virtio: remove DEBUGLOG about received descriptors
Once enabled, this DEBUGLOG would be printed every poller tick. It's not practical, so it's being removed now. Change-Id: I8627dedcc2c0df8065ffe575059938d620491dd5 Signed-off-by: Dariusz Stojaczyk <dariuszx.stojaczyk@intel.com> Reviewed-on: https://review.gerrithub.io/415588 Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
This commit is contained in:
parent
39cd6f8551
commit
ba43426c3d
@ -556,10 +556,7 @@ virtio_recv_pkts(struct virtqueue *vq, void **io, uint32_t *len, uint16_t nb_pkt
|
|||||||
num = num - ((vq->vq_used_cons_idx + num) % DESC_PER_CACHELINE);
|
num = num - ((vq->vq_used_cons_idx + num) % DESC_PER_CACHELINE);
|
||||||
}
|
}
|
||||||
|
|
||||||
num = virtqueue_dequeue_burst_rx(vq, io, len, num);
|
return virtqueue_dequeue_burst_rx(vq, io, len, num);
|
||||||
SPDK_DEBUGLOG(SPDK_LOG_VIRTIO_DEV, "used:%"PRIu16" dequeue:%"PRIu16"\n", nb_used, num);
|
|
||||||
|
|
||||||
return num;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Loading…
Reference in New Issue
Block a user