X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=datapath%2Fflow.h;h=b1e80057526489efde4af3496b70a7c435913f82;hb=ac387ef5ce7115f9539104011f0409eb6a1bbe99;hp=484ca120778367be020ef40e05eb29de1d808102;hpb=560e802229f3028c02273435dd1c6efba33e0949;p=openvswitch diff --git a/datapath/flow.h b/datapath/flow.h index 484ca120..b1e80057 100644 --- a/datapath/flow.h +++ b/datapath/flow.h @@ -13,7 +13,6 @@ #include #include #include -#include #include #include #include @@ -36,6 +35,9 @@ struct sw_flow { struct odp_flow_key key; struct sw_flow_actions *sf_acts; + atomic_t refcnt; + bool dead; + spinlock_t lock; /* Lock for values below. */ unsigned long used; /* Last used time (in jiffies). */ u64 packet_count; /* Number of packets matched. */ @@ -62,14 +64,16 @@ int flow_init(void); void flow_exit(void); struct sw_flow *flow_alloc(void); -void flow_free(struct sw_flow *flow); void flow_deferred_free(struct sw_flow *); void flow_free_tbl(struct tbl_node *); struct sw_flow_actions *flow_actions_alloc(size_t n_actions); void flow_deferred_free_acts(struct sw_flow_actions *); -int flow_extract(struct sk_buff *, u16 in_port, struct odp_flow_key *); +void flow_hold(struct sw_flow *); +void flow_put(struct sw_flow *); + +int flow_extract(struct sk_buff *, u16 in_port, struct odp_flow_key *, bool *is_frag); void flow_used(struct sw_flow *, struct sk_buff *); u32 flow_hash(const struct odp_flow_key *key);