![]() |
L4Re Operating System Framework
Interface and Usage Documentation
|
The Virtio switch contains all ports and processes network requests. More...
#include <switch.h>
Public Member Functions | |
Virtio_switch (unsigned max_ports) | |
Create a switch with n ports. | |
bool | add_port (Port_iface *port) |
Add a port to the switch. | |
bool | add_monitor_port (Port_iface *port) |
Add a monitor port to the switch. | |
void | check_ports () |
Check validity of ports. | |
bool | handle_l4virtio_port_tx (L4virtio_port *port) |
Handle TX queue of the given port. | |
int | port_available (bool monitor) |
Is there still a free port on this switch available? | |
The Virtio switch contains all ports and processes network requests.
A Port on its own is not capable to process an incoming network request because it has no knowledge about other ports. The processing of an incoming request therefore gets delegated to the switch.
The Virtio_switch
is constructed at the start of the Virtio Net Switch application. The factory saves a reference to it to pass it to the Kick_irq
on port creation.
|
explicit |
bool Virtio_switch::add_monitor_port | ( | Port_iface * | port | ) |
bool Virtio_switch::add_port | ( | Port_iface * | port | ) |
void Virtio_switch::check_ports | ( | ) |
Check validity of ports.
Check whether all ports are still used and remove any unused (unreferenced) ports. Shall be invoked after an incoming cap deletion irq to remove ports without clients.
Definition at line 70 of file switch.cc.
References Mac_table< Size >::flush().
bool Virtio_switch::handle_l4virtio_port_tx | ( | L4virtio_port * | port | ) |
Handle TX queue of the given port.
port | L4virtio_port to handle pending TX work for. |
true | Port hit its TX burst limit, and thus a TX pending reschedule notification was queued. |
false | Port's entire TX queue was processed. |
Definition at line 195 of file switch.cc.
References L4virtio::Svr::Device_t< DATA >::device_error(), L4virtio::Svr::Bad_descriptor::message(), Virtio_net::rx_q(), Virtio_net::tx_q(), and L4virtio_port::tx_work_pending().
|
inline |