ofproto-dpif-upcall: Remove redundant 'packets' list from struct flow_miss.
authorBen Pfaff <blp@nicira.com>
Tue, 27 Aug 2013 21:58:26 +0000 (14:58 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 17 Sep 2013 20:47:36 +0000 (13:47 -0700)
commitb6f4f3a9778e589a0452df0fa0ae6beba1a0d086
tree5047f58f5da09cfa7fa1734380292291418b447d
parent4f7cc3c7252e2284f72a890929504f56af7caba2
ofproto-dpif-upcall: Remove redundant 'packets' list from struct flow_miss.

Until now, struct flow_miss contained a list of packets and a list of
upcalls.  Each packet in the list of packets can be obtained from the
corresponding upcall in the list of upcalls via upcall->dpif_upcall.packet,
so this commit deletes the list of packets and replaces each reference to
a packet by that expression.

Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Jarno Rajahalme <jrajahalme@nicira.com>
ofproto/ofproto-dpif-upcall.c
ofproto/ofproto-dpif-upcall.h
ofproto/ofproto-dpif.c