Commit eea39946 authored by Roopa Prabhu's avatar Roopa Prabhu Committed by David S. Miller

rename RTNH_F_EXTERNAL to RTNH_F_OFFLOAD

RTNH_F_EXTERNAL today is printed as "offload" in iproute2 output.

This patch renames the flag to be consistent with what the user sees.
Signed-off-by: default avatarRoopa Prabhu <roopa@cumulusnetworks.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c1c52db1
...@@ -337,7 +337,7 @@ struct rtnexthop { ...@@ -337,7 +337,7 @@ struct rtnexthop {
#define RTNH_F_DEAD 1 /* Nexthop is dead (used by multipath) */ #define RTNH_F_DEAD 1 /* Nexthop is dead (used by multipath) */
#define RTNH_F_PERVASIVE 2 /* Do recursive gateway lookup */ #define RTNH_F_PERVASIVE 2 /* Do recursive gateway lookup */
#define RTNH_F_ONLINK 4 /* Gateway is forced on link */ #define RTNH_F_ONLINK 4 /* Gateway is forced on link */
#define RTNH_F_EXTERNAL 8 /* Route installed externally */ #define RTNH_F_OFFLOAD 8 /* offloaded route */
/* Macros to handle hexthops */ /* Macros to handle hexthops */
......
...@@ -1764,7 +1764,7 @@ void fib_table_flush_external(struct fib_table *tb) ...@@ -1764,7 +1764,7 @@ void fib_table_flush_external(struct fib_table *tb)
/* record local slen */ /* record local slen */
slen = fa->fa_slen; slen = fa->fa_slen;
if (!fi || !(fi->fib_flags & RTNH_F_EXTERNAL)) if (!fi || !(fi->fib_flags & RTNH_F_OFFLOAD))
continue; continue;
netdev_switch_fib_ipv4_del(n->key, netdev_switch_fib_ipv4_del(n->key,
......
...@@ -338,7 +338,7 @@ int netdev_switch_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi, ...@@ -338,7 +338,7 @@ int netdev_switch_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
fi, tos, type, nlflags, fi, tos, type, nlflags,
tb_id); tb_id);
if (!err) if (!err)
fi->fib_flags |= RTNH_F_EXTERNAL; fi->fib_flags |= RTNH_F_OFFLOAD;
} }
return err; return err;
...@@ -364,7 +364,7 @@ int netdev_switch_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi, ...@@ -364,7 +364,7 @@ int netdev_switch_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
const struct swdev_ops *ops; const struct swdev_ops *ops;
int err = 0; int err = 0;
if (!(fi->fib_flags & RTNH_F_EXTERNAL)) if (!(fi->fib_flags & RTNH_F_OFFLOAD))
return 0; return 0;
dev = netdev_switch_get_dev_by_nhs(fi); dev = netdev_switch_get_dev_by_nhs(fi);
...@@ -376,7 +376,7 @@ int netdev_switch_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi, ...@@ -376,7 +376,7 @@ int netdev_switch_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
err = ops->swdev_fib_ipv4_del(dev, htonl(dst), dst_len, err = ops->swdev_fib_ipv4_del(dev, htonl(dst), dst_len,
fi, tos, type, tb_id); fi, tos, type, tb_id);
if (!err) if (!err)
fi->fib_flags &= ~RTNH_F_EXTERNAL; fi->fib_flags &= ~RTNH_F_OFFLOAD;
} }
return err; return err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment