aboutsummaryrefslogtreecommitdiffstats
path: root/net/switchdev
diff options
context:
space:
mode:
Diffstat (limited to 'net/switchdev')
-rw-r--r--net/switchdev/switchdev.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/switchdev/switchdev.c b/net/switchdev/switchdev.c
index 3c090f8d071b..81c4c0274b9b 100644
--- a/net/switchdev/switchdev.c
+++ b/net/switchdev/switchdev.c
@@ -242,6 +242,10 @@ EXPORT_SYMBOL(ndo_dflt_netdev_switch_port_bridge_dellink);
242int netdev_switch_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi, 242int netdev_switch_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
243 u8 tos, u8 type, u32 tb_id) 243 u8 tos, u8 type, u32 tb_id)
244{ 244{
245 /* Don't offload route if using custom ip rules */
246 if (fi->fib_net->ipv4.fib_has_custom_rules)
247 return 0;
248
245 return 0; 249 return 0;
246} 250}
247EXPORT_SYMBOL(netdev_switch_fib_ipv4_add); 251EXPORT_SYMBOL(netdev_switch_fib_ipv4_add);