2014-11-28 13:34:17 +00:00
|
|
|
/*
|
|
|
|
* net/switchdev/switchdev.c - Switch device API
|
2015-09-24 08:02:41 +00:00
|
|
|
* Copyright (c) 2014-2015 Jiri Pirko <jiri@resnulli.us>
|
2015-03-09 20:59:09 +00:00
|
|
|
* Copyright (c) 2014-2015 Scott Feldman <sfeldma@gmail.com>
|
2014-11-28 13:34:17 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/init.h>
|
2015-01-15 22:49:36 +00:00
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/notifier.h>
|
2014-11-28 13:34:17 +00:00
|
|
|
#include <linux/netdevice.h>
|
2015-10-14 17:40:51 +00:00
|
|
|
#include <linux/etherdevice.h>
|
2015-05-10 16:47:56 +00:00
|
|
|
#include <linux/if_bridge.h>
|
2015-09-24 08:02:41 +00:00
|
|
|
#include <linux/list.h>
|
2015-10-14 17:40:48 +00:00
|
|
|
#include <linux/workqueue.h>
|
2015-10-12 12:31:01 +00:00
|
|
|
#include <linux/if_vlan.h>
|
2016-01-27 14:16:43 +00:00
|
|
|
#include <linux/rtnetlink.h>
|
2014-11-28 13:34:17 +00:00
|
|
|
#include <net/switchdev.h>
|
|
|
|
|
2015-09-24 08:02:41 +00:00
|
|
|
/**
|
|
|
|
* switchdev_trans_item_enqueue - Enqueue data item to transaction queue
|
|
|
|
*
|
|
|
|
* @trans: transaction
|
|
|
|
* @data: pointer to data being queued
|
|
|
|
* @destructor: data destructor
|
|
|
|
* @tritem: transaction item being queued
|
|
|
|
*
|
|
|
|
* Enqeueue data item to transaction queue. tritem is typically placed in
|
|
|
|
* cointainter pointed at by data pointer. Destructor is called on
|
|
|
|
* transaction abort and after successful commit phase in case
|
|
|
|
* the caller did not dequeue the item before.
|
|
|
|
*/
|
|
|
|
void switchdev_trans_item_enqueue(struct switchdev_trans *trans,
|
|
|
|
void *data, void (*destructor)(void const *),
|
|
|
|
struct switchdev_trans_item *tritem)
|
|
|
|
{
|
|
|
|
tritem->data = data;
|
|
|
|
tritem->destructor = destructor;
|
|
|
|
list_add_tail(&tritem->list, &trans->item_list);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(switchdev_trans_item_enqueue);
|
|
|
|
|
|
|
|
static struct switchdev_trans_item *
|
|
|
|
__switchdev_trans_item_dequeue(struct switchdev_trans *trans)
|
|
|
|
{
|
|
|
|
struct switchdev_trans_item *tritem;
|
|
|
|
|
|
|
|
if (list_empty(&trans->item_list))
|
|
|
|
return NULL;
|
|
|
|
tritem = list_first_entry(&trans->item_list,
|
|
|
|
struct switchdev_trans_item, list);
|
|
|
|
list_del(&tritem->list);
|
|
|
|
return tritem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* switchdev_trans_item_dequeue - Dequeue data item from transaction queue
|
|
|
|
*
|
|
|
|
* @trans: transaction
|
|
|
|
*/
|
|
|
|
void *switchdev_trans_item_dequeue(struct switchdev_trans *trans)
|
|
|
|
{
|
|
|
|
struct switchdev_trans_item *tritem;
|
|
|
|
|
|
|
|
tritem = __switchdev_trans_item_dequeue(trans);
|
|
|
|
BUG_ON(!tritem);
|
|
|
|
return tritem->data;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(switchdev_trans_item_dequeue);
|
|
|
|
|
|
|
|
static void switchdev_trans_init(struct switchdev_trans *trans)
|
|
|
|
{
|
|
|
|
INIT_LIST_HEAD(&trans->item_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void switchdev_trans_items_destroy(struct switchdev_trans *trans)
|
|
|
|
{
|
|
|
|
struct switchdev_trans_item *tritem;
|
|
|
|
|
|
|
|
while ((tritem = __switchdev_trans_item_dequeue(trans)))
|
|
|
|
tritem->destructor(tritem->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void switchdev_trans_items_warn_destroy(struct net_device *dev,
|
|
|
|
struct switchdev_trans *trans)
|
|
|
|
{
|
|
|
|
WARN(!list_empty(&trans->item_list), "%s: transaction item queue is not empty.\n",
|
|
|
|
dev->name);
|
|
|
|
switchdev_trans_items_destroy(trans);
|
|
|
|
}
|
|
|
|
|
2015-10-14 17:40:48 +00:00
|
|
|
static LIST_HEAD(deferred);
|
|
|
|
static DEFINE_SPINLOCK(deferred_lock);
|
|
|
|
|
|
|
|
typedef void switchdev_deferred_func_t(struct net_device *dev,
|
|
|
|
const void *data);
|
|
|
|
|
|
|
|
struct switchdev_deferred_item {
|
|
|
|
struct list_head list;
|
|
|
|
struct net_device *dev;
|
|
|
|
switchdev_deferred_func_t *func;
|
|
|
|
unsigned long data[0];
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct switchdev_deferred_item *switchdev_deferred_dequeue(void)
|
|
|
|
{
|
|
|
|
struct switchdev_deferred_item *dfitem;
|
|
|
|
|
|
|
|
spin_lock_bh(&deferred_lock);
|
|
|
|
if (list_empty(&deferred)) {
|
|
|
|
dfitem = NULL;
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
dfitem = list_first_entry(&deferred,
|
|
|
|
struct switchdev_deferred_item, list);
|
|
|
|
list_del(&dfitem->list);
|
|
|
|
unlock:
|
|
|
|
spin_unlock_bh(&deferred_lock);
|
|
|
|
return dfitem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* switchdev_deferred_process - Process ops in deferred queue
|
|
|
|
*
|
|
|
|
* Called to flush the ops currently queued in deferred ops queue.
|
|
|
|
* rtnl_lock must be held.
|
|
|
|
*/
|
|
|
|
void switchdev_deferred_process(void)
|
|
|
|
{
|
|
|
|
struct switchdev_deferred_item *dfitem;
|
|
|
|
|
|
|
|
ASSERT_RTNL();
|
|
|
|
|
|
|
|
while ((dfitem = switchdev_deferred_dequeue())) {
|
|
|
|
dfitem->func(dfitem->dev, dfitem->data);
|
|
|
|
dev_put(dfitem->dev);
|
|
|
|
kfree(dfitem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(switchdev_deferred_process);
|
|
|
|
|
|
|
|
static void switchdev_deferred_process_work(struct work_struct *work)
|
|
|
|
{
|
|
|
|
rtnl_lock();
|
|
|
|
switchdev_deferred_process();
|
|
|
|
rtnl_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
static DECLARE_WORK(deferred_process_work, switchdev_deferred_process_work);
|
|
|
|
|
|
|
|
static int switchdev_deferred_enqueue(struct net_device *dev,
|
|
|
|
const void *data, size_t data_len,
|
|
|
|
switchdev_deferred_func_t *func)
|
|
|
|
{
|
|
|
|
struct switchdev_deferred_item *dfitem;
|
|
|
|
|
|
|
|
dfitem = kmalloc(sizeof(*dfitem) + data_len, GFP_ATOMIC);
|
|
|
|
if (!dfitem)
|
|
|
|
return -ENOMEM;
|
|
|
|
dfitem->dev = dev;
|
|
|
|
dfitem->func = func;
|
|
|
|
memcpy(dfitem->data, data, data_len);
|
|
|
|
dev_hold(dev);
|
|
|
|
spin_lock_bh(&deferred_lock);
|
|
|
|
list_add_tail(&dfitem->list, &deferred);
|
|
|
|
spin_unlock_bh(&deferred_lock);
|
|
|
|
schedule_work(&deferred_process_work);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
/**
|
|
|
|
* switchdev_port_attr_get - Get port attribute
|
|
|
|
*
|
|
|
|
* @dev: port device
|
|
|
|
* @attr: attribute to get
|
|
|
|
*/
|
|
|
|
int switchdev_port_attr_get(struct net_device *dev, struct switchdev_attr *attr)
|
|
|
|
{
|
|
|
|
const struct switchdev_ops *ops = dev->switchdev_ops;
|
|
|
|
struct net_device *lower_dev;
|
|
|
|
struct list_head *iter;
|
|
|
|
struct switchdev_attr first = {
|
2015-10-01 09:03:42 +00:00
|
|
|
.id = SWITCHDEV_ATTR_ID_UNDEFINED
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
};
|
|
|
|
int err = -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (ops && ops->switchdev_port_attr_get)
|
|
|
|
return ops->switchdev_port_attr_get(dev, attr);
|
|
|
|
|
|
|
|
if (attr->flags & SWITCHDEV_F_NO_RECURSE)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
/* Switch device port(s) may be stacked under
|
|
|
|
* bond/team/vlan dev, so recurse down to get attr on
|
|
|
|
* each port. Return -ENODATA if attr values don't
|
|
|
|
* compare across ports.
|
|
|
|
*/
|
|
|
|
|
|
|
|
netdev_for_each_lower_dev(dev, lower_dev, iter) {
|
|
|
|
err = switchdev_port_attr_get(lower_dev, attr);
|
|
|
|
if (err)
|
|
|
|
break;
|
2015-10-01 09:03:42 +00:00
|
|
|
if (first.id == SWITCHDEV_ATTR_ID_UNDEFINED)
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
first = *attr;
|
|
|
|
else if (memcmp(&first, attr, sizeof(*attr)))
|
|
|
|
return -ENODATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(switchdev_port_attr_get);
|
|
|
|
|
|
|
|
static int __switchdev_port_attr_set(struct net_device *dev,
|
2015-10-14 17:40:49 +00:00
|
|
|
const struct switchdev_attr *attr,
|
2015-09-24 08:02:41 +00:00
|
|
|
struct switchdev_trans *trans)
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
{
|
|
|
|
const struct switchdev_ops *ops = dev->switchdev_ops;
|
|
|
|
struct net_device *lower_dev;
|
|
|
|
struct list_head *iter;
|
|
|
|
int err = -EOPNOTSUPP;
|
|
|
|
|
2015-11-03 16:40:53 +00:00
|
|
|
if (ops && ops->switchdev_port_attr_set) {
|
|
|
|
err = ops->switchdev_port_attr_set(dev, attr, trans);
|
|
|
|
goto done;
|
|
|
|
}
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
|
|
|
|
if (attr->flags & SWITCHDEV_F_NO_RECURSE)
|
2015-10-09 02:23:18 +00:00
|
|
|
goto done;
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
|
|
|
|
/* Switch device port(s) may be stacked under
|
|
|
|
* bond/team/vlan dev, so recurse down to set attr on
|
|
|
|
* each port.
|
|
|
|
*/
|
|
|
|
|
|
|
|
netdev_for_each_lower_dev(dev, lower_dev, iter) {
|
2015-09-24 08:02:41 +00:00
|
|
|
err = __switchdev_port_attr_set(lower_dev, attr, trans);
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
if (err)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-10-09 02:23:18 +00:00
|
|
|
done:
|
|
|
|
if (err == -EOPNOTSUPP && attr->flags & SWITCHDEV_F_SKIP_EOPNOTSUPP)
|
|
|
|
err = 0;
|
|
|
|
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-10-14 17:40:50 +00:00
|
|
|
static int switchdev_port_attr_set_now(struct net_device *dev,
|
|
|
|
const struct switchdev_attr *attr)
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
{
|
2015-09-24 08:02:41 +00:00
|
|
|
struct switchdev_trans trans;
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
int err;
|
|
|
|
|
2015-09-24 08:02:41 +00:00
|
|
|
switchdev_trans_init(&trans);
|
|
|
|
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
/* Phase I: prepare for attr set. Driver/device should fail
|
|
|
|
* here if there are going to be issues in the commit phase,
|
|
|
|
* such as lack of resources or support. The driver/device
|
|
|
|
* should reserve resources needed for the commit phase here,
|
|
|
|
* but should not commit the attr.
|
|
|
|
*/
|
|
|
|
|
2015-09-24 08:02:49 +00:00
|
|
|
trans.ph_prepare = true;
|
2015-09-24 08:02:41 +00:00
|
|
|
err = __switchdev_port_attr_set(dev, attr, &trans);
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
if (err) {
|
|
|
|
/* Prepare phase failed: abort the transaction. Any
|
|
|
|
* resources reserved in the prepare phase are
|
|
|
|
* released.
|
|
|
|
*/
|
|
|
|
|
2015-09-24 08:02:47 +00:00
|
|
|
if (err != -EOPNOTSUPP)
|
2015-09-24 08:02:41 +00:00
|
|
|
switchdev_trans_items_destroy(&trans);
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Phase II: commit attr set. This cannot fail as a fault
|
|
|
|
* of driver/device. If it does, it's a bug in the driver/device
|
|
|
|
* because the driver said everythings was OK in phase I.
|
|
|
|
*/
|
|
|
|
|
2015-09-24 08:02:49 +00:00
|
|
|
trans.ph_prepare = false;
|
2015-09-24 08:02:41 +00:00
|
|
|
err = __switchdev_port_attr_set(dev, attr, &trans);
|
2015-06-11 18:20:42 +00:00
|
|
|
WARN(err, "%s: Commit of attribute (id=%d) failed.\n",
|
|
|
|
dev->name, attr->id);
|
2015-09-24 08:02:41 +00:00
|
|
|
switchdev_trans_items_warn_destroy(dev, &trans);
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2015-10-14 17:40:50 +00:00
|
|
|
|
|
|
|
static void switchdev_port_attr_set_deferred(struct net_device *dev,
|
|
|
|
const void *data)
|
|
|
|
{
|
|
|
|
const struct switchdev_attr *attr = data;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = switchdev_port_attr_set_now(dev, attr);
|
|
|
|
if (err && err != -EOPNOTSUPP)
|
|
|
|
netdev_err(dev, "failed (err=%d) to set attribute (id=%d)\n",
|
|
|
|
err, attr->id);
|
2016-04-21 10:52:43 +00:00
|
|
|
if (attr->complete)
|
|
|
|
attr->complete(dev, err, attr->complete_priv);
|
2015-10-14 17:40:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int switchdev_port_attr_set_defer(struct net_device *dev,
|
|
|
|
const struct switchdev_attr *attr)
|
|
|
|
{
|
|
|
|
return switchdev_deferred_enqueue(dev, attr, sizeof(*attr),
|
|
|
|
switchdev_port_attr_set_deferred);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* switchdev_port_attr_set - Set port attribute
|
|
|
|
*
|
|
|
|
* @dev: port device
|
|
|
|
* @attr: attribute to set
|
|
|
|
*
|
|
|
|
* Use a 2-phase prepare-commit transaction model to ensure
|
|
|
|
* system is not left in a partially updated state due to
|
|
|
|
* failure from driver/device.
|
|
|
|
*
|
|
|
|
* rtnl_lock must be held and must not be in atomic section,
|
|
|
|
* in case SWITCHDEV_F_DEFER flag is not set.
|
|
|
|
*/
|
|
|
|
int switchdev_port_attr_set(struct net_device *dev,
|
|
|
|
const struct switchdev_attr *attr)
|
|
|
|
{
|
|
|
|
if (attr->flags & SWITCHDEV_F_DEFER)
|
|
|
|
return switchdev_port_attr_set_defer(dev, attr);
|
|
|
|
ASSERT_RTNL();
|
|
|
|
return switchdev_port_attr_set_now(dev, attr);
|
|
|
|
}
|
switchdev: introduce get/set attrs ops
Add two new swdev ops for get/set switch port attributes. Most swdev
interactions on a port are gets or sets on port attributes, so rather than
adding ops for each attribute, let's define clean get/set ops for all
attributes, and then we can have clear, consistent rules on how attributes
propagate on stacked devs.
Add the basic algorithms for get/set attr ops. Use the same recusive algo
to walk lower devs we've used for STP updates, for example. For get,
compare attr value for each lower dev and only return success if attr
values match across all lower devs. For sets, set the same attr value for
all lower devs. We'll use a two-phase prepare-commit transaction model for
sets. In the first phase, the driver(s) are asked if attr set is OK. If
all OK, the commit attr set in second phase. A driver would NACK the
prepare phase if it can't set the attr due to lack of resources or support,
within it's control. RTNL lock must be held across both phases because
we'll recurse all lower devs first in prepare phase, and then recurse all
lower devs again in commit phase. If any lower dev fails the prepare
phase, we need to abort the transaction for all lower devs.
If lower dev recusion isn't desired, allow a flag SWITCHDEV_F_NO_RECURSE to
indicate get/set only work on port (lowest) device.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-05-10 16:47:48 +00:00
|
|
|
EXPORT_SYMBOL_GPL(switchdev_port_attr_set);
|
|
|
|
|
2015-10-29 06:17:31 +00:00
|
|
|
static size_t switchdev_obj_size(const struct switchdev_obj *obj)
|
|
|
|
{
|
|
|
|
switch (obj->id) {
|
|
|
|
case SWITCHDEV_OBJ_ID_PORT_VLAN:
|
|
|
|
return sizeof(struct switchdev_obj_port_vlan);
|
2016-01-10 20:06:22 +00:00
|
|
|
case SWITCHDEV_OBJ_ID_PORT_MDB:
|
|
|
|
return sizeof(struct switchdev_obj_port_mdb);
|
2017-11-09 22:10:59 +00:00
|
|
|
case SWITCHDEV_OBJ_ID_HOST_MDB:
|
|
|
|
return sizeof(struct switchdev_obj_port_mdb);
|
2015-10-29 06:17:31 +00:00
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-05-13 06:03:51 +00:00
|
|
|
static int __switchdev_port_obj_add(struct net_device *dev,
|
2015-10-01 09:03:45 +00:00
|
|
|
const struct switchdev_obj *obj,
|
2015-09-24 08:02:41 +00:00
|
|
|
struct switchdev_trans *trans)
|
2015-05-10 16:47:52 +00:00
|
|
|
{
|
|
|
|
const struct switchdev_ops *ops = dev->switchdev_ops;
|
|
|
|
struct net_device *lower_dev;
|
|
|
|
struct list_head *iter;
|
|
|
|
int err = -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (ops && ops->switchdev_port_obj_add)
|
2015-10-01 09:03:46 +00:00
|
|
|
return ops->switchdev_port_obj_add(dev, obj, trans);
|
2015-05-10 16:47:52 +00:00
|
|
|
|
|
|
|
/* Switch device port(s) may be stacked under
|
|
|
|
* bond/team/vlan dev, so recurse down to add object on
|
|
|
|
* each port.
|
|
|
|
*/
|
|
|
|
|
|
|
|
netdev_for_each_lower_dev(dev, lower_dev, iter) {
|
2015-10-01 09:03:46 +00:00
|
|
|
err = __switchdev_port_obj_add(lower_dev, obj, trans);
|
2015-05-10 16:47:52 +00:00
|
|
|
if (err)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-10-14 17:40:52 +00:00
|
|
|
static int switchdev_port_obj_add_now(struct net_device *dev,
|
|
|
|
const struct switchdev_obj *obj)
|
2015-05-10 16:47:52 +00:00
|
|
|
{
|
2015-09-24 08:02:41 +00:00
|
|
|
struct switchdev_trans trans;
|
2015-05-10 16:47:52 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
ASSERT_RTNL();
|
|
|
|
|
2015-09-24 08:02:41 +00:00
|
|
|
switchdev_trans_init(&trans);
|
|
|
|
|
2015-05-10 16:47:52 +00:00
|
|
|
/* Phase I: prepare for obj add. Driver/device should fail
|
|
|
|
* here if there are going to be issues in the commit phase,
|
|
|
|
* such as lack of resources or support. The driver/device
|
|
|
|
* should reserve resources needed for the commit phase here,
|
|
|
|
* but should not commit the obj.
|
|
|
|
*/
|
|
|
|
|
2015-09-24 08:02:49 +00:00
|
|
|
trans.ph_prepare = true;
|
2015-10-01 09:03:46 +00:00
|
|
|
err = __switchdev_port_obj_add(dev, obj, &trans);
|
2015-05-10 16:47:52 +00:00
|
|
|
if (err) {
|
|
|
|
/* Prepare phase failed: abort the transaction. Any
|
|
|
|
* resources reserved in the prepare phase are
|
|
|
|
* released.
|
|
|
|
*/
|
|
|
|
|
2015-09-24 08:02:47 +00:00
|
|
|
if (err != -EOPNOTSUPP)
|
2015-09-24 08:02:41 +00:00
|
|
|
switchdev_trans_items_destroy(&trans);
|
2015-05-10 16:47:52 +00:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Phase II: commit obj add. This cannot fail as a fault
|
|
|
|
* of driver/device. If it does, it's a bug in the driver/device
|
|
|
|
* because the driver said everythings was OK in phase I.
|
|
|
|
*/
|
|
|
|
|
2015-09-24 08:02:49 +00:00
|
|
|
trans.ph_prepare = false;
|
2015-10-01 09:03:46 +00:00
|
|
|
err = __switchdev_port_obj_add(dev, obj, &trans);
|
|
|
|
WARN(err, "%s: Commit of object (id=%d) failed.\n", dev->name, obj->id);
|
2015-09-24 08:02:41 +00:00
|
|
|
switchdev_trans_items_warn_destroy(dev, &trans);
|
2015-05-10 16:47:52 +00:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2015-10-14 17:40:52 +00:00
|
|
|
|
|
|
|
static void switchdev_port_obj_add_deferred(struct net_device *dev,
|
|
|
|
const void *data)
|
|
|
|
{
|
|
|
|
const struct switchdev_obj *obj = data;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = switchdev_port_obj_add_now(dev, obj);
|
|
|
|
if (err && err != -EOPNOTSUPP)
|
|
|
|
netdev_err(dev, "failed (err=%d) to add object (id=%d)\n",
|
|
|
|
err, obj->id);
|
2016-04-21 10:52:43 +00:00
|
|
|
if (obj->complete)
|
|
|
|
obj->complete(dev, err, obj->complete_priv);
|
2015-10-14 17:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int switchdev_port_obj_add_defer(struct net_device *dev,
|
|
|
|
const struct switchdev_obj *obj)
|
|
|
|
{
|
2015-10-29 06:17:31 +00:00
|
|
|
return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
|
2015-10-14 17:40:52 +00:00
|
|
|
switchdev_port_obj_add_deferred);
|
|
|
|
}
|
2015-05-10 16:47:52 +00:00
|
|
|
|
|
|
|
/**
|
2015-10-14 17:40:52 +00:00
|
|
|
* switchdev_port_obj_add - Add port object
|
2015-05-10 16:47:52 +00:00
|
|
|
*
|
|
|
|
* @dev: port device
|
2015-09-29 16:07:17 +00:00
|
|
|
* @id: object ID
|
2015-10-14 17:40:52 +00:00
|
|
|
* @obj: object to add
|
|
|
|
*
|
|
|
|
* Use a 2-phase prepare-commit transaction model to ensure
|
|
|
|
* system is not left in a partially updated state due to
|
|
|
|
* failure from driver/device.
|
|
|
|
*
|
|
|
|
* rtnl_lock must be held and must not be in atomic section,
|
|
|
|
* in case SWITCHDEV_F_DEFER flag is not set.
|
2015-05-10 16:47:52 +00:00
|
|
|
*/
|
2015-10-14 17:40:52 +00:00
|
|
|
int switchdev_port_obj_add(struct net_device *dev,
|
2015-10-01 09:03:45 +00:00
|
|
|
const struct switchdev_obj *obj)
|
2015-10-14 17:40:52 +00:00
|
|
|
{
|
|
|
|
if (obj->flags & SWITCHDEV_F_DEFER)
|
|
|
|
return switchdev_port_obj_add_defer(dev, obj);
|
|
|
|
ASSERT_RTNL();
|
|
|
|
return switchdev_port_obj_add_now(dev, obj);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(switchdev_port_obj_add);
|
|
|
|
|
|
|
|
static int switchdev_port_obj_del_now(struct net_device *dev,
|
|
|
|
const struct switchdev_obj *obj)
|
2015-05-10 16:47:52 +00:00
|
|
|
{
|
|
|
|
const struct switchdev_ops *ops = dev->switchdev_ops;
|
|
|
|
struct net_device *lower_dev;
|
|
|
|
struct list_head *iter;
|
|
|
|
int err = -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (ops && ops->switchdev_port_obj_del)
|
2015-10-01 09:03:46 +00:00
|
|
|
return ops->switchdev_port_obj_del(dev, obj);
|
2015-05-10 16:47:52 +00:00
|
|
|
|
|
|
|
/* Switch device port(s) may be stacked under
|
|
|
|
* bond/team/vlan dev, so recurse down to delete object on
|
|
|
|
* each port.
|
|
|
|
*/
|
|
|
|
|
|
|
|
netdev_for_each_lower_dev(dev, lower_dev, iter) {
|
2015-10-14 17:40:52 +00:00
|
|
|
err = switchdev_port_obj_del_now(lower_dev, obj);
|
2015-05-10 16:47:52 +00:00
|
|
|
if (err)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2015-10-14 17:40:52 +00:00
|
|
|
|
|
|
|
static void switchdev_port_obj_del_deferred(struct net_device *dev,
|
|
|
|
const void *data)
|
|
|
|
{
|
|
|
|
const struct switchdev_obj *obj = data;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = switchdev_port_obj_del_now(dev, obj);
|
|
|
|
if (err && err != -EOPNOTSUPP)
|
|
|
|
netdev_err(dev, "failed (err=%d) to del object (id=%d)\n",
|
|
|
|
err, obj->id);
|
2016-04-21 10:52:43 +00:00
|
|
|
if (obj->complete)
|
|
|
|
obj->complete(dev, err, obj->complete_priv);
|
2015-10-14 17:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int switchdev_port_obj_del_defer(struct net_device *dev,
|
|
|
|
const struct switchdev_obj *obj)
|
|
|
|
{
|
2015-10-29 06:17:31 +00:00
|
|
|
return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
|
2015-10-14 17:40:52 +00:00
|
|
|
switchdev_port_obj_del_deferred);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* switchdev_port_obj_del - Delete port object
|
|
|
|
*
|
|
|
|
* @dev: port device
|
|
|
|
* @id: object ID
|
|
|
|
* @obj: object to delete
|
|
|
|
*
|
|
|
|
* rtnl_lock must be held and must not be in atomic section,
|
|
|
|
* in case SWITCHDEV_F_DEFER flag is not set.
|
|
|
|
*/
|
|
|
|
int switchdev_port_obj_del(struct net_device *dev,
|
|
|
|
const struct switchdev_obj *obj)
|
|
|
|
{
|
|
|
|
if (obj->flags & SWITCHDEV_F_DEFER)
|
|
|
|
return switchdev_port_obj_del_defer(dev, obj);
|
|
|
|
ASSERT_RTNL();
|
|
|
|
return switchdev_port_obj_del_now(dev, obj);
|
|
|
|
}
|
2015-05-10 16:47:52 +00:00
|
|
|
EXPORT_SYMBOL_GPL(switchdev_port_obj_del);
|
|
|
|
|
2017-06-08 06:44:13 +00:00
|
|
|
static ATOMIC_NOTIFIER_HEAD(switchdev_notif_chain);
|
2015-01-15 22:49:36 +00:00
|
|
|
|
|
|
|
/**
|
2015-05-10 16:47:46 +00:00
|
|
|
* register_switchdev_notifier - Register notifier
|
2015-01-15 22:49:36 +00:00
|
|
|
* @nb: notifier_block
|
|
|
|
*
|
2017-06-08 06:44:13 +00:00
|
|
|
* Register switch device notifier.
|
2015-01-15 22:49:36 +00:00
|
|
|
*/
|
2015-05-10 16:47:46 +00:00
|
|
|
int register_switchdev_notifier(struct notifier_block *nb)
|
2015-01-15 22:49:36 +00:00
|
|
|
{
|
2017-06-08 06:44:13 +00:00
|
|
|
return atomic_notifier_chain_register(&switchdev_notif_chain, nb);
|
2015-01-15 22:49:36 +00:00
|
|
|
}
|
2015-05-10 16:47:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(register_switchdev_notifier);
|
2015-01-15 22:49:36 +00:00
|
|
|
|
|
|
|
/**
|
2015-05-10 16:47:46 +00:00
|
|
|
* unregister_switchdev_notifier - Unregister notifier
|
2015-01-15 22:49:36 +00:00
|
|
|
* @nb: notifier_block
|
|
|
|
*
|
|
|
|
* Unregister switch device notifier.
|
|
|
|
*/
|
2015-05-10 16:47:46 +00:00
|
|
|
int unregister_switchdev_notifier(struct notifier_block *nb)
|
2015-01-15 22:49:36 +00:00
|
|
|
{
|
2017-06-08 06:44:13 +00:00
|
|
|
return atomic_notifier_chain_unregister(&switchdev_notif_chain, nb);
|
2015-01-15 22:49:36 +00:00
|
|
|
}
|
2015-05-10 16:47:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(unregister_switchdev_notifier);
|
2015-01-15 22:49:36 +00:00
|
|
|
|
|
|
|
/**
|
2015-05-10 16:47:46 +00:00
|
|
|
* call_switchdev_notifiers - Call notifiers
|
2015-01-15 22:49:36 +00:00
|
|
|
* @val: value passed unmodified to notifier function
|
|
|
|
* @dev: port device
|
|
|
|
* @info: notifier information data
|
|
|
|
*
|
2017-06-08 06:44:13 +00:00
|
|
|
* Call all network notifier blocks.
|
2015-01-15 22:49:36 +00:00
|
|
|
*/
|
2015-05-10 16:47:46 +00:00
|
|
|
int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
|
|
|
|
struct switchdev_notifier_info *info)
|
2015-01-15 22:49:36 +00:00
|
|
|
{
|
|
|
|
info->dev = dev;
|
2017-06-08 06:44:13 +00:00
|
|
|
return atomic_notifier_call_chain(&switchdev_notif_chain, val, info);
|
2015-01-15 22:49:36 +00:00
|
|
|
}
|
2015-05-10 16:47:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(call_switchdev_notifiers);
|
2015-01-30 06:40:13 +00:00
|
|
|
|
2016-07-14 07:32:43 +00:00
|
|
|
bool switchdev_port_same_parent_id(struct net_device *a,
|
|
|
|
struct net_device *b)
|
2015-07-19 01:24:50 +00:00
|
|
|
{
|
|
|
|
struct switchdev_attr a_attr = {
|
2015-12-15 15:03:35 +00:00
|
|
|
.orig_dev = a,
|
2015-10-01 09:03:42 +00:00
|
|
|
.id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
|
2015-07-19 01:24:50 +00:00
|
|
|
};
|
|
|
|
struct switchdev_attr b_attr = {
|
2015-12-15 15:03:35 +00:00
|
|
|
.orig_dev = b,
|
2015-10-01 09:03:42 +00:00
|
|
|
.id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
|
2015-07-19 01:24:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (switchdev_port_attr_get(a, &a_attr) ||
|
|
|
|
switchdev_port_attr_get(b, &b_attr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return netdev_phys_item_id_same(&a_attr.u.ppid, &b_attr.u.ppid);
|
|
|
|
}
|
2016-08-15 11:51:54 +00:00
|
|
|
EXPORT_SYMBOL_GPL(switchdev_port_same_parent_id);
|