summaryrefslogtreecommitdiffstats
path: root/net/switchdev/switchdev.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/switchdev/switchdev.c')
-rw-r--r--net/switchdev/switchdev.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/net/switchdev/switchdev.c b/net/switchdev/switchdev.c
index d6b4a84a4a79..6dfd19e52938 100644
--- a/net/switchdev/switchdev.c
+++ b/net/switchdev/switchdev.c
@@ -337,6 +337,21 @@ int switchdev_port_attr_set(struct net_device *dev,
337} 337}
338EXPORT_SYMBOL_GPL(switchdev_port_attr_set); 338EXPORT_SYMBOL_GPL(switchdev_port_attr_set);
339 339
340static size_t switchdev_obj_size(const struct switchdev_obj *obj)
341{
342 switch (obj->id) {
343 case SWITCHDEV_OBJ_ID_PORT_VLAN:
344 return sizeof(struct switchdev_obj_port_vlan);
345 case SWITCHDEV_OBJ_ID_IPV4_FIB:
346 return sizeof(struct switchdev_obj_ipv4_fib);
347 case SWITCHDEV_OBJ_ID_PORT_FDB:
348 return sizeof(struct switchdev_obj_port_fdb);
349 default:
350 BUG();
351 }
352 return 0;
353}
354
340static int __switchdev_port_obj_add(struct net_device *dev, 355static int __switchdev_port_obj_add(struct net_device *dev,
341 const struct switchdev_obj *obj, 356 const struct switchdev_obj *obj,
342 struct switchdev_trans *trans) 357 struct switchdev_trans *trans)
@@ -422,7 +437,7 @@ static void switchdev_port_obj_add_deferred(struct net_device *dev,
422static int switchdev_port_obj_add_defer(struct net_device *dev, 437static int switchdev_port_obj_add_defer(struct net_device *dev,
423 const struct switchdev_obj *obj) 438 const struct switchdev_obj *obj)
424{ 439{
425 return switchdev_deferred_enqueue(dev, obj, sizeof(*obj), 440 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
426 switchdev_port_obj_add_deferred); 441 switchdev_port_obj_add_deferred);
427} 442}
428 443
@@ -490,7 +505,7 @@ static void switchdev_port_obj_del_deferred(struct net_device *dev,
490static int switchdev_port_obj_del_defer(struct net_device *dev, 505static int switchdev_port_obj_del_defer(struct net_device *dev,
491 const struct switchdev_obj *obj) 506 const struct switchdev_obj *obj)
492{ 507{
493 return switchdev_deferred_enqueue(dev, obj, sizeof(*obj), 508 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
494 switchdev_port_obj_del_deferred); 509 switchdev_port_obj_del_deferred);
495} 510}
496 511