mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
hsr: Disable netpoll.
The hsr device is a software device. Its
net_device_ops::ndo_start_xmit() routine will process the packet and
then pass the resulting skb to dev_queue_xmit().
During processing, hsr acquires a lock with spin_lock_bh()
(hsr_add_node()) which needs to be promoted to the _irq() suffix in
order to avoid a potential deadlock.
Then there are the warnings in dev_queue_xmit() (due to
local_bh_disable() with disabled interrupts) left.
Instead trying to address those (there is qdisc and…) for netpoll sake,
just disable netpoll on hsr.
Disable netpoll on hsr and replace the _irqsave() locking with _bh().
Fixes: f421436a59
("net/hsr: Add support for the High-availability Seamless Redundancy protocol (HSRv0)")
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
0c74d9f79e
commit
d5c7652eb1
@ -278,7 +278,6 @@ static void send_hsr_supervision_frame(struct hsr_port *master,
|
|||||||
__u8 type = HSR_TLV_LIFE_CHECK;
|
__u8 type = HSR_TLV_LIFE_CHECK;
|
||||||
struct hsr_sup_payload *hsr_sp;
|
struct hsr_sup_payload *hsr_sp;
|
||||||
struct hsr_sup_tag *hsr_stag;
|
struct hsr_sup_tag *hsr_stag;
|
||||||
unsigned long irqflags;
|
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
|
|
||||||
*interval = msecs_to_jiffies(HSR_LIFE_CHECK_INTERVAL);
|
*interval = msecs_to_jiffies(HSR_LIFE_CHECK_INTERVAL);
|
||||||
@ -299,7 +298,7 @@ static void send_hsr_supervision_frame(struct hsr_port *master,
|
|||||||
set_hsr_stag_HSR_ver(hsr_stag, hsr->prot_version);
|
set_hsr_stag_HSR_ver(hsr_stag, hsr->prot_version);
|
||||||
|
|
||||||
/* From HSRv1 on we have separate supervision sequence numbers. */
|
/* From HSRv1 on we have separate supervision sequence numbers. */
|
||||||
spin_lock_irqsave(&master->hsr->seqnr_lock, irqflags);
|
spin_lock_bh(&hsr->seqnr_lock);
|
||||||
if (hsr->prot_version > 0) {
|
if (hsr->prot_version > 0) {
|
||||||
hsr_stag->sequence_nr = htons(hsr->sup_sequence_nr);
|
hsr_stag->sequence_nr = htons(hsr->sup_sequence_nr);
|
||||||
hsr->sup_sequence_nr++;
|
hsr->sup_sequence_nr++;
|
||||||
@ -307,7 +306,7 @@ static void send_hsr_supervision_frame(struct hsr_port *master,
|
|||||||
hsr_stag->sequence_nr = htons(hsr->sequence_nr);
|
hsr_stag->sequence_nr = htons(hsr->sequence_nr);
|
||||||
hsr->sequence_nr++;
|
hsr->sequence_nr++;
|
||||||
}
|
}
|
||||||
spin_unlock_irqrestore(&master->hsr->seqnr_lock, irqflags);
|
spin_unlock_bh(&hsr->seqnr_lock);
|
||||||
|
|
||||||
hsr_stag->tlv.HSR_TLV_type = type;
|
hsr_stag->tlv.HSR_TLV_type = type;
|
||||||
/* TODO: Why 12 in HSRv0? */
|
/* TODO: Why 12 in HSRv0? */
|
||||||
@ -332,7 +331,6 @@ static void send_prp_supervision_frame(struct hsr_port *master,
|
|||||||
struct hsr_priv *hsr = master->hsr;
|
struct hsr_priv *hsr = master->hsr;
|
||||||
struct hsr_sup_payload *hsr_sp;
|
struct hsr_sup_payload *hsr_sp;
|
||||||
struct hsr_sup_tag *hsr_stag;
|
struct hsr_sup_tag *hsr_stag;
|
||||||
unsigned long irqflags;
|
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
|
|
||||||
skb = hsr_init_skb(master);
|
skb = hsr_init_skb(master);
|
||||||
@ -347,7 +345,7 @@ static void send_prp_supervision_frame(struct hsr_port *master,
|
|||||||
set_hsr_stag_HSR_ver(hsr_stag, (hsr->prot_version ? 1 : 0));
|
set_hsr_stag_HSR_ver(hsr_stag, (hsr->prot_version ? 1 : 0));
|
||||||
|
|
||||||
/* From HSRv1 on we have separate supervision sequence numbers. */
|
/* From HSRv1 on we have separate supervision sequence numbers. */
|
||||||
spin_lock_irqsave(&master->hsr->seqnr_lock, irqflags);
|
spin_lock_bh(&hsr->seqnr_lock);
|
||||||
hsr_stag->sequence_nr = htons(hsr->sup_sequence_nr);
|
hsr_stag->sequence_nr = htons(hsr->sup_sequence_nr);
|
||||||
hsr->sup_sequence_nr++;
|
hsr->sup_sequence_nr++;
|
||||||
hsr_stag->tlv.HSR_TLV_type = PRP_TLV_LIFE_CHECK_DD;
|
hsr_stag->tlv.HSR_TLV_type = PRP_TLV_LIFE_CHECK_DD;
|
||||||
@ -358,11 +356,11 @@ static void send_prp_supervision_frame(struct hsr_port *master,
|
|||||||
ether_addr_copy(hsr_sp->macaddress_A, master->dev->dev_addr);
|
ether_addr_copy(hsr_sp->macaddress_A, master->dev->dev_addr);
|
||||||
|
|
||||||
if (skb_put_padto(skb, ETH_ZLEN)) {
|
if (skb_put_padto(skb, ETH_ZLEN)) {
|
||||||
spin_unlock_irqrestore(&master->hsr->seqnr_lock, irqflags);
|
spin_unlock_bh(&hsr->seqnr_lock);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&master->hsr->seqnr_lock, irqflags);
|
spin_unlock_bh(&hsr->seqnr_lock);
|
||||||
|
|
||||||
hsr_forward_skb(skb, master);
|
hsr_forward_skb(skb, master);
|
||||||
}
|
}
|
||||||
@ -444,7 +442,7 @@ void hsr_dev_setup(struct net_device *dev)
|
|||||||
dev->header_ops = &hsr_header_ops;
|
dev->header_ops = &hsr_header_ops;
|
||||||
dev->netdev_ops = &hsr_device_ops;
|
dev->netdev_ops = &hsr_device_ops;
|
||||||
SET_NETDEV_DEVTYPE(dev, &hsr_type);
|
SET_NETDEV_DEVTYPE(dev, &hsr_type);
|
||||||
dev->priv_flags |= IFF_NO_QUEUE;
|
dev->priv_flags |= IFF_NO_QUEUE | IFF_DISABLE_NETPOLL;
|
||||||
|
|
||||||
dev->needs_free_netdev = true;
|
dev->needs_free_netdev = true;
|
||||||
|
|
||||||
|
@ -500,7 +500,6 @@ static void handle_std_frame(struct sk_buff *skb,
|
|||||||
{
|
{
|
||||||
struct hsr_port *port = frame->port_rcv;
|
struct hsr_port *port = frame->port_rcv;
|
||||||
struct hsr_priv *hsr = port->hsr;
|
struct hsr_priv *hsr = port->hsr;
|
||||||
unsigned long irqflags;
|
|
||||||
|
|
||||||
frame->skb_hsr = NULL;
|
frame->skb_hsr = NULL;
|
||||||
frame->skb_prp = NULL;
|
frame->skb_prp = NULL;
|
||||||
@ -510,10 +509,10 @@ static void handle_std_frame(struct sk_buff *skb,
|
|||||||
frame->is_from_san = true;
|
frame->is_from_san = true;
|
||||||
} else {
|
} else {
|
||||||
/* Sequence nr for the master node */
|
/* Sequence nr for the master node */
|
||||||
spin_lock_irqsave(&hsr->seqnr_lock, irqflags);
|
spin_lock_bh(&hsr->seqnr_lock);
|
||||||
frame->sequence_nr = hsr->sequence_nr;
|
frame->sequence_nr = hsr->sequence_nr;
|
||||||
hsr->sequence_nr++;
|
hsr->sequence_nr++;
|
||||||
spin_unlock_irqrestore(&hsr->seqnr_lock, irqflags);
|
spin_unlock_bh(&hsr->seqnr_lock);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user