mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
net: openvswitch: fixes potential deadlock in dp cleanup code
The previous patch introduced a deadlock, this patch fixes it by making
sure the work is canceled without holding the global ovs lock. This is
done by moving the reorder processing one layer up to the netns level.
Fixes: eac87c413b
("net: openvswitch: reorder masks array based on usage")
Reported-by: syzbot+2c4ff3614695f75ce26c@syzkaller.appspotmail.com
Reported-by: syzbot+bad6507e5db05017b008@syzkaller.appspotmail.com
Reviewed-by: Paolo <pabeni@redhat.com>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
dfd3d5266d
commit
a65878d6f0
@@ -84,9 +84,6 @@ struct datapath {
|
||||
|
||||
/* Switch meters. */
|
||||
struct dp_meter_table meter_tbl;
|
||||
|
||||
/* re-balance flow masks timer */
|
||||
struct delayed_work masks_rebalance;
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -135,6 +132,7 @@ struct dp_upcall_info {
|
||||
struct ovs_net {
|
||||
struct list_head dps;
|
||||
struct work_struct dp_notify_work;
|
||||
struct delayed_work masks_rebalance;
|
||||
#if IS_ENABLED(CONFIG_NETFILTER_CONNCOUNT)
|
||||
struct ovs_ct_limit_info *ct_limit_info;
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user