Commit ba43426c authored by Dariusz Stojaczyk's avatar Dariusz Stojaczyk Committed by Jim Harris
Browse files

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: default avatarDariusz Stojaczyk <dariuszx.stojaczyk@intel.com>
Reviewed-on: https://review.gerrithub.io/415588


Reviewed-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
parent 39cd6f85
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -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 = virtqueue_dequeue_burst_rx(vq, io, len, num);
	SPDK_DEBUGLOG(SPDK_LOG_VIRTIO_DEV, "used:%"PRIu16" dequeue:%"PRIu16"\n", nb_used, num);

	return num;
	return virtqueue_dequeue_burst_rx(vq, io, len, num);
}

int