mirror of
https://github.com/openvswitch/ovs
synced 2025-09-02 23:35:27 +00:00
dpif-netdev: Add missing 'const' qualifiers to function parameters.
These functions don't modify their flow key arguments but the prototypes implied that they did. Acked-by: Jesse Gross <jesse@nicira.com>
This commit is contained in:
@@ -1060,7 +1060,7 @@ is_ip(const struct ofpbuf *packet, const struct flow *key)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
dp_netdev_set_nw_addr(struct ofpbuf *packet, struct flow *key,
|
dp_netdev_set_nw_addr(struct ofpbuf *packet, const struct flow *key,
|
||||||
const struct nlattr *a)
|
const struct nlattr *a)
|
||||||
{
|
{
|
||||||
if (is_ip(packet, key)) {
|
if (is_ip(packet, key)) {
|
||||||
@@ -1088,7 +1088,8 @@ dp_netdev_set_nw_addr(struct ofpbuf *packet, struct flow *key,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
dp_netdev_set_nw_tos(struct ofpbuf *packet, struct flow *key, uint8_t nw_tos)
|
dp_netdev_set_nw_tos(struct ofpbuf *packet, const struct flow *key,
|
||||||
|
uint8_t nw_tos)
|
||||||
{
|
{
|
||||||
if (is_ip(packet, key)) {
|
if (is_ip(packet, key)) {
|
||||||
struct ip_header *nh = packet->l3;
|
struct ip_header *nh = packet->l3;
|
||||||
@@ -1104,7 +1105,7 @@ dp_netdev_set_nw_tos(struct ofpbuf *packet, struct flow *key, uint8_t nw_tos)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
dp_netdev_set_tp_port(struct ofpbuf *packet, struct flow *key,
|
dp_netdev_set_tp_port(struct ofpbuf *packet, const struct flow *key,
|
||||||
const struct nlattr *a)
|
const struct nlattr *a)
|
||||||
{
|
{
|
||||||
if (is_ip(packet, key)) {
|
if (is_ip(packet, key)) {
|
||||||
|
Reference in New Issue
Block a user