Collect per Q stats for vhost-user interface
[vpp.git] / vnet / vnet / devices / dpdk / dpdk_priv.h
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #define DPDK_NB_RX_DESC_DEFAULT   512
17 #define DPDK_NB_TX_DESC_DEFAULT   512
18 #define DPDK_NB_RX_DESC_VIRTIO    256
19 #define DPDK_NB_TX_DESC_VIRTIO    256
20 #define DPDK_NB_RX_DESC_10GE    2048
21 #define DPDK_NB_TX_DESC_10GE    2048
22 #define DPDK_NB_RX_DESC_40GE    (4096-128)
23 #define DPDK_NB_TX_DESC_40GE    2048
24
25 /* These args appear by themselves */
26 #define foreach_eal_double_hyphen_predicate_arg \
27 _(no-shconf)                                    \
28 _(no-hpet)                                      \
29 _(no-pci)                                       \
30 _(no-huge)                                      \
31 _(vmware-tsc-map)                               \
32 _(virtio-vhost)
33
34 #define foreach_eal_single_hyphen_mandatory_arg \
35 _(coremask, c)                                  \
36 _(nchannels, n)                                 \
37
38 #define foreach_eal_single_hyphen_arg           \
39 _(blacklist, b)                                 \
40 _(mem-alloc-request, m)                         \
41 _(force-ranks, r)
42
43 /* These args are preceeded by "--" and followed by a single string */
44 #define foreach_eal_double_hyphen_arg           \
45 _(huge-dir)                                     \
46 _(proc-type)                                    \
47 _(file-prefix)                                  \
48 _(socket-mem)                                   \
49 _(vdev)
50
51 static inline u32
52 dpdk_rx_burst ( dpdk_main_t * dm, dpdk_device_t * xd, u16 queue_id)
53 {
54   u32 n_buffers;
55   u32 n_left;
56   u32 n_this_chunk;
57
58   n_left = VLIB_FRAME_SIZE;
59   n_buffers = 0;
60
61   if (PREDICT_TRUE(xd->dev_type == VNET_DPDK_DEV_ETH))
62     {
63       while (n_left)
64         {
65           n_this_chunk = rte_eth_rx_burst (xd->device_index, queue_id,
66                                            xd->rx_vectors[queue_id] + n_buffers, n_left);
67           n_buffers += n_this_chunk;
68           n_left -= n_this_chunk;
69
70           /* Empirically, DPDK r1.8 produces vectors w/ 32 or fewer elts */
71           if (n_this_chunk < 32)
72             break;
73       }
74     }
75   else if (xd->dev_type == VNET_DPDK_DEV_VHOST_USER)
76     {
77       vlib_main_t * vm = vlib_get_main();
78       vlib_buffer_main_t * bm = vm->buffer_main;
79       unsigned socket_id = rte_socket_id();
80       u32 offset = 0;
81
82 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
83       offset = queue_id * VIRTIO_QNUM;
84
85       struct vhost_virtqueue *vq =
86         xd->vu_vhost_dev.virtqueue[offset + VIRTIO_TXQ];
87
88       if (PREDICT_FALSE(!vq->enabled))
89         return 0;
90 #else
91       if (PREDICT_FALSE(!xd->vu_is_running))
92         return 0;
93 #endif
94
95       n_buffers = rte_vhost_dequeue_burst(&xd->vu_vhost_dev, offset + VIRTIO_TXQ,
96                                           bm->pktmbuf_pools[socket_id],
97                                           xd->rx_vectors[queue_id], VLIB_FRAME_SIZE);
98
99       int i; u32 bytes = 0;
100       struct rte_mbuf **pkts = xd->rx_vectors[queue_id];
101       for (i = 0; i < n_buffers; i++) {
102           struct rte_mbuf *buff = pkts[i];
103           bytes += rte_pktmbuf_data_len(buff);
104       } 
105
106       f64 now = vlib_time_now (vm);
107
108       dpdk_vu_vring *vring = &(xd->vu_intf->vrings[offset + VIRTIO_TXQ]);
109       vring->packets += n_buffers;
110       vring->bytes += bytes;
111
112       /* send pending interrupts if needed */
113       if (dpdk_vhost_user_want_interrupt(xd, offset + VIRTIO_TXQ)) {
114           vring->n_since_last_int += n_buffers;
115
116           if ((vring->n_since_last_int && (vring->int_deadline < now))
117               || (vring->n_since_last_int > dm->vhost_coalesce_frames))
118             dpdk_vhost_user_send_interrupt(vm, xd, offset + VIRTIO_TXQ);
119       }
120
121       if (dpdk_vhost_user_want_interrupt(xd, offset + VIRTIO_RXQ)) {
122           vring = &(xd->vu_intf->vrings[offset + VIRTIO_RXQ]);
123           if (vring->n_since_last_int && (vring->int_deadline < now))
124             dpdk_vhost_user_send_interrupt(vm, xd, offset + VIRTIO_RXQ);
125       }
126
127     }
128 #ifdef RTE_LIBRTE_KNI
129   else if (xd->dev_type == VNET_DPDK_DEV_KNI)
130     {
131       n_buffers = rte_kni_rx_burst(xd->kni, xd->rx_vectors[queue_id], VLIB_FRAME_SIZE);
132       rte_kni_handle_request(xd->kni);
133     }
134 #endif
135   else
136     {
137       ASSERT(0);
138     }
139
140   return n_buffers;
141 }
142
143
144 static inline void
145 dpdk_update_counters (dpdk_device_t * xd, f64 now)
146 {
147   vlib_simple_counter_main_t * cm;
148   vnet_main_t * vnm = vnet_get_main();
149   u32 my_cpu = os_get_cpu_number();
150   u64 rxerrors, last_rxerrors;
151   int len;
152
153   /* only update counters for PMD interfaces */
154   if (xd->dev_type != VNET_DPDK_DEV_ETH)
155     return;
156
157   /*
158    * DAW-FIXME: VMXNET3 device stop/start doesn't work,
159    * therefore fake the stop in the dpdk driver by
160    * silently dropping all of the incoming pkts instead of
161    * stopping the driver / hardware.
162    */
163   if (xd->admin_up != 0xff)
164     {
165       xd->time_last_stats_update = now ? now : xd->time_last_stats_update;
166       memcpy (&xd->last_stats, &xd->stats, sizeof (xd->last_stats));
167       rte_eth_stats_get (xd->device_index, &xd->stats);
168
169       /* maybe bump interface rx no buffer counter */
170       if (PREDICT_FALSE (xd->stats.rx_nombuf != xd->last_stats.rx_nombuf))
171         {
172           cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
173                                  VNET_INTERFACE_COUNTER_RX_NO_BUF);
174
175           vlib_increment_simple_counter (cm, my_cpu, xd->vlib_sw_if_index,
176                                          xd->stats.rx_nombuf -
177                                          xd->last_stats.rx_nombuf);
178         }
179
180       /* missed pkt counter */
181       if (PREDICT_FALSE (xd->stats.imissed != xd->last_stats.imissed))
182         {
183           cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
184                                  VNET_INTERFACE_COUNTER_RX_MISS);
185
186           vlib_increment_simple_counter (cm, my_cpu, xd->vlib_sw_if_index,
187                                          xd->stats.imissed -
188                                          xd->last_stats.imissed);
189         }
190 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
191       rxerrors = xd->stats.ierrors;
192       last_rxerrors = xd->last_stats.ierrors;
193 #else
194       rxerrors = xd->stats.ibadcrc
195         + xd->stats.ibadlen + xd->stats.ierrors;
196       last_rxerrors = xd->last_stats.ibadcrc
197         + xd->last_stats.ibadlen + xd->last_stats.ierrors;
198 #endif
199
200       if (PREDICT_FALSE (rxerrors != last_rxerrors))
201         {
202           cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
203                                  VNET_INTERFACE_COUNTER_RX_ERROR);
204
205           vlib_increment_simple_counter (cm, my_cpu, xd->vlib_sw_if_index,
206                                          rxerrors - last_rxerrors);
207         }
208     }
209
210   if ((len = rte_eth_xstats_get(xd->device_index, NULL, 0)) > 0)
211     {
212       vec_validate(xd->xstats, len - 1);
213       len = rte_eth_xstats_get(xd->device_index, xd->xstats, vec_len(xd->xstats));
214       ASSERT(vec_len(xd->xstats) == len);
215       _vec_len(xd->xstats) = len;
216     }
217 }