We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23484d8 commit 63bafd9Copy full SHA for 63bafd9
net/mac80211/driver-ops.c
@@ -1,7 +1,7 @@
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
3
* Copyright 2015 Intel Deutschland GmbH
4
- * Copyright (C) 2022 Intel Corporation
+ * Copyright (C) 2022-2023 Intel Corporation
5
*/
6
#include <net/mac80211.h>
7
#include "ieee80211_i.h"
@@ -589,6 +589,10 @@ int drv_change_sta_links(struct ieee80211_local *local,
589
if (ret)
590
return ret;
591
592
+ /* during reconfig don't add it to debugfs again */
593
+ if (local->in_reconfig)
594
+ return 0;
595
+
596
for_each_set_bit(link_id, &links_to_add, IEEE80211_MLD_MAX_NUM_LINKS) {
597
link_sta = rcu_dereference_protected(info->link[link_id],
598
lockdep_is_held(&local->hw.wiphy->mtx));
0 commit comments