From: Ben Pfaff Date: Tue, 31 Jan 2012 20:56:49 +0000 (-0800) Subject: Add a few 'const's. X-Git-Tag: sliver-openvswitch-0.1-1~407 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=a39edbd4a409ad14b79c2205e340c07185785b92;p=sliver-openvswitch.git Add a few 'const's. These are useful hints, in these cases, that the caller retains ownership of the passed-in packets. Signed-off-by: Ben Pfaff --- diff --git a/lib/dpif.c b/lib/dpif.c index 37c001285..56bb1ad6f 100644 --- a/lib/dpif.c +++ b/lib/dpif.c @@ -675,7 +675,7 @@ dpif_port_poll_wait(const struct dpif *dpif) * arguments must have been initialized through a call to flow_extract(). */ void -dpif_flow_stats_extract(const struct flow *flow, struct ofpbuf *packet, +dpif_flow_stats_extract(const struct flow *flow, const struct ofpbuf *packet, struct dpif_flow_stats *stats) { memset(stats, 0, sizeof(*stats)); diff --git a/lib/dpif.h b/lib/dpif.h index 3fd33f00d..1a6ca0538 100644 --- a/lib/dpif.h +++ b/lib/dpif.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -128,7 +128,7 @@ struct dpif_flow_stats { uint8_t tcp_flags; }; -void dpif_flow_stats_extract(const struct flow *, struct ofpbuf *packet, +void dpif_flow_stats_extract(const struct flow *, const struct ofpbuf *packet, struct dpif_flow_stats *); void dpif_flow_stats_format(const struct dpif_flow_stats *, struct ds *); diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index 51d3f3f57..53d3c9fe7 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -2424,7 +2424,7 @@ struct flow_miss_op { * OpenFlow controller as necessary according to their individual * configurations. */ static void -send_packet_in_miss(struct ofproto_dpif *ofproto, struct ofpbuf *packet, +send_packet_in_miss(struct ofproto_dpif *ofproto, const struct ofpbuf *packet, const struct flow *flow) { struct ofputil_packet_in pin;