X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=datapath%2Fdatapath.h;h=03bebd1aec63a778e16ec7a80b58801b2a479cea;hb=b063d9f0;hp=ff8ac104d7aca6f15ad9c2c0d5882819be40d633;hpb=9197df76b46ff6fbe1f7a522961730ffc55a860d;p=openvswitch diff --git a/datapath/datapath.h b/datapath/datapath.h index ff8ac104..03bebd1a 100644 --- a/datapath/datapath.h +++ b/datapath/datapath.h @@ -58,7 +58,6 @@ struct dp_stats_percpu { /** * struct datapath - datapath for flow-based packet switching * @rcu: RCU callback head for deferred destruction. - * @dp_ifindex: ifindex of local port. * @list_node: Element in global 'dps' list. * @ifobj: Represents /sys/class/net//brif. Protected by RTNL. * @drop_frags: Drop all IP fragments if nonzero. @@ -70,7 +69,7 @@ struct dp_stats_percpu { * to iterate or modify. * @stats_percpu: Per-CPU datapath statistics. * @sflow_probability: Number of packets out of UINT_MAX to sample to the - * %OVS_PACKET_CMD_SAMPLE multicast group, e.g. (@sflow_probability/UINT_MAX) + * %OVS_PACKET_CMD_SAMPLE upcall, e.g. (@sflow_probability/UINT_MAX) * is the probability of sampling a given packet. * * Context: See the comment on locking at the top of datapath.c for additional @@ -78,7 +77,6 @@ struct dp_stats_percpu { */ struct datapath { struct rcu_head rcu; - int dp_ifindex; struct list_head list_node; struct kobject ifobj;