From: Ben Pfaff Date: Tue, 3 Sep 2013 22:34:58 +0000 (-0700) Subject: ofproto-dpif: Removed unused struct facet 'hmap_node' member. X-Git-Tag: sliver-openvswitch-2.0.90-1~16^2~31 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=74432d57328210999da232e11b0dbe4dd22cb309;p=sliver-openvswitch.git ofproto-dpif: Removed unused struct facet 'hmap_node' member. This member is not used anywhere for anything. Signed-off-by: Ben Pfaff --- diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index c8c56bbe3..0ce2ee046 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -205,8 +205,7 @@ static void subfacet_uninstall(struct subfacet *); * Flow expiration works in terms of subfacets, so a facet must have at * least one subfacet or it will never expire, leaking memory. */ struct facet { - /* Owners. */ - struct hmap_node hmap_node; /* In owning ofproto's 'facets' hmap. */ + /* Owner. */ struct ofproto_dpif *ofproto; /* Owned data. */