X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fdpif.h;h=8872a2ef76bee4c9ac8acf9f7b7ab736650a5be7;hb=810605a233ba260bfe77e940de2281211eafd91e;hp=3534df7d50db4589aa12670b7fda8cc791e4b6d8;hpb=82272eded1ede569bcec3ba4ab212e5e3fb632ff;p=openvswitch diff --git a/lib/dpif.h b/lib/dpif.h index 3534df7d..8872a2ef 100644 --- a/lib/dpif.h +++ b/lib/dpif.h @@ -54,7 +54,6 @@ void dpif_close(struct dpif *); const char *dpif_name(const struct dpif *); const char *dpif_base_name(const struct dpif *); -int dpif_get_all_names(const struct dpif *, struct svec *); int dpif_delete(struct dpif *); @@ -152,8 +151,9 @@ int dpif_execute(struct dpif *, const struct nlattr *actions, enum dpif_upcall_type { DPIF_UC_MISS, /* Miss in flow table. */ - DPIF_UC_ACTION, /* ODPAT_CONTROLLER action. */ - DPIF_UC_SAMPLE /* Packet sampling. */ + DPIF_UC_ACTION, /* ODP_ACTION_ATTR_CONTROLLER action. */ + DPIF_UC_SAMPLE, /* Packet sampling. */ + DPIF_N_UC_TYPES }; /* A packet passed up from the datapath to userspace. @@ -171,7 +171,7 @@ struct dpif_upcall { size_t key_len; /* Length of 'key' in bytes. */ /* DPIF_UC_ACTION only. */ - uint64_t userdata; /* Argument to ODPAT_CONTROLLER. */ + uint64_t userdata; /* Argument to ODP_ACTION_ATTR_CONTROLLER. */ /* DPIF_UC_SAMPLE only. */ uint32_t sample_pool; /* # of sampling candidate packets so far. */