Commit 58c2cb16 authored by Scott Feldman's avatar Scott Feldman Committed by David S. Miller

switchdev: convert fib_ipv4_add/del over to switchdev_port_obj_add/del

The IPv4 FIB ops convert nicely to the switchdev objs and we're left with
only four switchdev ops: port get/set and port add/del.  Other objs will
follow, such as FDB.  So go ahead and convert IPv4 FIB over to switchdev
obj for consistency, anticipating more objs to come.
Signed-off-by: default avatarScott Feldman <sfeldma@gmail.com>
Acked-by: default avatarJiri Pirko <jiri@resnulli.us>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 85fdb956
...@@ -4449,6 +4449,7 @@ static int rocker_port_obj_add(struct net_device *dev, ...@@ -4449,6 +4449,7 @@ static int rocker_port_obj_add(struct net_device *dev,
struct switchdev_obj *obj) struct switchdev_obj *obj)
{ {
struct rocker_port *rocker_port = netdev_priv(dev); struct rocker_port *rocker_port = netdev_priv(dev);
struct switchdev_obj_ipv4_fib *fib4;
int err = 0; int err = 0;
switch (obj->trans) { switch (obj->trans) {
...@@ -4467,6 +4468,12 @@ static int rocker_port_obj_add(struct net_device *dev, ...@@ -4467,6 +4468,12 @@ static int rocker_port_obj_add(struct net_device *dev,
err = rocker_port_vlans_add(rocker_port, obj->trans, err = rocker_port_vlans_add(rocker_port, obj->trans,
&obj->vlan); &obj->vlan);
break; break;
case SWITCHDEV_OBJ_IPV4_FIB:
fib4 = &obj->ipv4_fib;
err = rocker_port_fib_ipv4(rocker_port, obj->trans,
fib4->dst, fib4->dst_len,
fib4->fi, fib4->tb_id, 0);
break;
default: default:
err = -EOPNOTSUPP; err = -EOPNOTSUPP;
break; break;
...@@ -4508,12 +4515,19 @@ static int rocker_port_obj_del(struct net_device *dev, ...@@ -4508,12 +4515,19 @@ static int rocker_port_obj_del(struct net_device *dev,
struct switchdev_obj *obj) struct switchdev_obj *obj)
{ {
struct rocker_port *rocker_port = netdev_priv(dev); struct rocker_port *rocker_port = netdev_priv(dev);
struct switchdev_obj_ipv4_fib *fib4;
int err = 0; int err = 0;
switch (obj->id) { switch (obj->id) {
case SWITCHDEV_OBJ_PORT_VLAN: case SWITCHDEV_OBJ_PORT_VLAN:
err = rocker_port_vlans_del(rocker_port, &obj->vlan); err = rocker_port_vlans_del(rocker_port, &obj->vlan);
break; break;
case SWITCHDEV_OBJ_IPV4_FIB:
fib4 = &obj->ipv4_fib;
err = rocker_port_fib_ipv4(rocker_port, SWITCHDEV_TRANS_NONE,
fib4->dst, fib4->dst_len, fib4->fi,
fib4->tb_id, ROCKER_OP_FLAG_REMOVE);
break;
default: default:
err = -EOPNOTSUPP; err = -EOPNOTSUPP;
break; break;
...@@ -4522,38 +4536,11 @@ static int rocker_port_obj_del(struct net_device *dev, ...@@ -4522,38 +4536,11 @@ static int rocker_port_obj_del(struct net_device *dev,
return err; return err;
} }
static int rocker_port_switchdev_fib_ipv4_add(struct net_device *dev,
__be32 dst, int dst_len,
struct fib_info *fi,
u8 tos, u8 type,
u32 nlflags, u32 tb_id)
{
struct rocker_port *rocker_port = netdev_priv(dev);
int flags = 0;
return rocker_port_fib_ipv4(rocker_port, SWITCHDEV_TRANS_NONE,
dst, dst_len, fi, tb_id, flags);
}
static int rocker_port_switchdev_fib_ipv4_del(struct net_device *dev,
__be32 dst, int dst_len,
struct fib_info *fi,
u8 tos, u8 type, u32 tb_id)
{
struct rocker_port *rocker_port = netdev_priv(dev);
int flags = ROCKER_OP_FLAG_REMOVE;
return rocker_port_fib_ipv4(rocker_port, SWITCHDEV_TRANS_NONE,
dst, dst_len, fi, tb_id, flags);
}
static const struct switchdev_ops rocker_port_switchdev_ops = { static const struct switchdev_ops rocker_port_switchdev_ops = {
.switchdev_port_attr_get = rocker_port_attr_get, .switchdev_port_attr_get = rocker_port_attr_get,
.switchdev_port_attr_set = rocker_port_attr_set, .switchdev_port_attr_set = rocker_port_attr_set,
.switchdev_port_obj_add = rocker_port_obj_add, .switchdev_port_obj_add = rocker_port_obj_add,
.switchdev_port_obj_del = rocker_port_obj_del, .switchdev_port_obj_del = rocker_port_obj_del,
.switchdev_fib_ipv4_add = rocker_port_switchdev_fib_ipv4_add,
.switchdev_fib_ipv4_del = rocker_port_switchdev_fib_ipv4_del,
}; };
/******************** /********************
......
...@@ -46,6 +46,7 @@ struct fib_info; ...@@ -46,6 +46,7 @@ struct fib_info;
enum switchdev_obj_id { enum switchdev_obj_id {
SWITCHDEV_OBJ_UNDEFINED, SWITCHDEV_OBJ_UNDEFINED,
SWITCHDEV_OBJ_PORT_VLAN, SWITCHDEV_OBJ_PORT_VLAN,
SWITCHDEV_OBJ_IPV4_FIB,
}; };
struct switchdev_obj { struct switchdev_obj {
...@@ -57,6 +58,15 @@ struct switchdev_obj { ...@@ -57,6 +58,15 @@ struct switchdev_obj {
u16 vid_start; u16 vid_start;
u16 vid_end; u16 vid_end;
} vlan; } vlan;
struct switchdev_obj_ipv4_fib { /* IPV4_FIB */
u32 dst;
int dst_len;
struct fib_info *fi;
u8 tos;
u8 type;
u32 nlflags;
u32 tb_id;
} ipv4_fib;
}; };
}; };
...@@ -70,10 +80,6 @@ struct switchdev_obj { ...@@ -70,10 +80,6 @@ struct switchdev_obj {
* @switchdev_port_obj_add: Add an object to port (see switchdev_obj). * @switchdev_port_obj_add: Add an object to port (see switchdev_obj).
* *
* @switchdev_port_obj_del: Delete an object from port (see switchdev_obj). * @switchdev_port_obj_del: Delete an object from port (see switchdev_obj).
*
* @switchdev_fib_ipv4_add: Called to add/modify IPv4 route to switch device.
*
* @switchdev_fib_ipv4_del: Called to delete IPv4 route from switch device.
*/ */
struct switchdev_ops { struct switchdev_ops {
int (*switchdev_port_attr_get)(struct net_device *dev, int (*switchdev_port_attr_get)(struct net_device *dev,
...@@ -84,13 +90,6 @@ struct switchdev_ops { ...@@ -84,13 +90,6 @@ struct switchdev_ops {
struct switchdev_obj *obj); struct switchdev_obj *obj);
int (*switchdev_port_obj_del)(struct net_device *dev, int (*switchdev_port_obj_del)(struct net_device *dev,
struct switchdev_obj *obj); struct switchdev_obj *obj);
int (*switchdev_fib_ipv4_add)(struct net_device *dev, __be32 dst,
int dst_len, struct fib_info *fi,
u8 tos, u8 type, u32 nlflags,
u32 tb_id);
int (*switchdev_fib_ipv4_del)(struct net_device *dev, __be32 dst,
int dst_len, struct fib_info *fi,
u8 tos, u8 type, u32 tb_id);
}; };
enum switchdev_notifier_type { enum switchdev_notifier_type {
......
...@@ -641,8 +641,19 @@ static struct net_device *switchdev_get_dev_by_nhs(struct fib_info *fi) ...@@ -641,8 +641,19 @@ static struct net_device *switchdev_get_dev_by_nhs(struct fib_info *fi)
int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi, int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
u8 tos, u8 type, u32 nlflags, u32 tb_id) u8 tos, u8 type, u32 nlflags, u32 tb_id)
{ {
struct switchdev_obj fib_obj = {
.id = SWITCHDEV_OBJ_IPV4_FIB,
.ipv4_fib = {
.dst = htonl(dst),
.dst_len = dst_len,
.fi = fi,
.tos = tos,
.type = type,
.nlflags = nlflags,
.tb_id = tb_id,
},
};
struct net_device *dev; struct net_device *dev;
const struct switchdev_ops *ops;
int err = 0; int err = 0;
/* Don't offload route if using custom ip rules or if /* Don't offload route if using custom ip rules or if
...@@ -660,15 +671,10 @@ int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi, ...@@ -660,15 +671,10 @@ int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
dev = switchdev_get_dev_by_nhs(fi); dev = switchdev_get_dev_by_nhs(fi);
if (!dev) if (!dev)
return 0; return 0;
ops = dev->switchdev_ops;
err = switchdev_port_obj_add(dev, &fib_obj);
if (ops->switchdev_fib_ipv4_add) { if (!err)
err = ops->switchdev_fib_ipv4_add(dev, htonl(dst), dst_len, fi->fib_flags |= RTNH_F_EXTERNAL;
fi, tos, type, nlflags,
tb_id);
if (!err)
fi->fib_flags |= RTNH_F_EXTERNAL;
}
return err; return err;
} }
...@@ -689,8 +695,19 @@ EXPORT_SYMBOL_GPL(switchdev_fib_ipv4_add); ...@@ -689,8 +695,19 @@ EXPORT_SYMBOL_GPL(switchdev_fib_ipv4_add);
int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi, int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
u8 tos, u8 type, u32 tb_id) u8 tos, u8 type, u32 tb_id)
{ {
struct switchdev_obj fib_obj = {
.id = SWITCHDEV_OBJ_IPV4_FIB,
.ipv4_fib = {
.dst = htonl(dst),
.dst_len = dst_len,
.fi = fi,
.tos = tos,
.type = type,
.nlflags = 0,
.tb_id = tb_id,
},
};
struct net_device *dev; struct net_device *dev;
const struct switchdev_ops *ops;
int err = 0; int err = 0;
if (!(fi->fib_flags & RTNH_F_EXTERNAL)) if (!(fi->fib_flags & RTNH_F_EXTERNAL))
...@@ -699,14 +716,10 @@ int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi, ...@@ -699,14 +716,10 @@ int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
dev = switchdev_get_dev_by_nhs(fi); dev = switchdev_get_dev_by_nhs(fi);
if (!dev) if (!dev)
return 0; return 0;
ops = dev->switchdev_ops;
if (ops->switchdev_fib_ipv4_del) { err = switchdev_port_obj_del(dev, &fib_obj);
err = ops->switchdev_fib_ipv4_del(dev, htonl(dst), dst_len, if (!err)
fi, tos, type, tb_id); fi->fib_flags &= ~RTNH_F_EXTERNAL;
if (!err)
fi->fib_flags &= ~RTNH_F_EXTERNAL;
}
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