Index: uspace/drv/nic/virtio-net/virtio-net.c
===================================================================
--- uspace/drv/nic/virtio-net/virtio-net.c	(revision 9364ced7cdbe1145d830467590ebd2fc6b31acbf)
+++ uspace/drv/nic/virtio-net/virtio-net.c	(revision e3887ce4879229f6cee6eba7e95b15817e16fef4)
@@ -163,4 +163,22 @@
 
 	/*
+	 * Give all RX buffers to the NIC
+	 */
+	for (unsigned i = 0; i < RX_BUFFERS; i++) {
+		/*
+		 * Associtate the buffer with the descriptor, set length and
+		 * flags.
+		 */
+		virtio_virtq_set_desc(vdev, RX_QUEUE_1, i,
+		    virtio_net->rx_buf_p[i], RX_BUF_SIZE, VIRTQ_DESC_F_WRITE,
+		    0);
+		/*
+		 * Put the set descriptor into the available ring of the RX
+		 * queue.
+		 */
+		virtio_virtq_produce_available(vdev, RX_QUEUE_1, i);
+	}
+
+	/*
 	 * Read the MAC address
 	 */
