FD.io VPP  v21.06
Vector Packet Processing
virtio_process.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2020 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #include <vlib/vlib.h>
20 #include <vnet/gso/gro_func.h>
22 
23 static uword
26 {
27  virtio_if_t *vif;
28  f64 timeout = 3153600000.0 /* 100 years */ ;
29  uword event_type, *event_data = 0;
30  virtio_main_t *vim = &virtio_main;
31 
32  while (1)
33  {
35  event_type = vlib_process_get_events (vm, &event_data);
36  vec_reset_length (event_data);
37 
38  switch (event_type)
39  {
41  timeout = 3153600000.0;
42  break;
43 
45  timeout = 1e-3; /* 1 millisecond */
46  break;
47 
48  case ~0:
49  pool_foreach (vif, vim->interfaces)
50  {
51  if (vif->packet_coalesce || vif->packet_buffering)
52  {
53  virtio_vring_t *vring;
54  vec_foreach (vring, vif->rxq_vrings)
55  {
56  if (vring->mode == VNET_HW_IF_RX_MODE_INTERRUPT ||
59  vnet_get_main (), vring->queue_index);
60  }
61  }
62  }
63  break;
64 
65  default:
66  clib_warning ("BUG: unhandled event type %d", event_type);
67  break;
68  }
69  }
70  return 0;
71 }
72 
73 /* *INDENT-OFF* */
76  .type = VLIB_NODE_TYPE_PROCESS,
77  .name = "virtio-send-interrupt-process",
78 };
79 /* *INDENT-ON* */
80 
81 /*
82  * fd.io coding-style-patch-verification: ON
83  *
84  * Local Variables:
85  * eval: (c-set-style "gnu")
86  * End:
87  */
virtio_if_t * interfaces
Definition: virtio.h:220
vnet_interface_output_runtime_t * rt
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:755
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
#define VIRTIO_EVENT_START_TIMER
Definition: virtio.h:60
static_always_inline void vnet_hw_if_rx_queue_set_int_pending(vnet_main_t *vnm, u32 queue_index)
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
vlib_frame_t * f
static uword virtio_send_interrupt_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:583
vlib_node_registration_t virtio_send_interrupt_node
(constructor) VLIB_REGISTER_NODE (virtio_send_interrupt_node)
vnet_main_t * vnet_get_main(void)
vnet_hw_if_rx_mode mode
Definition: virtio.h:108
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
int packet_coalesce
Definition: virtio.h:156
u32 queue_index
Definition: virtio.h:85
virtio_vring_t * rxq_vrings
Definition: virtio.h:136
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
#define clib_warning(format, args...)
Definition: error.h:59
virtio_main_t virtio_main
Definition: virtio.c:37
int packet_buffering
Definition: virtio.h:157
u64 uword
Definition: types.h:112
#define vec_foreach(var, vec)
Vector iterator.
#define VIRTIO_EVENT_STOP_TIMER
Definition: virtio.h:61