mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
rocker: use switchdev transaction queue for allocated memory
Benefit from previously introduced transaction item queue infrastructure and remove rocker specific transaction memory management. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
76c6f945cc
commit
ac3dbc68a4
@ -228,7 +228,6 @@ struct rocker_port {
|
|||||||
struct napi_struct napi_rx;
|
struct napi_struct napi_rx;
|
||||||
struct rocker_dma_ring_info tx_ring;
|
struct rocker_dma_ring_info tx_ring;
|
||||||
struct rocker_dma_ring_info rx_ring;
|
struct rocker_dma_ring_info rx_ring;
|
||||||
struct list_head trans_mem;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rocker {
|
struct rocker {
|
||||||
@ -346,13 +345,13 @@ static void *__rocker_port_mem_alloc(struct rocker_port *rocker_port,
|
|||||||
struct switchdev_trans *trans, int flags,
|
struct switchdev_trans *trans, int flags,
|
||||||
size_t size)
|
size_t size)
|
||||||
{
|
{
|
||||||
struct list_head *elem = NULL;
|
struct switchdev_trans_item *elem = NULL;
|
||||||
gfp_t gfp_flags = (flags & ROCKER_OP_FLAG_NOWAIT) ?
|
gfp_t gfp_flags = (flags & ROCKER_OP_FLAG_NOWAIT) ?
|
||||||
GFP_ATOMIC : GFP_KERNEL;
|
GFP_ATOMIC : GFP_KERNEL;
|
||||||
|
|
||||||
/* If in transaction prepare phase, allocate the memory
|
/* If in transaction prepare phase, allocate the memory
|
||||||
* and enqueue it on a per-port list. If in transaction
|
* and enqueue it on a transaction. If in transaction
|
||||||
* commit phase, dequeue the memory from the per-port list
|
* commit phase, dequeue the memory from the transaction
|
||||||
* rather than re-allocating the memory. The idea is the
|
* rather than re-allocating the memory. The idea is the
|
||||||
* driver code paths for prepare and commit are identical
|
* driver code paths for prepare and commit are identical
|
||||||
* so the memory allocated in the prepare phase is the
|
* so the memory allocated in the prepare phase is the
|
||||||
@ -361,17 +360,13 @@ static void *__rocker_port_mem_alloc(struct rocker_port *rocker_port,
|
|||||||
|
|
||||||
if (!trans) {
|
if (!trans) {
|
||||||
elem = kzalloc(size + sizeof(*elem), gfp_flags);
|
elem = kzalloc(size + sizeof(*elem), gfp_flags);
|
||||||
if (elem)
|
|
||||||
INIT_LIST_HEAD(elem);
|
|
||||||
} else if (switchdev_trans_ph_prepare(trans)) {
|
} else if (switchdev_trans_ph_prepare(trans)) {
|
||||||
elem = kzalloc(size + sizeof(*elem), gfp_flags);
|
elem = kzalloc(size + sizeof(*elem), gfp_flags);
|
||||||
if (!elem)
|
if (!elem)
|
||||||
return NULL;
|
return NULL;
|
||||||
list_add_tail(elem, &rocker_port->trans_mem);
|
switchdev_trans_item_enqueue(trans, elem, kfree, elem);
|
||||||
} else {
|
} else {
|
||||||
BUG_ON(list_empty(&rocker_port->trans_mem));
|
elem = switchdev_trans_item_dequeue(trans);
|
||||||
elem = rocker_port->trans_mem.next;
|
|
||||||
list_del_init(elem);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return elem ? elem + 1 : NULL;
|
return elem ? elem + 1 : NULL;
|
||||||
@ -393,7 +388,7 @@ static void *rocker_port_kcalloc(struct rocker_port *rocker_port,
|
|||||||
|
|
||||||
static void rocker_port_kfree(struct switchdev_trans *trans, const void *mem)
|
static void rocker_port_kfree(struct switchdev_trans *trans, const void *mem)
|
||||||
{
|
{
|
||||||
struct list_head *elem;
|
struct switchdev_trans_item *elem;
|
||||||
|
|
||||||
/* Frees are ignored if in transaction prepare phase. The
|
/* Frees are ignored if in transaction prepare phase. The
|
||||||
* memory remains on the per-port list until freed in the
|
* memory remains on the per-port list until freed in the
|
||||||
@ -403,8 +398,7 @@ static void rocker_port_kfree(struct switchdev_trans *trans, const void *mem)
|
|||||||
if (switchdev_trans_ph_prepare(trans))
|
if (switchdev_trans_ph_prepare(trans))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
elem = (struct list_head *)mem - 1;
|
elem = (struct switchdev_trans_item *) mem - 1;
|
||||||
BUG_ON(!list_empty(elem));
|
|
||||||
kfree(elem);
|
kfree(elem);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4349,16 +4343,6 @@ static int rocker_port_attr_get(struct net_device *dev,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rocker_port_trans_abort(const struct rocker_port *rocker_port)
|
|
||||||
{
|
|
||||||
struct list_head *mem, *tmp;
|
|
||||||
|
|
||||||
list_for_each_safe(mem, tmp, &rocker_port->trans_mem) {
|
|
||||||
list_del(mem);
|
|
||||||
kfree(mem);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static int rocker_port_brport_flags_set(struct rocker_port *rocker_port,
|
static int rocker_port_brport_flags_set(struct rocker_port *rocker_port,
|
||||||
struct switchdev_trans *trans,
|
struct switchdev_trans *trans,
|
||||||
unsigned long brport_flags)
|
unsigned long brport_flags)
|
||||||
@ -4384,17 +4368,6 @@ static int rocker_port_attr_set(struct net_device *dev,
|
|||||||
struct rocker_port *rocker_port = netdev_priv(dev);
|
struct rocker_port *rocker_port = netdev_priv(dev);
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
||||||
switch (trans->ph) {
|
|
||||||
case SWITCHDEV_TRANS_PREPARE:
|
|
||||||
BUG_ON(!list_empty(&rocker_port->trans_mem));
|
|
||||||
break;
|
|
||||||
case SWITCHDEV_TRANS_ABORT:
|
|
||||||
rocker_port_trans_abort(rocker_port);
|
|
||||||
return 0;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (attr->id) {
|
switch (attr->id) {
|
||||||
case SWITCHDEV_ATTR_PORT_STP_STATE:
|
case SWITCHDEV_ATTR_PORT_STP_STATE:
|
||||||
err = rocker_port_stp_update(rocker_port, trans,
|
err = rocker_port_stp_update(rocker_port, trans,
|
||||||
@ -4471,17 +4444,6 @@ static int rocker_port_obj_add(struct net_device *dev,
|
|||||||
const struct switchdev_obj_ipv4_fib *fib4;
|
const struct switchdev_obj_ipv4_fib *fib4;
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
||||||
switch (trans->ph) {
|
|
||||||
case SWITCHDEV_TRANS_PREPARE:
|
|
||||||
BUG_ON(!list_empty(&rocker_port->trans_mem));
|
|
||||||
break;
|
|
||||||
case SWITCHDEV_TRANS_ABORT:
|
|
||||||
rocker_port_trans_abort(rocker_port);
|
|
||||||
return 0;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (obj->id) {
|
switch (obj->id) {
|
||||||
case SWITCHDEV_OBJ_PORT_VLAN:
|
case SWITCHDEV_OBJ_PORT_VLAN:
|
||||||
err = rocker_port_vlans_add(rocker_port, trans,
|
err = rocker_port_vlans_add(rocker_port, trans,
|
||||||
@ -5010,7 +4972,6 @@ static int rocker_probe_port(struct rocker *rocker, unsigned int port_number)
|
|||||||
rocker_port->pport = port_number + 1;
|
rocker_port->pport = port_number + 1;
|
||||||
rocker_port->brport_flags = BR_LEARNING | BR_LEARNING_SYNC;
|
rocker_port->brport_flags = BR_LEARNING | BR_LEARNING_SYNC;
|
||||||
rocker_port->ageing_time = BR_DEFAULT_AGEING_TIME;
|
rocker_port->ageing_time = BR_DEFAULT_AGEING_TIME;
|
||||||
INIT_LIST_HEAD(&rocker_port->trans_mem);
|
|
||||||
|
|
||||||
rocker_port_dev_addr_init(rocker_port);
|
rocker_port_dev_addr_init(rocker_port);
|
||||||
dev->netdev_ops = &rocker_port_netdev_ops;
|
dev->netdev_ops = &rocker_port_netdev_ops;
|
||||||
|
Loading…
Reference in New Issue
Block a user