![]() |
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 | ) |
Add a port to the switch.
port | A pointer to an already constructed Port_iface object. |
true | Port was added successfully. |
false | Switch was not able to add the port. |
Definition at line 29 of file switch.cc.
References Mac_addr::is_unknown().
void Virtio_switch::check_ports | ( | ) |
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. |
false | Port hit its TX burst limit, and thus a TX pending reschedule notification was queued. |
true | Port's entire TX queue was processed. |
Definition at line 194 of file switch.cc.
References L4virtio::Svr::Device_t< DATA >::device_error(), L4virtio::Svr::Virtqueue::disable_notify(), L4virtio::Svr::Virtqueue::enable_notify(), L4virtio::Svr::Bad_descriptor::message(), Virtio_net::rx_q(), Virtio_net::tx_q(), and L4virtio_port::tx_work_pending().
|
inline |