2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

dpif: Add new functions dp_run() and dp_wait().

The upcoming netdev-based dpif needs a hook where it can process packets
and throw them against the flow table, and this provides a suitable place.
This commit is contained in:
Ben Pfaff
2009-06-19 14:09:09 -07:00
parent 96fba48f52
commit 5792c5c64a
6 changed files with 50 additions and 0 deletions

View File

@@ -355,6 +355,8 @@ dpif_linux_recv_wait(struct dpif *dpif_)
const struct dpif_class dpif_linux_class = {
"", /* This is the default class. */
"linux",
NULL, /* run */
NULL, /* wait */
dpif_linux_open,
dpif_linux_close,
dpif_linux_delete,