* [PATCH RFC 2/2] wifi: mt76: mt7996: Add beacon_reconf IE parsing support
From: Lorenzo Bianconi @ 2026-02-11 23:38 UTC (permalink / raw)
To: Johannes Berg, Felix Fietkau, Ryder Lee, Shayne Chen, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno
Cc: Aditya Kumar Singh, Ping-Ke Shih, Jeff Johnson, linux-wireless,
linux-arm-kernel, linux-mediatek, Lorenzo Bianconi
In-Reply-To: <20260212-mt7996-link-reconf-v1-0-2b110340d6c4@kernel.org>
From: Shayne Chen <shayne.chen@mediatek.com>
Implement the capability to offload the countdown for MLO link
reconfiguration IE sent by the AP MLD if the specified link is going
to be removed.
Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
---
.../net/wireless/mediatek/mt76/mt76_connac_mcu.h | 5 +
drivers/net/wireless/mediatek/mt76/mt7996/init.c | 3 +-
drivers/net/wireless/mediatek/mt76/mt7996/mcu.c | 185 +++++++++++++++++++++
drivers/net/wireless/mediatek/mt76/mt7996/mcu.h | 69 +++++++-
4 files changed, 260 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.h b/drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.h
index f44977f9093da76a9f5e2b4d7ce147de28c5b18e..669f20d57d591a092afbb33bc58f4b63e82ae9b6 100644
--- a/drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.h
+++ b/drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.h
@@ -1067,6 +1067,7 @@ enum {
MCU_UNI_EVENT_WED_RRO = 0x57,
MCU_UNI_EVENT_PER_STA_INFO = 0x6d,
MCU_UNI_EVENT_ALL_STA_INFO = 0x6e,
+ MCU_UNI_EVENT_MLD = 0x81,
MCU_UNI_EVENT_SDO = 0x83,
};
@@ -1309,6 +1310,8 @@ enum {
MCU_UNI_CMD_ALL_STA_INFO = 0x6e,
MCU_UNI_CMD_ASSERT_DUMP = 0x6f,
MCU_UNI_CMD_RADIO_STATUS = 0x80,
+ MCU_UNI_CMD_MLD = 0x82,
+ MCU_UNI_CMD_PEER_MLD = 0x83,
MCU_UNI_CMD_SDO = 0x88,
};
@@ -1384,6 +1387,8 @@ enum {
UNI_BSS_INFO_MLD = 26,
UNI_BSS_INFO_PM_DISABLE = 27,
UNI_BSS_INFO_EHT = 30,
+ UNI_BSS_INFO_MLD_LINK_OP = 36,
+ UNI_BSS_INFO_BCN_ML_RECONF = 38,
};
enum {
diff --git a/drivers/net/wireless/mediatek/mt76/mt7996/init.c b/drivers/net/wireless/mediatek/mt76/mt7996/init.c
index 2937e89ad0c9c489274cfa4f6aeb694fb4456bd1..bf084cd434304e1afd3c3f8bbe726740f4d19f52 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7996/init.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7996/init.c
@@ -507,7 +507,8 @@ mt7996_init_wiphy(struct ieee80211_hw *hw, struct mtk_wed_device *wed)
wiphy->reg_notifier = mt7996_regd_notifier;
wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH |
- WIPHY_FLAG_SUPPORTS_MLO;
+ WIPHY_FLAG_SUPPORTS_MLO |
+ WIPHY_FLAG_MLO_RECONF_ADV_OFFLOAD;
wiphy->mbssid_max_interfaces = 16;
wiphy->iftype_ext_capab = iftypes_ext_capa;
wiphy->num_iftype_ext_capab = ARRAY_SIZE(iftypes_ext_capa);
diff --git a/drivers/net/wireless/mediatek/mt76/mt7996/mcu.c b/drivers/net/wireless/mediatek/mt76/mt7996/mcu.c
index 8e1c8e1d6a99f093a2b7d7dc3a0c56f3a4bc220b..310a580028a8e3532923fa82d65739b008dc58af 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7996/mcu.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7996/mcu.c
@@ -816,6 +816,50 @@ mt7996_mcu_wed_rro_event(struct mt7996_dev *dev, struct sk_buff *skb)
}
}
+static void
+mt7996_mcu_mld_reconf_finish(void *priv, u8 *mac, struct ieee80211_vif *vif)
+{
+ struct mt7996_mld_event_data *data = priv;
+ struct mt7996_mcu_mld_ap_reconf_event *reconf = (void *)data->data;
+
+ if (!ether_addr_equal(vif->addr, data->mld_addr))
+ return;
+
+ ieee80211_mlo_reconf_complete_notify(vif,
+ le16_to_cpu(reconf->link_bitmap));
+}
+
+static void
+mt7996_mcu_mld_event(struct mt7996_dev *dev, struct sk_buff *skb)
+{
+ struct mt7996_mcu_mld_event *e = (void *)skb->data;
+ struct mt7996_mld_event_data data = {};
+ struct tlv *tlv;
+ int len;
+
+ memcpy(data.mld_addr, e->mld_addr, ETH_ALEN);
+ skb_pull(skb, sizeof(*e));
+ tlv = (struct tlv *)skb->data;
+ len = skb->len;
+
+ while (len > 0 && le16_to_cpu(tlv->len) <= len) {
+ data.data = (u8 *)tlv;
+
+ switch (le16_to_cpu(tlv->tag)) {
+ case UNI_EVENT_MLD_RECONF_AP_REM_TIMER:
+ ieee80211_iterate_active_interfaces_atomic(
+ dev->mt76.hw, IEEE80211_IFACE_ITER_RESUME_ALL,
+ mt7996_mcu_mld_reconf_finish, &data);
+ break;
+ default:
+ break;
+ }
+
+ len -= le16_to_cpu(tlv->len);
+ tlv = (struct tlv *)((u8 *)tlv + le16_to_cpu(tlv->len));
+ }
+}
+
static void
mt7996_mcu_uni_rx_unsolicited_event(struct mt7996_dev *dev, struct sk_buff *skb)
{
@@ -837,6 +881,9 @@ mt7996_mcu_uni_rx_unsolicited_event(struct mt7996_dev *dev, struct sk_buff *skb)
case MCU_UNI_EVENT_WED_RRO:
mt7996_mcu_wed_rro_event(dev, skb);
break;
+ case MCU_UNI_EVENT_MLD:
+ mt7996_mcu_mld_event(dev, skb);
+ break;
default:
break;
}
@@ -2863,6 +2910,142 @@ mt7996_mcu_beacon_cntdwn(struct sk_buff *rskb, struct sk_buff *skb,
}
}
+static int
+mt7996_mcu_mld_reconf(struct mt7996_dev *dev, struct ieee80211_vif *vif,
+ u16 removed_links, u16 *removal_count)
+{
+ struct mld_req_hdr hdr = { .mld_idx = 0xff };
+ unsigned long rem = removed_links;
+ struct mld_reconf_timer *rt;
+ struct sk_buff *skb;
+ struct tlv *tlv;
+ u8 link_id;
+
+ skb = mt76_mcu_msg_alloc(&dev->mt76, NULL, sizeof(hdr) + sizeof(*rt));
+ if (!skb)
+ return -ENOMEM;
+
+ memcpy(hdr.mld_addr, vif->addr, ETH_ALEN);
+ skb_put_data(skb, &hdr, sizeof(hdr));
+
+ tlv = mt7996_mcu_add_uni_tlv(skb, UNI_CMD_MLD_RECONF_AP_REM_TIMER,
+ sizeof(*rt));
+ rt = (struct mld_reconf_timer *)tlv;
+ rt->link_bitmap = cpu_to_le16(removed_links);
+
+ for_each_set_bit(link_id, &rem, IEEE80211_MLD_MAX_NUM_LINKS) {
+ struct ieee80211_bss_conf *link_conf;
+ struct mt7996_vif_link *link;
+ u8 band_idx;
+ u16 to_sec;
+
+ link_conf = link_conf_dereference_protected(vif, link_id);
+ if (!link_conf)
+ continue;
+
+ link = mt7996_vif_link(dev, vif, link_id);
+ if (!link)
+ continue;
+
+ to_sec = link_conf->beacon_int * removal_count[link_id] / 1000;
+ band_idx = link->phy->mt76->band_idx;
+ rt->to_sec[band_idx] = cpu_to_le16(to_sec);
+ rt->bss_idx[band_idx] = link->mt76.idx;
+ }
+
+ return mt76_mcu_skb_send_msg(&dev->mt76, skb, MCU_WM_UNI_CMD(MLD), true);
+}
+
+static void
+mt7996_mcu_beacon_ml_reconf(struct mt7996_dev *dev,
+ struct ieee80211_bss_conf *link_conf,
+ struct sk_buff *rskb, struct sk_buff *skb,
+ struct ieee80211_mutable_offsets *offs)
+{
+ u16 tail_offset = offs->tim_offset + offs->tim_length;
+ u16 removal_count[IEEE80211_MLD_MAX_NUM_LINKS] = {};
+ u16 removal_offs[IEEE80211_MLD_MAX_NUM_LINKS] = {};
+ u8 link_id, *beacon_tail = skb->data + tail_offset;
+ struct bss_bcn_ml_reconf_offset *reconf_offs;
+ struct bss_bcn_ml_reconf_tlv *reconf;
+ const struct element *elem, *sub;
+ unsigned long removed_links = 0;
+ bool has_reconf = false;
+ struct tlv *tlv;
+
+ /* TODO: currently manually parse reconf info directly from the IE, it
+ * is expected to be passed from upper layer in the future.
+ */
+ for_each_element_extid(elem, WLAN_EID_EXT_EHT_MULTI_LINK, beacon_tail,
+ skb->len - tail_offset) {
+ if (ieee80211_mle_type_ok(elem->data + 1,
+ IEEE80211_ML_CONTROL_TYPE_RECONF,
+ elem->datalen - 1)) {
+ has_reconf = true;
+ break;
+ }
+ }
+
+ if (!has_reconf)
+ return;
+
+ for_each_mle_subelement(sub, elem->data + 1, elem->datalen - 1) {
+ struct ieee80211_mle_per_sta_profile *prof = (void *)sub->data;
+ u8 *pos = prof->variable;
+ u16 control;
+
+ if (sub->id != IEEE80211_MLE_SUBELEM_PER_STA_PROFILE)
+ continue;
+
+ if (!ieee80211_mle_reconf_sta_prof_size_ok(sub->data,
+ sub->datalen))
+ return;
+
+ control = le16_to_cpu(prof->control);
+ link_id = control & IEEE80211_MLE_STA_RECONF_CONTROL_LINK_ID;
+ removed_links |= BIT(link_id);
+
+ if (control &
+ IEEE80211_MLE_STA_RECONF_CONTROL_STA_MAC_ADDR_PRESENT)
+ pos += 6;
+
+ if (control &
+ IEEE80211_MLE_STA_RECONF_CONTROL_AP_REM_TIMER_PRESENT) {
+ removal_offs[link_id] = pos - skb->data;
+ removal_count[link_id] = le16_to_cpu(*(__le16 *)pos);
+ }
+ }
+
+ if (!removed_links)
+ return;
+
+ /* the first link to be removed */
+ if (link_conf->link_id == __ffs(removed_links))
+ mt7996_mcu_mld_reconf(dev, link_conf->vif, removed_links,
+ removal_count);
+
+ tlv = mt7996_mcu_add_uni_tlv(rskb, UNI_BSS_INFO_BCN_ML_RECONF,
+ sizeof(*reconf) +
+ sizeof(*reconf_offs) * hweight16(removed_links));
+ reconf = (struct bss_bcn_ml_reconf_tlv *)tlv;
+ reconf->reconf_count = hweight16(removed_links);
+
+ reconf_offs = (struct bss_bcn_ml_reconf_offset *)reconf->offset;
+ for_each_set_bit(link_id, &removed_links,
+ IEEE80211_MLD_MAX_NUM_LINKS) {
+ struct mt7996_vif_link *link;
+
+ link = mt7996_vif_link(dev, link_conf->vif, link_id);
+ if (!link)
+ continue;
+
+ reconf_offs->ap_removal_timer_offs =
+ cpu_to_le16(removal_offs[link_id]);
+ reconf_offs->bss_idx = link->mt76.idx;
+ reconf_offs++;
+ }
+}
+
static void
mt7996_mcu_beacon_mbss(struct sk_buff *rskb, struct sk_buff *skb,
struct bss_bcn_content_tlv *bcn,
@@ -3006,6 +3189,8 @@ int mt7996_mcu_add_beacon(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
if (link_conf->bssid_indicator)
mt7996_mcu_beacon_mbss(rskb, skb, bcn, &offs);
mt7996_mcu_beacon_cntdwn(rskb, skb, &offs, link_conf->csa_active);
+ if (ieee80211_vif_is_mld(link_conf->vif))
+ mt7996_mcu_beacon_ml_reconf(dev, link_conf, rskb, skb, &offs);
out:
dev_kfree_skb(skb);
return mt76_mcu_skb_send_msg(&dev->mt76, rskb,
diff --git a/drivers/net/wireless/mediatek/mt76/mt7996/mcu.h b/drivers/net/wireless/mediatek/mt76/mt7996/mcu.h
index d9fb49f7b01b6cca2fd7a0e760c1d2b1b74eab5b..bb98194b98879ed7039791b3990019cbd43f120b 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7996/mcu.h
+++ b/drivers/net/wireless/mediatek/mt76/mt7996/mcu.h
@@ -487,6 +487,20 @@ struct bss_prot_tlv {
__le32 prot_mode;
} __packed;
+struct bss_bcn_ml_reconf_tlv {
+ __le16 tag;
+ __le16 len;
+ u8 reconf_count;
+ u8 rsv[3];
+ u8 offset[];
+} __packed;
+
+struct bss_bcn_ml_reconf_offset {
+ __le16 ap_removal_timer_offs;
+ u8 bss_idx;
+ u8 rsv;
+} __packed;
+
struct sta_rec_ht_uni {
__le16 tag;
__le16 len;
@@ -660,6 +674,57 @@ struct mld_setup_link {
u8 __rsv;
} __packed;
+struct mld_req_hdr {
+ u8 ver;
+ u8 mld_addr[ETH_ALEN];
+ u8 mld_idx;
+ u8 flag;
+ u8 rsv[3];
+ u8 buf[];
+} __packed;
+
+struct mld_reconf_timer {
+ __le16 tag;
+ __le16 len;
+ __le16 link_bitmap;
+ __le16 to_sec[__MT_MAX_BAND]; /* timeout of reconf (second) */
+ u8 bss_idx[__MT_MAX_BAND];
+ u8 rsv;
+} __packed;
+
+enum {
+ UNI_CMD_MLD_RECONF_AP_REM_TIMER = 0x03,
+ UNI_CMD_MLD_RECONF_STOP_LINK = 0x04,
+};
+
+struct mt7996_mcu_mld_event {
+ struct mt7996_mcu_rxd rxd;
+ /* fixed field */
+ u8 ver;
+ u8 mld_addr[ETH_ALEN];
+ u8 mld_idx;
+ u8 rsv[4];
+ /* tlv */
+ u8 buf[];
+} __packed;
+
+struct mt7996_mld_event_data {
+ u8 mld_addr[ETH_ALEN];
+ u8 *data;
+};
+
+struct mt7996_mcu_mld_ap_reconf_event {
+ __le16 tag;
+ __le16 len;
+ __le16 link_bitmap;
+ u8 bss_idx[3];
+ u8 rsv[3];
+} __packed;
+
+enum {
+ UNI_EVENT_MLD_RECONF_AP_REM_TIMER = 0x04,
+};
+
struct hdr_trans_en {
__le16 tag;
__le16 len;
@@ -847,7 +912,9 @@ enum {
sizeof(struct bss_bcn_content_tlv) + \
4 + MT_TXD_SIZE + \
sizeof(struct bss_bcn_cntdwn_tlv) + \
- sizeof(struct bss_bcn_mbss_tlv))
+ sizeof(struct bss_bcn_mbss_tlv) + \
+ sizeof(struct bss_bcn_ml_reconf_tlv) + \
+ 3 * sizeof(struct bss_bcn_ml_reconf_offset))
#define MT7996_MAX_BSS_OFFLOAD_SIZE 2048
#define MT7996_MAX_BEACON_SIZE (MT7996_MAX_BSS_OFFLOAD_SIZE - \
MT7996_BEACON_UPDATE_SIZE)
--
2.53.0
^ permalink raw reply related
* [PATCH RFC 1/2] wifi: mac80211: Add the capability to offload MLO link reconfiguration countdown in the NIC fw
From: Lorenzo Bianconi @ 2026-02-11 23:38 UTC (permalink / raw)
To: Johannes Berg, Felix Fietkau, Ryder Lee, Shayne Chen, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno
Cc: Aditya Kumar Singh, Ping-Ke Shih, Jeff Johnson, linux-wireless,
linux-arm-kernel, linux-mediatek, Lorenzo Bianconi
In-Reply-To: <20260212-mt7996-link-reconf-v1-0-2b110340d6c4@kernel.org>
Introduce the capability to offload the countdown for MLO link
reconfiguration IE if supported by the underlay driver/firmware.
MLO link reconfiguration IE is added to beacons/probe replies sent by
the MLD AP if the specified link is going to be removed.
The driver is supposed to set the WIPHY_FLAG_MLO_RECONF_ADV_OFFLOAD flag
to notify mac80211/hostapd it supports this capability in hw/fw.
Moreover, the driver is supposed to generate an event to notify
mac80211/hostapd when the countdown is completed calling
ieee80211_mlo_reconf_complete_notify() utility routine.
mac80211/cfg80211 will generate a
NL80211_CMD_MLO_RECONF_ADV_OFFLOAD_EVENT event for hostapd.
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
---
include/net/cfg80211.h | 13 ++++++++++
include/net/mac80211.h | 13 ++++++++++
include/uapi/linux/nl80211.h | 12 +++++++++
net/mac80211/cfg.c | 16 ++++++++++++
net/mac80211/ieee80211_i.h | 5 ++++
net/mac80211/iface.c | 14 ++++++++++
net/wireless/nl80211.c | 61 ++++++++++++++++++++++++++++++++++++++++++++
7 files changed, 134 insertions(+)
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index fc01de19c7981a906a5303899e7000d8193c60a8..b3ce45674e3004b592b95c4dc08ba53929f27908 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -5329,6 +5329,8 @@ struct cfg80211_ops {
* @WIPHY_FLAG_SUPPORTS_NSTR_NONPRIMARY: support connection to non-primary link
* of an NSTR mobile AP MLD.
* @WIPHY_FLAG_DISABLE_WEXT: disable wireless extensions for this device
+ * @WIPHY_FLAG_MLO_RECONF_ADV_OFFLOAD: The underly driver supports link
+ * reconfiguration countdown in hw.
*/
enum wiphy_flags {
WIPHY_FLAG_SUPPORTS_EXT_KEK_KCK = BIT(0),
@@ -5357,6 +5359,7 @@ enum wiphy_flags {
WIPHY_FLAG_HAS_CHANNEL_SWITCH = BIT(23),
WIPHY_FLAG_NOTIFY_REGDOM_BY_DRIVER = BIT(24),
WIPHY_FLAG_CHANNEL_CHANGE_ON_BEACON = BIT(25),
+ WIPHY_FLAG_MLO_RECONF_ADV_OFFLOAD = BIT(26),
};
/**
@@ -10314,6 +10317,16 @@ struct cfg80211_mlo_reconf_done_data {
void cfg80211_mlo_reconf_add_done(struct net_device *dev,
struct cfg80211_mlo_reconf_done_data *data);
+/**
+ * cfg80211_mlo_reconf_complete_notify - Notify about MLO reconfiguration
+ * countdown completion.
+ * @dev: network device.
+ * @link_bitmap: bitmap representing the links the driver was announcing in
+ * the Reconfiguration Multi-Link element.
+ */
+void cfg80211_mlo_reconf_complete_notify(struct net_device *dev,
+ u16 link_bitmap);
+
/**
* cfg80211_schedule_channels_check - schedule regulatory check if needed
* @wdev: the wireless device to check
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 7f9d96939a4ea715eea288a83aeb9a0aa863c8df..ced70e42c4a4db65c86bd8a43c8b42428663adf0 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -7801,6 +7801,19 @@ void
ieee80211_obss_color_collision_notify(struct ieee80211_vif *vif,
u64 color_bitmap, u8 link_id);
+
+/**
+ * ieee80211_mlo_reconf_complete_notify - notify userland about MLO
+ * link reconfiguration announcement completion.
+ *
+ * @vif: &struct ieee80211_vif pointer from the add_interface callback.
+ * @link_bitmap: bitmap representing the links the driver was announcing in
+ * the Reconfiguration Multi-Link element.
+ *
+ */
+void ieee80211_mlo_reconf_complete_notify(struct ieee80211_vif *vif,
+ u16 link_bitmap);
+
/**
* ieee80211_is_tx_data - check if frame is a data frame
*
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h
index b63f718509060dd4b7b59e2d6cc2aad280acaa22..5c7c80d5f1e5addb78e40514db8b30bbf6041fd4 100644
--- a/include/uapi/linux/nl80211.h
+++ b/include/uapi/linux/nl80211.h
@@ -1361,6 +1361,10 @@
* user space that the NAN new cluster has been joined. The cluster ID is
* indicated by %NL80211_ATTR_MAC.
*
+ * @NL80211_CMD_MLO_RECONF_ADV_OFFLOAD_EVENT: This command is used to notify
+ * user space the underlay driver has completed the MLO link
+ * reconfiguration announcement countdown.
+ *
* @NL80211_CMD_MAX: highest used command number
* @__NL80211_CMD_AFTER_LAST: internal use
*/
@@ -1624,6 +1628,8 @@ enum nl80211_commands {
NL80211_CMD_NAN_NEXT_DW_NOTIFICATION,
NL80211_CMD_NAN_CLUSTER_JOINED,
+ NL80211_CMD_MLO_RECONF_ADV_OFFLOAD_EVENT,
+
/* add new commands above here */
/* used to define NL80211_CMD_MAX below */
@@ -2984,6 +2990,10 @@ enum nl80211_commands {
* this feature during association. This is a flag attribute.
* Currently only supported in mac80211 drivers.
*
+ * @NL80211_ATTR_MLO_RECONF_ADV_OFFLOAD: Flag attribute to indicate user space
+ * the driver supports link reconfiguration countdown in hw when a link is
+ * removed.
+ *
* @NUM_NL80211_ATTR: total number of nl80211_attrs available
* @NL80211_ATTR_MAX: highest attribute number currently defined
* @__NL80211_ATTR_AFTER_LAST: internal use
@@ -3557,6 +3567,8 @@ enum nl80211_attrs {
NL80211_ATTR_UHR_CAPABILITY,
NL80211_ATTR_DISABLE_UHR,
+ NL80211_ATTR_MLO_RECONF_ADV_OFFLOAD,
+
/* add attributes here, update the policy in nl80211.c */
__NL80211_ATTR_AFTER_LAST,
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 5d04d7d550b0b0af2d84148317aa152ad5647986..b20086160fd8741450e0f863d93cc2cd6964470d 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -5318,6 +5318,22 @@ ieee80211_obss_color_collision_notify(struct ieee80211_vif *vif,
}
EXPORT_SYMBOL_GPL(ieee80211_obss_color_collision_notify);
+void ieee80211_mlo_reconf_complete_notify(struct ieee80211_vif *vif,
+ u16 link_bitmap)
+{
+ struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
+
+ if (vif->type != NL80211_IFTYPE_AP)
+ return;
+
+ if (test_and_set_bit(IEEE80211_IF_AP_RECONF_LINKS, &sdata->u.ap.flags))
+ return;
+
+ sdata->u.ap.reconf_links = link_bitmap;
+ wiphy_work_queue(sdata->local->hw.wiphy, &sdata->work);
+}
+EXPORT_SYMBOL_GPL(ieee80211_mlo_reconf_complete_notify);
+
static int
ieee80211_color_change(struct wiphy *wiphy, struct net_device *dev,
struct cfg80211_color_change_settings *params)
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
index e60b814dd89e03a5b6dd7537375b49246e5b78a5..74bc6311e430a2374afe790a7aa5686f5a62c351 100644
--- a/net/mac80211/ieee80211_i.h
+++ b/net/mac80211/ieee80211_i.h
@@ -325,6 +325,8 @@ struct ps_data {
int sb_count; /* num short beacons til next long beacon */
};
+#define IEEE80211_IF_AP_RECONF_LINKS BIT(0)
+
struct ieee80211_if_ap {
struct list_head vlans; /* write-protected with RTNL and local->mtx */
@@ -333,6 +335,9 @@ struct ieee80211_if_ap {
bool multicast_to_unicast;
bool active;
+
+ unsigned long flags;
+ u16 reconf_links;
};
struct ieee80211_if_vlan {
diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c
index 676b2a43c9f2f2de03f4dd3993bf5c0ba2de0d36..6cfee360b2e7bb08cf15be84a35a0825538725e3 100644
--- a/net/mac80211/iface.c
+++ b/net/mac80211/iface.c
@@ -1776,6 +1776,17 @@ static void ieee80211_iface_process_status(struct ieee80211_sub_if_data *sdata,
}
}
+static void ieee80211_ap_work(struct ieee80211_sub_if_data *sdata)
+{
+ if (!test_bit(IEEE80211_IF_AP_RECONF_LINKS, &sdata->u.ap.flags))
+ return;
+
+ cfg80211_mlo_reconf_complete_notify(sdata->dev,
+ sdata->u.ap.reconf_links);
+ sdata->u.ap.reconf_links = 0;
+ clear_bit(IEEE80211_IF_AP_RECONF_LINKS, &sdata->u.ap.flags);
+}
+
static void ieee80211_iface_work(struct wiphy *wiphy, struct wiphy_work *work)
{
struct ieee80211_sub_if_data *sdata =
@@ -1817,6 +1828,9 @@ static void ieee80211_iface_work(struct wiphy *wiphy, struct wiphy_work *work)
/* then other type-dependent work */
switch (sdata->vif.type) {
+ case NL80211_IFTYPE_AP:
+ ieee80211_ap_work(sdata);
+ break;
case NL80211_IFTYPE_STATION:
ieee80211_sta_work(sdata);
break;
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index 6e58b238a1f89323585607b05b25a954abc44ffe..fd670bfd61034a99f0537b2a529984661fb505e7 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -946,6 +946,7 @@ static const struct nla_policy nl80211_policy[NUM_NL80211_ATTR] = {
[NL80211_ATTR_UHR_CAPABILITY] =
NLA_POLICY_VALIDATE_FN(NLA_BINARY, validate_uhr_capa, 255),
[NL80211_ATTR_DISABLE_UHR] = { .type = NLA_FLAG },
+ [NL80211_ATTR_MLO_RECONF_ADV_OFFLOAD] = { .type = NLA_FLAG },
};
/* policy for the key attributes */
@@ -3338,6 +3339,9 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
rdev->wiphy.hw_timestamp_max_peers))
goto nla_put_failure;
+ if (rdev->wiphy.flags & WIPHY_FLAG_MLO_RECONF_ADV_OFFLOAD)
+ nla_put_flag(msg, NL80211_ATTR_MLO_RECONF_ADV_OFFLOAD);
+
state->split_start++;
break;
case 17:
@@ -20066,6 +20070,63 @@ void cfg80211_links_removed(struct net_device *dev, u16 link_mask)
}
EXPORT_SYMBOL(cfg80211_links_removed);
+void cfg80211_mlo_reconf_complete_notify(struct net_device *dev,
+ u16 link_bitmap)
+{
+ struct wireless_dev *wdev = dev->ieee80211_ptr;
+ struct wiphy *wiphy = wdev->wiphy;
+ struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
+ struct nlattr *links;
+ struct sk_buff *msg;
+ void *hdr;
+
+ if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP))
+ return;
+
+ msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
+ if (!msg)
+ return;
+
+ hdr = nl80211hdr_put(msg, 0, 0, 0,
+ NL80211_CMD_MLO_RECONF_ADV_OFFLOAD_EVENT);
+ if (!hdr)
+ goto nla_put_failure;
+
+ if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
+ nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
+ goto nla_put_failure;
+
+ links = nla_nest_start(msg, NL80211_ATTR_MLO_LINKS);
+ if (!links)
+ goto nla_put_failure;
+
+ while (link_bitmap) {
+ int link_id = __ffs(link_bitmap);
+ struct nlattr *link;
+
+ link = nla_nest_start(msg, link_id + 1);
+ if (!link)
+ goto nla_put_failure;
+
+ if (nla_put_u8(msg, NL80211_ATTR_MLO_LINK_ID, link_id))
+ goto nla_put_failure;
+
+ nla_nest_end(msg, link);
+ link_bitmap &= ~(1 << link_id);
+ }
+
+ nla_nest_end(msg, links);
+ genlmsg_end(msg, hdr);
+
+ genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
+ NL80211_MCGRP_MLME, GFP_KERNEL);
+ return;
+
+nla_put_failure:
+ nlmsg_free(msg);
+}
+EXPORT_SYMBOL_GPL(cfg80211_mlo_reconf_complete_notify);
+
void nl80211_mlo_reconf_add_done(struct net_device *dev,
struct cfg80211_mlo_reconf_done_data *data)
{
--
2.53.0
^ permalink raw reply related
* [PATCH RFC 0/2] Add the capability to offload MLO link reconfiguration countdown in the NIC fw
From: Lorenzo Bianconi @ 2026-02-11 23:38 UTC (permalink / raw)
To: Johannes Berg, Felix Fietkau, Ryder Lee, Shayne Chen, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno
Cc: Aditya Kumar Singh, Ping-Ke Shih, Jeff Johnson, linux-wireless,
linux-arm-kernel, linux-mediatek, Lorenzo Bianconi
Introduce the capability to offload the countdown for MLO link
reconfiguration IE if supported by the underlay driver/firmware.
The driver is supposed to set the WIPHY_FLAG_MLO_RECONF_ADV_OFFLOAD flag
to notify mac80211/hostapd it supports this capability in hw/fw.
Moreover, the driver is supposed to generate an event to notify
mac80211/hostapd when the countdown is completed.
---
Lorenzo Bianconi (1):
wifi: mac80211: Add the capability to offload MLO link reconfiguration countdown in the NIC fw
Shayne Chen (1):
wifi: mt76: mt7996: Add beacon_reconf IE parsing support
.../net/wireless/mediatek/mt76/mt76_connac_mcu.h | 5 +
drivers/net/wireless/mediatek/mt76/mt7996/init.c | 3 +-
drivers/net/wireless/mediatek/mt76/mt7996/mcu.c | 185 +++++++++++++++++++++
drivers/net/wireless/mediatek/mt76/mt7996/mcu.h | 69 +++++++-
include/net/cfg80211.h | 13 ++
include/net/mac80211.h | 13 ++
include/uapi/linux/nl80211.h | 12 ++
net/mac80211/cfg.c | 16 ++
net/mac80211/ieee80211_i.h | 5 +
net/mac80211/iface.c | 14 ++
net/wireless/nl80211.c | 61 +++++++
11 files changed, 394 insertions(+), 2 deletions(-)
---
base-commit: 4eefc435c985f4dfdba9afb1c705f0e17377c084
change-id: 20260204-mt7996-link-reconf-16596e5b8076
Best regards,
--
Lorenzo Bianconi <lorenzo@kernel.org>
^ permalink raw reply
* Re: [PATCH v4 2/2] dt-bindings: net: wireless: mt76: clarify backoff limit usage
From: Rob Herring (Arm) @ 2026-02-11 21:11 UTC (permalink / raw)
To: Ryder Lee
Cc: linux-wireless, linux-mediatek, Allen Ye, Felix Fietkau,
devicetree
In-Reply-To: <4111ba0734fc7818f899db0bea08e3428eb536d5.1770836705.git.ryder.lee@mediatek.com>
On Wed, 11 Feb 2026 11:14:30 -0800, Ryder Lee wrote:
> Clarify the usage of path backoff limit properties in mt76 binding.
> Add explicit documentation for old generation (mt7915, mt7916, mt7981,
> mt7986) and new generation (mt7990, mt7992, mt7996) devices, including
> the difference in beamforming and non-beamforming entries.
>
> Rephrase the paths-ru/paths-ru-bf description to reflect the actual
> usage.
>
> Co-developed-by: Allen Ye <allen.ye@mediatek.com>
> Signed-off-by: Allen Ye <allen.ye@mediatek.com>
> Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
> ---
> v1-v3: none
>
> v4:
> - revise commit message
> - use PCI id as the compatible string to replace "connac2/3"
> ---
> .../bindings/net/wireless/mediatek,mt76.yaml | 21 +++++++++++++++++++
> 1 file changed, 21 insertions(+)
>
My bot found errors running 'make dt_binding_check' on your patch:
yamllint warnings/errors:
./Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml:30:23: [error] missing starting space in comment (comments)
./Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml:31:23: [error] missing starting space in comment (comments)
./Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml:32:23: [error] missing starting space in comment (comments)
./Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml:33:23: [error] missing starting space in comment (comments)
./Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml:34:23: [error] missing starting space in comment (comments)
dtschema/dtc warnings/errors:
doc reference errors (make refcheckdocs):
See https://patchwork.kernel.org/project/devicetree/patch/4111ba0734fc7818f899db0bea08e3428eb536d5.1770836705.git.ryder.lee@mediatek.com
The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.
If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:
pip3 install dtschema --upgrade
Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.
^ permalink raw reply
* Re: [PULL linux-firmware] ath10k, ath11k and ath12k firmware ath-20260211
From: Dmitry Baryshkov @ 2026-02-11 19:34 UTC (permalink / raw)
To: Jeff Johnson
Cc: linux-firmware, linux-wireless, ath10k, ath11k, ath12k, jjohnson
In-Reply-To: <61ec2d75-38ec-4ee4-b447-3fbb723f59bc@oss.qualcomm.com>
On Wed, Feb 11, 2026 at 09:50:15AM -0800, Jeff Johnson wrote:
> The following changes since commit d87f4693ed96d0f3f6f16b0f09be42f3b8acb9e0:
>
> Merge branch 'robot/pr-0-1770665774' into 'main' (2026-02-09 20:06:30 +0000)
>
> are available in the Git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/ath/linux-firmware.git ath-20260211
>
> for you to fetch changes up to cbd0f9753754fd9605df129ff04b0c4b4fc82568:
>
> ath11k: WCN6855 hw2.0: update board-2.bin (2026-02-11 09:33:04 -0800)
Thanks, merged and pushed out:
https://gitlab.com/kernel-firmware/linux-firmware/-/merge_requests/916
>
> ----------------------------------------------------------------
> Hi,
> Here's a new pull request for ath10k, ath11k and ath12k.
>
> No updates for ath10k or ath12k
>
> For ath11k:
>
> Update board file for QCA6390 hw2.0 to support:
> bus=pci,qmi-chip-id=0,qmi-board-id=255,variant=Xiaomi_Pad_5Pro_5G
>
> Update board file for WCN6855 hw2.0/hw2.1 to support:
> bus=pci,vendor=17cb,device=1103,subsystem-vendor=17cb,subsystem-device=0108,qmi-chip-id=2,qmi-board-id=255,variant=HW_GK3
> bus=pci,vendor=17cb,device=1103,subsystem-vendor=17cb,subsystem-device=0108,qmi-chip-id=18,qmi-board-id=255,variant=NTM_TW220
>
> Please let me know if there are any problems.
>
> Thanks,
> /jeff
>
> ----------------------------------------------------------------
> Jeff Johnson (2):
> ath11k: QCA6390 hw2.0: update board-2.bin
> ath11k: WCN6855 hw2.0: update board-2.bin
>
> ath11k/QCA6390/hw2.0/board-2.bin | Bin 173980 -> 231980 bytes
> ath11k/WCN6855/hw2.0/board-2.bin | Bin 7117076 -> 7237392 bytes
> 2 files changed, 0 insertions(+), 0 deletions(-)
--
With best wishes
Dmitry
^ permalink raw reply
* Re: ath12k-firmware: WCN7850 hw2.0: update board-2.bin
From: Jeff Johnson @ 2026-02-11 19:34 UTC (permalink / raw)
To: Georg Gottleuber, linux-firmware
Cc: ath12k, linux-wireless, Dmitry Baryshkov, Ettore Chimenti,
Srinivas Kandagatla, Christoffer Sandberg, Werner Sembach
In-Reply-To: <59ed6306-28f8-478e-90fe-4a1b73ae3051@tuxedocomputers.com>
On 3/27/2025 9:13 AM, Georg Gottleuber wrote:
> Hi,
>
> here is a new version of the updates to board-2.bin for WCN7850 hw2.0.
> The content is identical. But this time according to the instructions.
>
> * hardware description:
>
> - M.2 QCNCM865 WI-FI 7 BT Combo-Modul
> - Qualcomm® FastConnect™ 7800 Mobile chipset
> - PCI Vendor/Device ID: 17cb:1107
> - PCI Subsystem: 1eac:8001
> - radio is for 2.4 GHz, 5 GHz, 6 GHz
> - Bluetooth
>
>
> * origin of the board file
>
> - extracted from board-2.bin from linux-firmware
> ath12k/WCN7850/hw2.0/board-2.bin:
> bus=pci,vendor=17cb,device=1107,subsystem-vendor=105b,subsystem-
> device=e10d,qmi-chip-id=2,qmi-board-id=255.bin
>
>
> * ids to be used with the board file:
>
> - just add an additional board string for
> bus=pci,vendor=17cb,device=1107,subsystem-vendor=105b,subsystem-device=e10d,qmi-chip-id=2,qmi-board-id=255.bin
> +
> bus=pci,vendor=17cb,device=1107,subsystem-vendor=1eac,subsystem-device=8001,qmi-chip-id=2,qmi-board-id=255
> sha256sum:
> 3ee7d3291e4121431b79adc28dc06f28f0cb12d415e79244061c9349a1328dec
>
>
> * attached is the already present file (out of board-2.bin)
>
>
> Tested with 2.4GHz, 5GHz and 6GHz (iperf3 -t30 --bidir)
>
> Best regards,
> Georg
>
Just want to document that this was handled by:
https://git.codelinaro.org/clo/ath-firmware/ath12k-firmware/-/commit/fd7ddeb46bb57736211092c426bf6cfb2e703281
With the associated linux-firmware pull request:
https://msgid.link/ecf412bd-7bd3-42ed-bea4-d7aa837ddcae@oss.qualcomm.com
^ permalink raw reply
* [PATCH v4 1/2] wifi: mt76: fix backoff fields and max_power calculation
From: Ryder Lee @ 2026-02-11 19:14 UTC (permalink / raw)
To: Felix Fietkau, Rob Herring
Cc: devicetree, linux-mediatek, linux-wireless, Allen Ye, Ryder Lee
From: Allen Ye <allen.ye@mediatek.com>
The maximum power value may exist in either the data or backoff field.
Previously, backoff power limits were not considered in txpower reporting.
This patch ensures mt76 also considers backoff values in the SKU table.
Also, each RU entry (RU26, RU52, RU106, BW20, ...) in the DTS corresponds
to 10 stream combinations (1T1ss, 2T1ss, 3T1ss, 4T1ss, 2T2ss, 3T2ss,
4T2ss, 3T3ss, 4T3ss, 4T4ss).
For beamforming tables:
- In connac2, beamforming entries for BW20~BW160, and OFDM do not include
1T1ss.
- In connac3 (mt799x), beamforming entries for BW20~BW160, and RU include
1T1ss, but OFDM beamforming does not include 1T1ss.
Non-beamforming and RU entries for both connac2 and connac3 include 1T1ss.
Fixes: b05ab4be9fd7 ("wifi: mt76: mt7915: add bf backoff limit table support")
Signed-off-by: Allen Ye <allen.ye@mediatek.com>
Co-developed-by: Ryder Lee <ryder.lee@mediatek.com>
Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
---
v1:
- Add "wifi:" prefix to the subject.
v2:
- Fix checkpatch errors.
- Remove unnecessary style changes.
- Add explanation for connac2 index adjustment.
v3:
- Fix "case"s for MT76_SKU_BACKOFF_BF_OFFSET and MT76_SKU_BACKOFF.
- add more explanation for connac2/connac3 tables.
v4: none
---
drivers/net/wireless/mediatek/mt76/eeprom.c | 154 ++++++++++++++------
drivers/net/wireless/mediatek/mt76/mt76.h | 1 -
2 files changed, 109 insertions(+), 46 deletions(-)
diff --git a/drivers/net/wireless/mediatek/mt76/eeprom.c b/drivers/net/wireless/mediatek/mt76/eeprom.c
index 573400d57..afdb73661 100644
--- a/drivers/net/wireless/mediatek/mt76/eeprom.c
+++ b/drivers/net/wireless/mediatek/mt76/eeprom.c
@@ -9,6 +9,13 @@
#include <linux/nvmem-consumer.h>
#include <linux/etherdevice.h>
#include "mt76.h"
+#include "mt76_connac.h"
+
+enum mt76_sku_type {
+ MT76_SKU_RATE,
+ MT76_SKU_BACKOFF,
+ MT76_SKU_BACKOFF_BF_OFFSET,
+};
static int mt76_get_of_eeprom_data(struct mt76_dev *dev, void *eep, int len)
{
@@ -292,7 +299,6 @@ mt76_find_channel_node(struct device_node *np, struct ieee80211_channel *chan)
}
EXPORT_SYMBOL_GPL(mt76_find_channel_node);
-
static s8
mt76_get_txs_delta(struct device_node *np, u8 nss)
{
@@ -306,9 +312,24 @@ mt76_get_txs_delta(struct device_node *np, u8 nss)
return be32_to_cpu(val[nss - 1]);
}
+static inline u8 mt76_backoff_n_chains(struct mt76_dev *dev, u8 idx)
+{
+ /* 0:1T1ss, 1:2T1ss, ..., 14:5T5ss */
+ static const u8 connac3_table[] = {
+ 1, 2, 3, 4, 5, 2, 3, 4, 5, 3, 4, 5, 4, 5, 5};
+ static const u8 connac2_table[] = {
+ 1, 2, 3, 4, 2, 3, 4, 3, 4, 4, 0, 0, 0, 0, 0};
+
+ if (idx >= ARRAY_SIZE(connac3_table))
+ return 0;
+
+ return is_mt799x(dev) ? connac3_table[idx] : connac2_table[idx];
+}
+
static void
-mt76_apply_array_limit(s8 *pwr, size_t pwr_len, const s8 *data,
- s8 target_power, s8 nss_delta, s8 *max_power)
+mt76_apply_array_limit(struct mt76_dev *dev, s8 *pwr, size_t pwr_len,
+ const s8 *data, s8 target_power, s8 nss_delta,
+ s8 *max_power, int n_chains, enum mt76_sku_type type)
{
int i;
@@ -316,18 +337,51 @@ mt76_apply_array_limit(s8 *pwr, size_t pwr_len, const s8 *data,
return;
for (i = 0; i < pwr_len; i++) {
- pwr[i] = min_t(s8, target_power, data[i] + nss_delta);
+ u8 backoff_chain_idx = i;
+ int backoff_n_chains;
+ s8 backoff_delta;
+ s8 delta;
+
+ switch (type) {
+ case MT76_SKU_RATE:
+ delta = 0;
+ backoff_delta = 0;
+ backoff_n_chains = 0;
+ break;
+ case MT76_SKU_BACKOFF_BF_OFFSET:
+ backoff_chain_idx += 1;
+ fallthrough;
+ case MT76_SKU_BACKOFF:
+ delta = mt76_tx_power_path_delta(n_chains);
+ backoff_n_chains = mt76_backoff_n_chains(dev, backoff_chain_idx);
+ backoff_delta = mt76_tx_power_path_delta(backoff_n_chains);
+ break;
+ default:
+ return;
+ }
+
+ pwr[i] = min_t(s8, target_power + delta - backoff_delta, data[i] + nss_delta);
+
+ /* used for padding, doesn't need to be considered */
+ if (data[i] >= S8_MAX - 1)
+ continue;
+
+ /* only consider backoff value for the configured chain number */
+ if (type != MT76_SKU_RATE && n_chains != backoff_n_chains)
+ continue;
+
*max_power = max(*max_power, pwr[i]);
}
}
static void
-mt76_apply_multi_array_limit(s8 *pwr, size_t pwr_len, s8 pwr_num,
- const s8 *data, size_t len, s8 target_power,
- s8 nss_delta)
+mt76_apply_multi_array_limit(struct mt76_dev *dev, s8 *pwr, size_t pwr_len,
+ s8 pwr_num, const s8 *data, size_t len,
+ s8 target_power, s8 nss_delta, s8 *max_power,
+ int n_chains, enum mt76_sku_type type)
{
+ static const int connac2_backoff_ru_idx = 2;
int i, cur;
- s8 max_power = -128;
if (!data)
return;
@@ -337,8 +391,26 @@ mt76_apply_multi_array_limit(s8 *pwr, size_t pwr_len, s8 pwr_num,
if (len < pwr_len + 1)
break;
- mt76_apply_array_limit(pwr + pwr_len * i, pwr_len, data + 1,
- target_power, nss_delta, &max_power);
+ /* Each RU entry (RU26, RU52, RU106, BW20, ...) in the DTS
+ * corresponds to 10 stream combinations (1T1ss, 2T1ss, 3T1ss,
+ * 4T1ss, 2T2ss, 3T2ss, 4T2ss, 3T3ss, 4T3ss, 4T4ss).
+ *
+ * For beamforming tables:
+ * - In connac2, beamforming entries for BW20~BW160 and OFDM
+ * do not include 1T1ss.
+ * - In connac3, beamforming entries for BW20~BW160 and RU
+ * include 1T1ss, but OFDM beamforming does not include 1T1ss.
+ *
+ * Non-beamforming and RU entries for both connac2 and connac3
+ * include 1T1ss.
+ */
+ if (!is_mt799x(dev) && type == MT76_SKU_BACKOFF &&
+ i > connac2_backoff_ru_idx)
+ type = MT76_SKU_BACKOFF_BF_OFFSET;
+
+ mt76_apply_array_limit(dev, pwr + pwr_len * i, pwr_len, data + 1,
+ target_power, nss_delta, max_power,
+ n_chains, type);
if (--cur > 0)
continue;
@@ -360,18 +432,11 @@ s8 mt76_get_rate_power_limits(struct mt76_phy *phy,
struct device_node *np;
const s8 *val;
char name[16];
- u32 mcs_rates = dev->drv->mcs_rates;
- u32 ru_rates = ARRAY_SIZE(dest->ru[0]);
char band;
size_t len;
- s8 max_power = 0;
- s8 max_power_backoff = -127;
+ s8 max_power = -127;
s8 txs_delta;
int n_chains = hweight16(phy->chainmask);
- s8 target_power_combine = target_power + mt76_tx_power_path_delta(n_chains);
-
- if (!mcs_rates)
- mcs_rates = 10;
memset(dest, target_power, sizeof(*dest) - sizeof(dest->path));
memset(&dest->path, 0, sizeof(dest->path));
@@ -409,46 +474,45 @@ s8 mt76_get_rate_power_limits(struct mt76_phy *phy,
txs_delta = mt76_get_txs_delta(np, hweight16(phy->chainmask));
val = mt76_get_of_array_s8(np, "rates-cck", &len, ARRAY_SIZE(dest->cck));
- mt76_apply_array_limit(dest->cck, ARRAY_SIZE(dest->cck), val,
- target_power, txs_delta, &max_power);
+ mt76_apply_array_limit(dev, dest->cck, ARRAY_SIZE(dest->cck), val,
+ target_power, txs_delta, &max_power, n_chains, MT76_SKU_RATE);
- val = mt76_get_of_array_s8(np, "rates-ofdm",
- &len, ARRAY_SIZE(dest->ofdm));
- mt76_apply_array_limit(dest->ofdm, ARRAY_SIZE(dest->ofdm), val,
- target_power, txs_delta, &max_power);
+ val = mt76_get_of_array_s8(np, "rates-ofdm", &len, ARRAY_SIZE(dest->ofdm));
+ mt76_apply_array_limit(dev, dest->ofdm, ARRAY_SIZE(dest->ofdm), val,
+ target_power, txs_delta, &max_power, n_chains, MT76_SKU_RATE);
- val = mt76_get_of_array_s8(np, "rates-mcs", &len, mcs_rates + 1);
- mt76_apply_multi_array_limit(dest->mcs[0], ARRAY_SIZE(dest->mcs[0]),
- ARRAY_SIZE(dest->mcs), val, len,
- target_power, txs_delta);
+ val = mt76_get_of_array_s8(np, "rates-mcs", &len, ARRAY_SIZE(dest->mcs[0]) + 1);
+ mt76_apply_multi_array_limit(dev, dest->mcs[0], ARRAY_SIZE(dest->mcs[0]),
+ ARRAY_SIZE(dest->mcs), val, len, target_power,
+ txs_delta, &max_power, n_chains, MT76_SKU_RATE);
- val = mt76_get_of_array_s8(np, "rates-ru", &len, ru_rates + 1);
- mt76_apply_multi_array_limit(dest->ru[0], ARRAY_SIZE(dest->ru[0]),
- ARRAY_SIZE(dest->ru), val, len,
- target_power, txs_delta);
+ val = mt76_get_of_array_s8(np, "rates-ru", &len, ARRAY_SIZE(dest->ru[0]) + 1);
+ mt76_apply_multi_array_limit(dev, dest->ru[0], ARRAY_SIZE(dest->ru[0]),
+ ARRAY_SIZE(dest->ru), val, len, target_power,
+ txs_delta, &max_power, n_chains, MT76_SKU_RATE);
- max_power_backoff = max_power;
val = mt76_get_of_array_s8(np, "paths-cck", &len, ARRAY_SIZE(dest->path.cck));
- mt76_apply_array_limit(dest->path.cck, ARRAY_SIZE(dest->path.cck), val,
- target_power_combine, txs_delta, &max_power_backoff);
+ mt76_apply_array_limit(dev, dest->path.cck, ARRAY_SIZE(dest->path.cck), val,
+ target_power, txs_delta, &max_power, n_chains, MT76_SKU_BACKOFF);
val = mt76_get_of_array_s8(np, "paths-ofdm", &len, ARRAY_SIZE(dest->path.ofdm));
- mt76_apply_array_limit(dest->path.ofdm, ARRAY_SIZE(dest->path.ofdm), val,
- target_power_combine, txs_delta, &max_power_backoff);
+ mt76_apply_array_limit(dev, dest->path.ofdm, ARRAY_SIZE(dest->path.ofdm), val,
+ target_power, txs_delta, &max_power, n_chains, MT76_SKU_BACKOFF);
val = mt76_get_of_array_s8(np, "paths-ofdm-bf", &len, ARRAY_SIZE(dest->path.ofdm_bf));
- mt76_apply_array_limit(dest->path.ofdm_bf, ARRAY_SIZE(dest->path.ofdm_bf), val,
- target_power_combine, txs_delta, &max_power_backoff);
+ mt76_apply_array_limit(dev, dest->path.ofdm_bf, ARRAY_SIZE(dest->path.ofdm_bf), val,
+ target_power, txs_delta, &max_power, n_chains,
+ MT76_SKU_BACKOFF_BF_OFFSET);
val = mt76_get_of_array_s8(np, "paths-ru", &len, ARRAY_SIZE(dest->path.ru[0]) + 1);
- mt76_apply_multi_array_limit(dest->path.ru[0], ARRAY_SIZE(dest->path.ru[0]),
- ARRAY_SIZE(dest->path.ru), val, len,
- target_power_combine, txs_delta);
+ mt76_apply_multi_array_limit(dev, dest->path.ru[0], ARRAY_SIZE(dest->path.ru[0]),
+ ARRAY_SIZE(dest->path.ru), val, len, target_power,
+ txs_delta, &max_power, n_chains, MT76_SKU_BACKOFF);
val = mt76_get_of_array_s8(np, "paths-ru-bf", &len, ARRAY_SIZE(dest->path.ru_bf[0]) + 1);
- mt76_apply_multi_array_limit(dest->path.ru_bf[0], ARRAY_SIZE(dest->path.ru_bf[0]),
- ARRAY_SIZE(dest->path.ru_bf), val, len,
- target_power_combine, txs_delta);
+ mt76_apply_multi_array_limit(dev, dest->path.ru_bf[0], ARRAY_SIZE(dest->path.ru_bf[0]),
+ ARRAY_SIZE(dest->path.ru_bf), val, len, target_power,
+ txs_delta, &max_power, n_chains, MT76_SKU_BACKOFF);
return max_power;
}
diff --git a/drivers/net/wireless/mediatek/mt76/mt76.h b/drivers/net/wireless/mediatek/mt76/mt76.h
index d05e83ea1..32876eab2 100644
--- a/drivers/net/wireless/mediatek/mt76/mt76.h
+++ b/drivers/net/wireless/mediatek/mt76/mt76.h
@@ -540,7 +540,6 @@ struct mt76_driver_ops {
u32 survey_flags;
u16 txwi_size;
u16 token_size;
- u8 mcs_rates;
unsigned int link_data_size;
--
2.45.2
^ permalink raw reply related
* [PATCH v4 2/2] dt-bindings: net: wireless: mt76: clarify backoff limit usage
From: Ryder Lee @ 2026-02-11 19:14 UTC (permalink / raw)
To: Felix Fietkau, Rob Herring
Cc: devicetree, linux-mediatek, linux-wireless, Ryder Lee, Allen Ye
In-Reply-To: <8fa8ec500b3d4de7b1966c6887f1dfbe5c46a54c.1770836705.git.ryder.lee@mediatek.com>
Clarify the usage of path backoff limit properties in mt76 binding.
Add explicit documentation for old generation (mt7915, mt7916, mt7981,
mt7986) and new generation (mt7990, mt7992, mt7996) devices, including
the difference in beamforming and non-beamforming entries.
Rephrase the paths-ru/paths-ru-bf description to reflect the actual
usage.
Co-developed-by: Allen Ye <allen.ye@mediatek.com>
Signed-off-by: Allen Ye <allen.ye@mediatek.com>
Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
---
v1-v3: none
v4:
- revise commit message
- use PCI id as the compatible string to replace "connac2/3"
---
.../bindings/net/wireless/mediatek,mt76.yaml | 21 +++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml b/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
index ae6b97cdc..ccb31cf76 100644
--- a/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
+++ b/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
@@ -27,6 +27,11 @@ properties:
- mediatek,mt7622-wmac
- mediatek,mt7981-wmac
- mediatek,mt7986-wmac
+ - pci14c3,7915 #mt7915
+ - pci14c3,7906 #mt7916
+ - pci14c3,7990 #mt7996
+ - pci14c3,7992 #mt7992
+ - pci14c3,7993 #mt7990
reg:
minItems: 1
@@ -252,6 +257,14 @@ properties:
followed by 10 power limit values. The order of the
channel resource unit settings is RU26, RU52, RU106,
RU242/SU20, RU484/SU40, RU996/SU80 and RU2x996/SU160.
+ - For mt7981/mt7986/mt7915/mt7916
+ - Beamforming entries for BW20~BW160 and OFDM do not
+ include 1T1ss.
+ - When 1T1ss is not used, it should be filled with 0.
+ - For mt7996/mt7992/mt7990
+ - Beamforming entries for BW20~BW160 and RU include
+ 1T1ss, but OFDM does not include 1T1ss.
+ - 1T1ss is taken into account, so no need to fill with 0.
minItems: 1
maxItems: 7
items:
@@ -270,6 +283,14 @@ properties:
followed by 10 power limit values. The order of the
channel resource unit settings is RU26, RU52, RU106,
RU242/SU20, RU484/SU40, RU996/SU80 and RU2x996/SU160.
+ - For mt7981/mt7986/mt7915/mt7916
+ - Beamforming entries for BW20~BW160 and OFDM do not
+ include 1T1ss.
+ - When 1T1ss is not used, it should be filled with 0.
+ - For mt7996/mt7992/mt7990
+ - Beamforming entries for BW20~BW160 and RU include
+ 1T1ss, but OFDM does not include 1T1ss.
+ - 1T1ss is taken into account, so no need to fill with 0.
minItems: 1
maxItems: 7
items:
--
2.45.2
^ permalink raw reply related
* [PULL linux-firmware] ath10k, ath11k and ath12k firmware ath-20260211
From: Jeff Johnson @ 2026-02-11 17:50 UTC (permalink / raw)
To: linux-firmware; +Cc: linux-wireless, ath10k, ath11k, ath12k, jjohnson
The following changes since commit d87f4693ed96d0f3f6f16b0f09be42f3b8acb9e0:
Merge branch 'robot/pr-0-1770665774' into 'main' (2026-02-09 20:06:30 +0000)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/ath/linux-firmware.git ath-20260211
for you to fetch changes up to cbd0f9753754fd9605df129ff04b0c4b4fc82568:
ath11k: WCN6855 hw2.0: update board-2.bin (2026-02-11 09:33:04 -0800)
----------------------------------------------------------------
Hi,
Here's a new pull request for ath10k, ath11k and ath12k.
No updates for ath10k or ath12k
For ath11k:
Update board file for QCA6390 hw2.0 to support:
bus=pci,qmi-chip-id=0,qmi-board-id=255,variant=Xiaomi_Pad_5Pro_5G
Update board file for WCN6855 hw2.0/hw2.1 to support:
bus=pci,vendor=17cb,device=1103,subsystem-vendor=17cb,subsystem-device=0108,qmi-chip-id=2,qmi-board-id=255,variant=HW_GK3
bus=pci,vendor=17cb,device=1103,subsystem-vendor=17cb,subsystem-device=0108,qmi-chip-id=18,qmi-board-id=255,variant=NTM_TW220
Please let me know if there are any problems.
Thanks,
/jeff
----------------------------------------------------------------
Jeff Johnson (2):
ath11k: QCA6390 hw2.0: update board-2.bin
ath11k: WCN6855 hw2.0: update board-2.bin
ath11k/QCA6390/hw2.0/board-2.bin | Bin 173980 -> 231980 bytes
ath11k/WCN6855/hw2.0/board-2.bin | Bin 7117076 -> 7237392 bytes
2 files changed, 0 insertions(+), 0 deletions(-)
^ permalink raw reply
* Re: [PATCH v3 2/2] dt-bindings: net: wireless: mt76: clarify backoff limit format
From: Ryder Lee @ 2026-02-11 16:26 UTC (permalink / raw)
To: wenst@chromium.org
Cc: robh@kernel.org, nbd@nbd.name, linux-mediatek@lists.infradead.org,
devicetree@vger.kernel.org, Allen Ye (葉芷勳),
krzk@kernel.org, linux-wireless@vger.kernel.org
In-Reply-To: <CAGXv+5E=REdz0g8rfi7+KvyC7jLXO0q=yjan3mMTGtxe0NgCDQ@mail.gmail.com>
On Wed, 2026-02-11 at 17:52 +0800, Chen-Yu Tsai wrote:
> On Wed, Feb 11, 2026 at 5:19 PM Ryder Lee <Ryder.Lee@mediatek.com>
> wrote:
> >
> > On Wed, 2026-02-11 at 10:08 +0100, Krzysztof Kozlowski wrote:
> > > On 11/02/2026 09:59, Ryder Lee wrote:
> > > > On Wed, 2026-02-11 at 09:41 +0100, Krzysztof Kozlowski wrote:
> > > > > On 11/02/2026 09:33, Ryder Lee wrote:
> > > > > > > > > Why this cannot be a schema?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > Well, actually, it's already a schema. This is just an
> > > > > > > > expanded
> > > > > > >
> > > > > > > Where exactly?
> > > > > > >
> > > > > >
> > > > > > How 1T1ss is used across different generations is what my
> > > > > > example
> > > > > > above
> > > > > > was talking about.
> > > > >
> > > > > Where exactly it is already a schema? Please point me line
> > > > > encoding
> > > > > this.
> > > > >
> > > > >
> > > > line 243 paths-ru
> > > > line 261 paths-ru-bf
> > >
> > > I do not see there anything like you wrote here. You just list
> > > all of
> > > them, no device constraints.
> > >
> > > Best regards,
> > > Krzysztof
> > >
> >
> > The original schema is a broad description. Now a reviewer want me
> > to
> > describe the differences for various connected devices, but I don’t
> > know how to add a compatible string for PCIe, USB, or even SDIO
> > devices
> > for their constraints. So I used the driver’s generation name...
> > can I
> > just write “mt7996”? Or do I need a complete and meaningful
> > compatible
> > string?
>
> You can fill in the PCI or USB IDs as the compatible string.
>
> See for example
> - Documentation/devicetree/bindings/net/wireless/brcm,bcm4329-
> fmac.yaml
> - Documentation/devicetree/bindings/net/wireless/brcm,bcm4329-
> fmac.yaml
> - Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
Oh, I see. These examples are really helpful. I’ll add the PCI IDs and
replace the original connac2/3 patch with these PCI IDs.
>
> There's no equivalent for SDIO, so they just have separate
> compatibles.
> The bcm4329-fmac binding also has examples of these.
>
> If the hardware has something like a chip ID register, then you can
> have a common fallback string. At the extreme end of this is the ARM
> Mali bindings, which just have one compatible string for the core GPU
> as the fallback, and per platform/SoC compatibles to cover the glue
> layer:
>
> - Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml
>
>
> ChenYu
>
Ryder
^ permalink raw reply
* Re: [PATCH wireless-next v8 2/3] wifi: cfg80211: add initial UHR support
From: Johannes Berg @ 2026-02-11 14:19 UTC (permalink / raw)
To: linux-wireless; +Cc: Karthikeyan Kathirvel
In-Reply-To: <20260130164259.54cc12fbb307.I26126bebd83c7ab17e99827489f946ceabb3521f@changeid>
On Fri, 2026-01-30 at 16:21 +0100, Johannes Berg wrote:
>
> @@ -6462,6 +6486,17 @@ static int nl80211_calculate_ap_params(struct cfg80211_ap_settings *params)
> cap->datalen - 1))
> return -EINVAL;
> }
> +
> + cap = cfg80211_find_ext_elem(WLAN_EID_EXT_UHR_OPER, ies, ies_len);
> + if (cap) {
> + if (!cap->datalen)
> + return -EINVAL;
> + params->uhr_oper = (void *)(cap->data + 1);
> + if (!ieee80211_uhr_oper_size_ok((const u8 *)params->uhr_oper,
> + cap->datalen - 1, true))
> + return -EINVAL;
> + }
> +
OK, I just basically copied this from EHT, but it's useless. Due to the
reduced information in the beacon, we don't really have anything here
(such as NPCA timings.)
Should we add a separate netlink attribute for the UHR operation, which
hostapd would fill with the _full_ data like it appears in association
response etc.?
That way, hostapd doesn't need to build a separate data/attribute
structure but can just use hostapd_eid_uhr_operation(..., false) for it.
An alternative would be to add more attributes for everything, but it's
probably more complicated on both sides?
johannes
^ permalink raw reply
* Re: [PATCH v9 00/21] wifi: nxpwifi: create nxpwifi to support
From: jeff.chen_1 @ 2026-02-11 13:37 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Johannes Berg, linux-wireless, linux-kernel, briannorris,
francesco, s.hauer
In-Reply-To: <b1d9bc37-6078-4240-8b06-cfdc435eadd0@kernel.org>
On Wed, Feb 11, 2026 at 10:42:27 AM +0100, Krzysztof Kozlowski wrote:
> Huh, what? No, since when? Read docs in the kernel, it's complete
> misinterpretation of kernel development model.
>
> Reach to other people in NXP to guide you through basic submission
> guidelines, so you won't be upstreaming 10 year old poor code (like last
> version) or doing such trivial mistakes. They would tell you what you
> have to do.
>
>
> > and optional OF handling, but SDIO bring-up does not depend on any DT
> > properties — enumeration is via SDIO VID/PID and the driver works without a
>
> That's not true. Look at your code - you have OF calls.
>
>
> > binding.
> >
> > The plan is to submit the binding YAML (and any DT properties we actually need,
> > e.g. OOB wake IRQ/regulators) as a separate patchset to the DT maintainers so
>
> This is not how it works. We won't be reviewing DT submission separate
> from wireless subsystem / maintainers.
>
>
> Best regards,
> Krzysztof
>
Understood — thanks for pointing this out. My interpretation of the DT
submission workflow was incorrect. Keeping OF code while dropping the
binding is not acceptable, regardless of intent.
I will remove all remaining DT/OF usage in the next revision so the driver
is fully independent of DT. If DT support becomes necessary later, I will
submit both the bindings and the driver-side DT code together in a single
series, following the expected process.
Please let me know if this is the correct direction for the next revision.
thanks and regards,
jeff
^ permalink raw reply
* Re: [PATCH v9 12/21] wifi: nxpwifi: introduce command and event handling infrastructure
From: Jeff Chen @ 2026-02-11 13:26 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: linux-wireless, linux-kernel, briannorris, johannes, francesco,
s.hauer
In-Reply-To: <372f8174-f719-477a-b7a6-6b833f906c9e@kernel.org>
On Wed, Feb 11, 2026 at 10:39:03 AM +0100, Krzysztof Kozlowski wrote:
> On 04/02/2026 19:03, Jeff Chen wrote:
> > +
> > + /*
> > + * Download calibration data to firmware.
> > + * The cal-data can be read from device tree and/or
> > + * a configuration file and downloaded to firmware.
> > + */
> > + if (adapter->dt_node) {
> > + if (of_property_read_u32(adapter->dt_node,
> > + "nxp,wakeup-pin",
>
> Don't sneak in ABI. This is not acceptable.
>
> NAK
>
>
> Best regards,
> Krzysztof
>
Acknowledged. This was not intentional — the DT property access was left
over from earlier bring-up work and should not appear in the upstream
submission without a proper binding. Thanks for pointing this out; I will
correct it in the next revision.
regards,
jeff
^ permalink raw reply
* Re: [PATCH v9 18/21] wifi: nxpwifi: add core driver implementation
From: Jeff Chen @ 2026-02-11 13:18 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: linux-wireless, linux-kernel, briannorris, johannes, francesco,
s.hauer
In-Reply-To: <57439b2a-f606-4ee5-9287-72c40bd726e8@kernel.org>
On Wed, Feb 11, 2026 at 10:36:22 AM +0100, Krzysztof Kozlowski wrote:
Hi Krzysztof,
Thanks for the review.
>
> Please do not use "This commit/patch/change", but imperative mood. See
> longer explanation here:
> https://elixir.bootlin.com/linux/v6.16/source/Documentation/process/submitting-patches.rst#L94
>
I will update the commit message to use imperative mood as recommended in
the documentation.
> > +
> > + /* Notify PM core we are wakeup source */
> > + pm_wakeup_event(adapter->dev, 0);
> > + pm_system_wakeup();
> > +
> > + return IRQ_HANDLED;
> > +}
> > +
> > +static void nxpwifi_probe_of(struct nxpwifi_adapter *adapter)
>
> NAK, you removed DT support thus cannot keep undocumented ABI.
Understood, and thanks for pointing this out.
>
>
> > +{
> > + int ret;
> > + struct device *dev = adapter->dev;
> > +
> > + if (!dev->of_node)
> > + goto err_exit;
> > +
> > + adapter->dt_node = dev->of_node;
>
> NAK
>
regards,
jeff
^ permalink raw reply
* [syzbot] [wireless?] KASAN: slab-out-of-bounds Read in ieee80211_ie_split_ric (2)
From: syzbot @ 2026-02-11 11:53 UTC (permalink / raw)
To: johannes, linux-kernel, linux-wireless, netdev, syzkaller-bugs
Hello,
syzbot found the following issue on:
HEAD commit: 5d41f95f5d0b dpll: zl3073x: Fix output pin phase adjustmen..
git tree: net
console output: https://syzkaller.appspot.com/x/log.txt?x=16b43d3a580000
kernel config: https://syzkaller.appspot.com/x/.config?x=e3161cabe5a361ff
dashboard link: https://syzkaller.appspot.com/bug?extid=1d7461ceeccc7e92d309
compiler: Debian clang version 21.1.8 (++20251221033036+2078da43e25a-1~exp1~20251221153213.50), Debian LLD 21.1.8
Unfortunately, I don't have any reproducer for this issue yet.
Downloadable assets:
disk image: https://storage.googleapis.com/syzbot-assets/182b4bb52a10/disk-5d41f95f.raw.xz
vmlinux: https://storage.googleapis.com/syzbot-assets/4a86438e761e/vmlinux-5d41f95f.xz
kernel image: https://storage.googleapis.com/syzbot-assets/29465cf28ab1/bzImage-5d41f95f.xz
IMPORTANT: if you fix the issue, please add the following tag to the commit:
Reported-by: syzbot+1d7461ceeccc7e92d309@syzkaller.appspotmail.com
==================================================================
BUG: KASAN: slab-out-of-bounds in skip_ie net/wireless/util.c:1967 [inline]
BUG: KASAN: slab-out-of-bounds in ieee80211_ie_split_ric+0x8fa/0x950 net/wireless/util.c:-1
Read of size 1 at addr ffff88802946afa1 by task syz.3.11380/15499
CPU: 0 UID: 0 PID: 15499 Comm: syz.3.11380 Not tainted syzkaller #0 PREEMPT(full)
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/24/2026
Call Trace:
<TASK>
dump_stack_lvl+0xe8/0x150 lib/dump_stack.c:120
print_address_description mm/kasan/report.c:378 [inline]
print_report+0xba/0x230 mm/kasan/report.c:482
kasan_report+0x117/0x150 mm/kasan/report.c:595
skip_ie net/wireless/util.c:1967 [inline]
ieee80211_ie_split_ric+0x8fa/0x950 net/wireless/util.c:-1
ieee80211_ie_split include/net/cfg80211.h:9693 [inline]
cfg80211_sme_get_conn_ies net/wireless/sme.c:529 [inline]
cfg80211_sme_connect net/wireless/sme.c:586 [inline]
cfg80211_connect+0x11f8/0x2140 net/wireless/sme.c:1527
cfg80211_mgd_wext_connect+0x4a0/0x5f0 net/wireless/wext-sme.c:57
cfg80211_wext_siwessid+0xc4/0x160 net/wireless/wext-compat.c:1412
ioctl_standard_iw_point+0x6cd/0xd90 net/wireless/wext-core.c:865
ioctl_standard_call+0xaf/0x1b0 net/wireless/wext-core.c:1050
wireless_process_ioctl net/wireless/wext-core.c:-1 [inline]
wext_ioctl_dispatch+0xee/0x410 net/wireless/wext-core.c:1014
wext_handle_ioctl+0x10f/0x1d0 net/wireless/wext-core.c:1075
sock_ioctl+0x159/0x7f0 net/socket.c:1307
vfs_ioctl fs/ioctl.c:51 [inline]
__do_sys_ioctl fs/ioctl.c:597 [inline]
__se_sys_ioctl+0xfc/0x170 fs/ioctl.c:583
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0xe2/0xf80 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
RIP: 0033:0x7fa2c219aeb9
Code: ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 c7 c1 e8 ff ff ff f7 d8 64 89 01 48
RSP: 002b:00007fa2c307b028 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
RAX: ffffffffffffffda RBX: 00007fa2c2415fa0 RCX: 00007fa2c219aeb9
RDX: 0000200000000040 RSI: 0000000000008b1a RDI: 0000000000000005
RBP: 00007fa2c2208c1f R08: 0000000000000000 R09: 0000000000000000
R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
R13: 00007fa2c2416038 R14: 00007fa2c2415fa0 R15: 00007ffd00308408
</TASK>
Allocated by task 5139:
kasan_save_stack mm/kasan/common.c:57 [inline]
kasan_save_track+0x3e/0x80 mm/kasan/common.c:78
poison_kmalloc_redzone mm/kasan/common.c:398 [inline]
__kasan_kmalloc+0x93/0xb0 mm/kasan/common.c:415
kasan_kmalloc include/linux/kasan.h:263 [inline]
__do_kmalloc_node mm/slub.c:5657 [inline]
__kmalloc_node_track_caller_noprof+0x558/0x7f0 mm/slub.c:5768
kmemdup_noprof+0x2b/0x70 mm/util.c:138
kmemdup_noprof include/linux/fortify-string.h:765 [inline]
cfg80211_wext_siwgenie+0x1ad/0x320 net/wireless/wext-sme.c:322
ioctl_standard_iw_point+0x6cd/0xd90 net/wireless/wext-core.c:865
ioctl_standard_call+0xaf/0x1b0 net/wireless/wext-core.c:1050
wireless_process_ioctl net/wireless/wext-core.c:-1 [inline]
wext_ioctl_dispatch+0xee/0x410 net/wireless/wext-core.c:1014
wext_handle_ioctl+0x10f/0x1d0 net/wireless/wext-core.c:1075
sock_ioctl+0x159/0x7f0 net/socket.c:1307
vfs_ioctl fs/ioctl.c:51 [inline]
__do_sys_ioctl fs/ioctl.c:597 [inline]
__se_sys_ioctl+0xfc/0x170 fs/ioctl.c:583
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0xe2/0xf80 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x77/0x7f
The buggy address belongs to the object at ffff88802946afa0
which belongs to the cache kmalloc-8 of size 8
The buggy address is located 0 bytes to the right of
allocated 1-byte region [ffff88802946afa0, ffff88802946afa1)
The buggy address belongs to the physical page:
page: refcount:0 mapcount:0 mapping:0000000000000000 index:0xffff88802946a1c0 pfn:0x2946a
flags: 0xfff00000000200(workingset|node=0|zone=1|lastcpupid=0x7ff)
page_type: f5(slab)
raw: 00fff00000000200 ffff88813fe26500 ffffea00015f0210 ffffea0002018250
raw: ffff88802946a1c0 0000000000800079 00000000f5000000 0000000000000000
page dumped because: kasan: bad access detected
page_owner tracks the page as allocated
page last allocated via order 0, migratetype Unmovable, gfp_mask 0x52cc0(GFP_KERNEL|__GFP_NOWARN|__GFP_NORETRY|__GFP_COMP), pid 4276, tgid 4272 (syz.2.8413), ts 893909570156, free_ts 893627728021
set_page_owner include/linux/page_owner.h:32 [inline]
post_alloc_hook+0x228/0x280 mm/page_alloc.c:1884
prep_new_page mm/page_alloc.c:1892 [inline]
get_page_from_freelist+0x24dc/0x2580 mm/page_alloc.c:3945
__alloc_frozen_pages_noprof+0x18d/0x380 mm/page_alloc.c:5240
alloc_pages_mpol+0x232/0x4a0 mm/mempolicy.c:2486
alloc_slab_page mm/slub.c:3075 [inline]
allocate_slab+0x86/0x3a0 mm/slub.c:3248
new_slab mm/slub.c:3302 [inline]
___slab_alloc+0xd82/0x1760 mm/slub.c:4656
__slab_alloc+0x65/0x100 mm/slub.c:4779
__slab_alloc_node mm/slub.c:4855 [inline]
slab_alloc_node mm/slub.c:5251 [inline]
__do_kmalloc_node mm/slub.c:5656 [inline]
__kmalloc_node_track_caller_noprof+0x5b7/0x7f0 mm/slub.c:5768
__kmemdup_nul mm/util.c:64 [inline]
kstrdup+0x42/0x100 mm/util.c:84
__kernfs_new_node+0xa9/0x8e0 fs/kernfs/dir.c:633
kernfs_new_node+0x102/0x210 fs/kernfs/dir.c:718
__kernfs_create_file+0x4b/0x2e0 fs/kernfs/file.c:1057
sysfs_add_file_mode_ns+0x238/0x300 fs/sysfs/file.c:313
create_files fs/sysfs/group.c:82 [inline]
internal_create_group+0x673/0x1180 fs/sysfs/group.c:189
internal_create_groups fs/sysfs/group.c:229 [inline]
sysfs_create_groups+0x59/0x120 fs/sysfs/group.c:255
setup_port drivers/infiniband/core/sysfs.c:1247 [inline]
ib_setup_port_attrs+0xe1b/0x2140 drivers/infiniband/core/sysfs.c:1433
page last free pid 23 tgid 23 stack trace:
reset_page_owner include/linux/page_owner.h:25 [inline]
free_pages_prepare mm/page_alloc.c:1433 [inline]
__free_frozen_pages+0xbf8/0xd70 mm/page_alloc.c:2973
__tlb_remove_table_free mm/mmu_gather.c:228 [inline]
tlb_remove_table_rcu+0x85/0x100 mm/mmu_gather.c:291
rcu_do_batch kernel/rcu/tree.c:2605 [inline]
rcu_core+0xc9e/0x1750 kernel/rcu/tree.c:2857
handle_softirqs+0x22a/0x7c0 kernel/softirq.c:622
run_ksoftirqd+0x36/0x60 kernel/softirq.c:1063
smpboot_thread_fn+0x541/0xa50 kernel/smpboot.c:160
kthread+0x726/0x8b0 kernel/kthread.c:463
ret_from_fork+0x51b/0xa40 arch/x86/kernel/process.c:158
ret_from_fork_asm+0x1a/0x30 arch/x86/entry/entry_64.S:246
Memory state around the buggy address:
ffff88802946ae80: fa fc fc fc 04 fc fc fc 04 fc fc fc fa fc fc fc
ffff88802946af00: 04 fc fc fc 04 fc fc fc 04 fc fc fc 04 fc fc fc
>ffff88802946af80: 04 fc fc fc 01 fc fc fc 04 fc fc fc 04 fc fc fc
^
ffff88802946b000: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
ffff88802946b080: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
==================================================================
---
This report is generated by a bot. It may contain errors.
See https://goo.gl/tpsmEJ for more information about syzbot.
syzbot engineers can be reached at syzkaller@googlegroups.com.
syzbot will keep track of this issue. See:
https://goo.gl/tpsmEJ#status for how to communicate with syzbot.
If the report is already addressed, let syzbot know by replying with:
#syz fix: exact-commit-title
If you want to overwrite report's subsystems, reply with:
#syz set subsystems: new-subsystem
(See the list of subsystem names on the web dashboard)
If the report is a duplicate of another one, reply with:
#syz dup: exact-subject-of-another-report
If you want to undo deduplication, reply with:
#syz undup
^ permalink raw reply
* Re: [PATCH v3 2/2] dt-bindings: net: wireless: mt76: clarify backoff limit format
From: Chen-Yu Tsai @ 2026-02-11 9:52 UTC (permalink / raw)
To: Ryder Lee
Cc: krzk@kernel.org, robh@kernel.org, nbd@nbd.name,
linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org,
Allen Ye (葉芷勳),
linux-wireless@vger.kernel.org
In-Reply-To: <0c7b854e342e2047fbc9fc8e8fd80b67a6ec2bec.camel@mediatek.com>
On Wed, Feb 11, 2026 at 5:19 PM Ryder Lee <Ryder.Lee@mediatek.com> wrote:
>
> On Wed, 2026-02-11 at 10:08 +0100, Krzysztof Kozlowski wrote:
> > On 11/02/2026 09:59, Ryder Lee wrote:
> > > On Wed, 2026-02-11 at 09:41 +0100, Krzysztof Kozlowski wrote:
> > > > On 11/02/2026 09:33, Ryder Lee wrote:
> > > > > > > > Why this cannot be a schema?
> > > > > > > >
> > > > > > > >
> > > > > > > Well, actually, it's already a schema. This is just an
> > > > > > > expanded
> > > > > >
> > > > > > Where exactly?
> > > > > >
> > > > >
> > > > > How 1T1ss is used across different generations is what my
> > > > > example
> > > > > above
> > > > > was talking about.
> > > >
> > > > Where exactly it is already a schema? Please point me line
> > > > encoding
> > > > this.
> > > >
> > > >
> > > line 243 paths-ru
> > > line 261 paths-ru-bf
> >
> > I do not see there anything like you wrote here. You just list all of
> > them, no device constraints.
> >
> > Best regards,
> > Krzysztof
> >
>
> The original schema is a broad description. Now a reviewer want me to
> describe the differences for various connected devices, but I don’t
> know how to add a compatible string for PCIe, USB, or even SDIO devices
> for their constraints. So I used the driver’s generation name... can I
> just write “mt7996”? Or do I need a complete and meaningful compatible
> string?
You can fill in the PCI or USB IDs as the compatible string.
See for example
- Documentation/devicetree/bindings/net/wireless/brcm,bcm4329-fmac.yaml
- Documentation/devicetree/bindings/net/wireless/brcm,bcm4329-fmac.yaml
- Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
There's no equivalent for SDIO, so they just have separate compatibles.
The bcm4329-fmac binding also has examples of these.
If the hardware has something like a chip ID register, then you can
have a common fallback string. At the extreme end of this is the ARM
Mali bindings, which just have one compatible string for the core GPU
as the fallback, and per platform/SoC compatibles to cover the glue
layer:
- Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml
ChenYu
> Or maybe there’s no need to change the documentation at all and just
> let the driver handle it, so we don’t have to discuss these details.
>
> Ryder
^ permalink raw reply
* [PATCH] wifi: mt76: mt7921: Configure the 6GHz power type including regulatory limits and SAR power after the connection is established.
From: Leon Yen @ 2026-02-11 9:50 UTC (permalink / raw)
To: nbd, lorenzo
Cc: linux-wireless, linux-mediatek, deren.wu, sean.wang,
mingyen.hsieh, michael.lo, allan.wang, quan.zhou, sarick.jiang,
ryder.lee, shayne.chen, leon.yen
From: Michael Lo <michael.lo@mediatek.com>
To set the 6GHz power type and ensure compliance with regulatory limits and
Specific Absorption Rate (SAR) after a connection, we'll need to consider
both hardware-level configurations and software regulations ensuring
adherence to regional standards.
Fixes: 51ba0e3a15eb ("wifi: mt76: mt7921: add 6GHz power type support for clc")
Signed-off-by: Michael Lo <michael.lo@mediatek.com>
---
drivers/net/wireless/mediatek/mt76/mt7921/main.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/net/wireless/mediatek/mt76/mt7921/main.c b/drivers/net/wireless/mediatek/mt76/mt7921/main.c
index 42b9514e04e7..3d74fabe7408 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7921/main.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7921/main.c
@@ -800,7 +800,8 @@ mt7921_regd_set_6ghz_power_type(struct ieee80211_vif *vif, bool is_add)
}
out:
- mt7921_mcu_set_clc(dev, dev->mt76.alpha2, dev->country_ie_env);
+ if (vif->bss_conf.chanreq.oper.chan->band == NL80211_BAND_6GHZ)
+ mt7921_regd_update(dev);
}
int mt7921_mac_sta_add(struct mt76_dev *mdev, struct ieee80211_vif *vif,
--
2.45.2
^ permalink raw reply related
* Re: [PATCH v9 00/21] wifi: nxpwifi: create nxpwifi to support
From: Krzysztof Kozlowski @ 2026-02-11 9:42 UTC (permalink / raw)
To: Jeff Chen, Johannes Berg
Cc: linux-wireless, linux-kernel, briannorris, francesco, s.hauer
In-Reply-To: <aYQ8EbSbln3bN9n+@nxpwireless-Inspiron-14-Plus-7440>
On 05/02/2026 07:48, Jeff Chen wrote:
> On Wed, Feb 04, 2026 at 09:09:25 PM +0100, Johannes Berg wrote:
>>>
>>> Devicetree bindings note
>>> ------------------------
>>>
>>> The previous version included a devicetree binding document for
>>> `nxp,iw61x.yaml`. Since Device Tree support for this device is optional
>>> and not required for current SDIO-based bring-up, the binding has been
>>> dropped from this series. A proper schema will be submitted separately
>>> once DT usage becomes relevant, so that binding review can be handled
>>> in the correct subsystem and without blocking this driver introduction.
>>
>> You should probably have dropped _all_ the DT/OF *code* as well,
>> otherwise what's the point of dropping the binding review when you still
>> bake the binding into the code, no?
>>
>> johannes
>>
>
> Hi Johannes,
>
> Thanks for the question. To clarify what changed in v9:
>
> I dropped only the DT binding YAML from this wireless-only series because
> bindings are reviewed by the Devicetree subsystem. The driver keeps minimal
Huh, what? No, since when? Read docs in the kernel, it's complete
misinterpretation of kernel development model.
Reach to other people in NXP to guide you through basic submission
guidelines, so you won't be upstreaming 10 year old poor code (like last
version) or doing such trivial mistakes. They would tell you what you
have to do.
> and optional OF handling, but SDIO bring-up does not depend on any DT
> properties — enumeration is via SDIO VID/PID and the driver works without a
That's not true. Look at your code - you have OF calls.
> binding.
>
> The plan is to submit the binding YAML (and any DT properties we actually need,
> e.g. OOB wake IRQ/regulators) as a separate patchset to the DT maintainers so
This is not how it works. We won't be reviewing DT submission separate
from wireless subsystem / maintainers.
Best regards,
Krzysztof
^ permalink raw reply
* Re: [PATCH v9 12/21] wifi: nxpwifi: introduce command and event handling infrastructure
From: Krzysztof Kozlowski @ 2026-02-11 9:39 UTC (permalink / raw)
To: Jeff Chen, linux-wireless
Cc: linux-kernel, briannorris, johannes, francesco, s.hauer
In-Reply-To: <20260204180358.632281-13-jeff.chen_1@nxp.com>
On 04/02/2026 19:03, Jeff Chen wrote:
> +
> + /*
> + * Download calibration data to firmware.
> + * The cal-data can be read from device tree and/or
> + * a configuration file and downloaded to firmware.
> + */
> + if (adapter->dt_node) {
> + if (of_property_read_u32(adapter->dt_node,
> + "nxp,wakeup-pin",
Don't sneak in ABI. This is not acceptable.
NAK
Best regards,
Krzysztof
^ permalink raw reply
* Re: [PATCH v9 18/21] wifi: nxpwifi: add core driver implementation
From: Krzysztof Kozlowski @ 2026-02-11 9:36 UTC (permalink / raw)
To: Jeff Chen, linux-wireless
Cc: linux-kernel, briannorris, johannes, francesco, s.hauer
In-Reply-To: <20260204180358.632281-19-jeff.chen_1@nxp.com>
On 04/02/2026 19:03, Jeff Chen wrote:
> This patch introduces the core layer of the nxpwifi driver, which provides
> the foundational logic and infrastructure for managing the wireless
> adapter.
>
Please do not use "This commit/patch/change", but imperative mood. See
longer explanation here:
https://elixir.bootlin.com/linux/v6.16/source/Documentation/process/submitting-patches.rst#L94
> +
> + /* Notify PM core we are wakeup source */
> + pm_wakeup_event(adapter->dev, 0);
> + pm_system_wakeup();
> +
> + return IRQ_HANDLED;
> +}
> +
> +static void nxpwifi_probe_of(struct nxpwifi_adapter *adapter)
NAK, you removed DT support thus cannot keep undocumented ABI.
> +{
> + int ret;
> + struct device *dev = adapter->dev;
> +
> + if (!dev->of_node)
> + goto err_exit;
> +
> + adapter->dt_node = dev->of_node;
NAK
> + adapter->irq_wakeup = irq_of_parse_and_map(adapter->dt_node, 0);
> + if (!adapter->irq_wakeup) {
> + nxpwifi_dbg(adapter, ERROR, "fail to parse irq_wakeup from device tree\n");
> + goto err_exit;
> + }
> +
> + ret = devm_request_irq(dev, adapter->irq_wakeup,
> + nxpwifi_irq_wakeup_handler,
> + IRQF_TRIGGER_LOW | IRQF_NO_AUTOEN,
> + "wifi_wake", adapter);
> + if (ret) {
> + nxpwifi_dbg(adapter, ERROR, "Failed to request irq_wakeup %d (%d)\n",
> + adapter->irq_wakeup, ret);
> + goto err_exit;
> + }
> +
> + if (device_init_wakeup(dev, true)) {
> + nxpwifi_dbg(adapter, ERROR, "fail to init wakeup for nxpwifi\n");
> + goto err_exit;
> + }
> + return;
> +
> +err_exit:
> + adapter->irq_wakeup = -1;
> +}
Best regards,
Krzysztof
^ permalink raw reply
* Re: [PATCH v3 2/2] dt-bindings: net: wireless: mt76: clarify backoff limit format
From: Ryder Lee @ 2026-02-11 9:35 UTC (permalink / raw)
To: krzk@kernel.org
Cc: robh@kernel.org, nbd@nbd.name, linux-mediatek@lists.infradead.org,
devicetree@vger.kernel.org, Allen Ye (葉芷勳),
linux-wireless@vger.kernel.org
In-Reply-To: <0c7b854e342e2047fbc9fc8e8fd80b67a6ec2bec.camel@mediatek.com>
On Wed, 2026-02-11 at 09:19 +0000, Ryder Lee wrote:
> On Wed, 2026-02-11 at 10:08 +0100, Krzysztof Kozlowski wrote:
> > On 11/02/2026 09:59, Ryder Lee wrote:
> > > On Wed, 2026-02-11 at 09:41 +0100, Krzysztof Kozlowski wrote:
> > > > On 11/02/2026 09:33, Ryder Lee wrote:
> > > > > > > > Why this cannot be a schema?
> > > > > > > >
> > > > > > > >
> > > > > > > Well, actually, it's already a schema. This is just an
> > > > > > > expanded
> > > > > >
> > > > > > Where exactly?
> > > > > >
> > > > >
> > > > > How 1T1ss is used across different generations is what my
> > > > > example
> > > > > above
> > > > > was talking about.
> > > >
> > > > Where exactly it is already a schema? Please point me line
> > > > encoding
> > > > this.
> > > >
> > > >
> > > line 243 paths-ru
> > > line 261 paths-ru-bf
> >
> > I do not see there anything like you wrote here. You just list all
> > of
> > them, no device constraints.
> >
> > Best regards,
> > Krzysztof
> >
>
> The original schema is a broad description. Now a reviewer want me to
> describe the differences for various connected devices, but I don’t
> know how to add a compatible string for PCIe, USB, or even SDIO
> devices
> for their constraints. So I used the driver’s generation name... can
> I
> just write “mt7996”? Or do I need a complete and meaningful
> compatible
> string?
>
> Or maybe there’s no need to change the documentation at all and just
> let the driver handle it, so we don’t have to discuss these details.
>
> Ryder
I think we should just drop this DTS change for now. I’ll focus on the
[1/2] driver change. Right now, we’re just moving what the driver
already does into the documentation, which feels a bit excessive to me.
This makes things simpler.
Ryder
^ permalink raw reply
* iwlmld: Queue stuck and system-wide freeze under sustained throughput on BE202 (fw 101)
From: Alp Sahin @ 2026-02-11 9:25 UTC (permalink / raw)
To: linux-wireless@vger.kernel.org
[-- Attachment #1.1: Type: text/plain, Size: 0 bytes --]
[-- Attachment #1.2: Type: text/html, Size: 2728 bytes --]
[-- Attachment #2: iwlmld-ethtool.log --]
[-- Type: application/octet-stream, Size: 258 bytes --]
driver: iwlwifi
version: 6.18.8-arch2-1
firmware-version: 101.6ef20b19.0 gl-c0-fm-c0-101.
expansion-rom-version:
bus-info: 0000:07:00.0
supports-statistics: yes
supports-test: no
supports-eeprom-access: no
supports-register-dump: no
supports-priv-flags: no
[-- Attachment #3: iwlmld-dmesg.log --]
[-- Type: application/octet-stream, Size: 264883 bytes --]
[ 0.124927] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.124927] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.124928] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.124928] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.124929] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.124929] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.124930] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.124966] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.124969] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.124971] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.124974] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.124976] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.124983] e820: update [mem 0x6dfda000-0x6e0cdfff] usable ==> reserved
[ 0.124994] TSC deadline timer available
[ 0.124997] CPU topo: Max. logical packages: 1
[ 0.124997] CPU topo: Max. logical dies: 1
[ 0.124998] CPU topo: Max. dies per package: 1
[ 0.125000] CPU topo: Max. threads per core: 2
[ 0.125001] CPU topo: Num. cores per package: 24
[ 0.125002] CPU topo: Num. threads per package: 32
[ 0.125002] CPU topo: Allowing 32 present CPUs plus 0 hotplug CPUs
[ 0.125023] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.125025] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[ 0.125026] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.125027] PM: hibernation: Registered nosave memory: [mem 0x63e9c000-0x63e9cfff]
[ 0.125029] PM: hibernation: Registered nosave memory: [mem 0x6dfda000-0x6e0cdfff]
[ 0.125030] PM: hibernation: Registered nosave memory: [mem 0x708c1000-0x708c1fff]
[ 0.125031] PM: hibernation: Registered nosave memory: [mem 0x74172000-0x79ffefff]
[ 0.125032] PM: hibernation: Registered nosave memory: [mem 0x7a000000-0xffffffff]
[ 0.125034] [mem 0x80000000-0xfdffffff] available for PCI devices
[ 0.125035] Booting paravirtualized kernel on bare hardware
[ 0.125037] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.131509] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.132417] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[ 0.132426] pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
[ 0.132428] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.132434] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31
[ 0.132453] Kernel command line: quiet zswap.enabled=0 nowatchdog splash rw rootflags=subvol=/@ cryptdevice=UUID=c3a5bb21-0011-4385-8427-99d080d36af7:luks-c3a5bb21-0011-4385-8427-99d080d36af7 root=/dev/mapper/luks-c3a5bb21-0011-4385-8427-99d080d36af7 intel_iommu=on iommu=pt initrd=initramfs-linux.img
[ 0.132520] DMAR: IOMMU enabled
[ 0.132541] Unknown kernel command line parameters "splash cryptdevice=UUID=c3a5bb21-0011-4385-8427-99d080d36af7:luks-c3a5bb21-0011-4385-8427-99d080d36af7", will be passed to user space.
[ 0.132550] printk: log_buf_len individual max cpu contribution: 4096 bytes
[ 0.132551] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[ 0.132551] printk: log_buf_len min size: 131072 bytes
[ 0.132695] printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes
[ 0.132696] printk: early log buf free: 115784(88%)
[ 0.137515] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[ 0.139931] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.140260] software IO TLB: area num 32.
[ 0.149976] Fallback order for Node 0: 0
[ 0.149980] Built 1 zonelists, mobility grouping on. Total pages: 25116944
[ 0.149980] Policy zone: Normal
[ 0.150166] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.288150] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.295400] ftrace: allocating 57056 entries in 224 pages
[ 0.295401] ftrace: allocated 224 pages with 3 groups
[ 0.295495] Dynamic Preempt: full
[ 0.295626] rcu: Preemptible hierarchical RCU implementation.
[ 0.295627] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[ 0.295628] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.295629] Trampoline variant of Tasks RCU enabled.
[ 0.295630] Rude variant of Tasks RCU enabled.
[ 0.295630] Tracing variant of Tasks RCU enabled.
[ 0.295631] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.295632] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.295650] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.295653] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.295654] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.300117] NR_IRQS: 524544, nr_irqs: 2312, preallocated irqs: 16
[ 0.300444] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.300729] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.300786] Console: colour dummy device 80x25
[ 0.300788] printk: legacy console [tty0] enabled
[ 0.300836] ACPI: Core revision 20250807
[ 0.301160] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.301238] APIC: Switch to symmetric I/O mode setup
[ 0.301239] DMAR: Host address width 39
[ 0.301240] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.301245] DMAR: dmar0: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[ 0.301248] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.301250] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.301250] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.302684] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.302686] x2apic enabled
[ 0.302738] APIC: Switched APIC routing to: cluster x2apic
[ 0.307310] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2df10e7656b, max_idle_ns: 440795364873 ns
[ 0.307315] Calibrating delay loop (skipped), value calculated using timer frequency.. 6374.40 BogoMIPS (lpj=3187200)
[ 0.307369] CPU0: Thermal monitoring enabled (TM1)
[ 0.307371] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.307502] CET detected: Indirect Branch Tracking enabled
[ 0.307503] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.307504] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.307507] process: using mwait in idle threads
[ 0.307509] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[ 0.307512] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.307514] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.307515] Register File Data Sampling: Mitigation: Clear Register File
[ 0.307515] VMSCAPE: Mitigation: IBPB before exit to userspace
[ 0.307516] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.307517] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.307518] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.307528] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.307530] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.307530] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.307531] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.307532] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.307532] x86/fpu: Supporting XSAVE feature 0x1000: 'Control-flow Kernel registers (KVM only)'
[ 0.307533] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.307534] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.307535] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.307536] x86/fpu: xstate_offset[12]: 856, xstate_sizes[12]: 24
[ 0.307537] x86/fpu: Enabled xstate features 0x1a07, context size is 880 bytes, using 'compacted' format.
[ 0.308313] Freeing SMP alternatives memory: 56K
[ 0.308313] pid_max: default: 32768 minimum: 301
[ 0.308313] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[ 0.308313] landlock: Up and running.
[ 0.308313] Yama: becoming mindful.
[ 0.308313] LSM support for eBPF active
[ 0.308313] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.308313] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.308313] smpboot: CPU0: Intel(R) Core(TM) i9-14900K (family: 0x6, model: 0xb7, stepping: 0x1)
[ 0.308313] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.308313] core: cpu_core PMU driver:
[ 0.308313] ... version: 5
[ 0.308313] ... bit width: 48
[ 0.308313] ... generic counters: 8
[ 0.308313] ... generic bitmap: 00000000000000ff
[ 0.308313] ... fixed-purpose counters: 4
[ 0.308313] ... fixed-purpose bitmap: 000000000000000f
[ 0.308313] ... value mask: 0000ffffffffffff
[ 0.308313] ... max period: 00007fffffffffff
[ 0.308313] ... global_ctrl mask: 0001000f000000ff
[ 0.308313] signal: max sigframe size: 3632
[ 0.308313] Estimated ratio of average max frequency by base frequency (times 1024): 1024
[ 0.308313] rcu: Hierarchical SRCU implementation.
[ 0.308313] rcu: Max phase no-delay instances is 400.
[ 0.308313] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.309077] smp: Bringing up secondary CPUs ...
[ 0.309138] smpboot: x86: Booting SMP configuration:
[ 0.309138] .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[ 0.007690] core: cpu_atom PMU driver:
[ 0.007690] ... version: 5
[ 0.007690] ... bit width: 48
[ 0.007690] ... generic counters: 6
[ 0.007690] ... generic bitmap: 000000000000003f
[ 0.007690] ... fixed-purpose counters: 3
[ 0.007690] ... fixed-purpose bitmap: 0000000000000007
[ 0.007690] ... value mask: 0000ffffffffffff
[ 0.007690] ... max period: 00007fffffffffff
[ 0.007690] ... global_ctrl mask: 000000070000003f
[ 0.323403] #1 #3 #5 #7 #9 #11 #13 #15
[ 0.329350] smp: Brought up 1 node, 32 CPUs
[ 0.329350] smpboot: Total of 32 processors activated (203980.80 BogoMIPS)
[ 0.330559] Memory: 98583596K/100467776K available (20315K kernel code, 2938K rwdata, 16372K rodata, 4736K init, 4776K bss, 1856184K reserved, 0K cma-reserved)
[ 0.332659] devtmpfs: initialized
[ 0.332659] x86/mm: Memory block size: 2048MB
[ 0.333589] ACPI: PM: Registering ACPI NVS region [mem 0x78106000-0x7871efff] (6393856 bytes)
[ 0.333589] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.333589] posixtimers hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.333589] futex hash table entries: 8192 (524288 bytes on 1 NUMA nodes, total 512 KiB, linear).
[ 0.333589] pinctrl core: initialized pinctrl subsystem
[ 0.333724] PM: RTC time: 07:52:43, date: 2026-02-11
[ 0.334564] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.335002] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.335316] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.335611] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.335616] audit: initializing netlink subsys (disabled)
[ 0.335622] audit: type=2000 audit(1770796363.028:1): state=initialized audit_enabled=0 res=1
[ 0.335622] thermal_sys: Registered thermal governor 'fair_share'
[ 0.335622] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.335622] thermal_sys: Registered thermal governor 'step_wise'
[ 0.335622] thermal_sys: Registered thermal governor 'user_space'
[ 0.335622] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.335622] cpuidle: using governor ladder
[ 0.335622] cpuidle: using governor menu
[ 0.335622] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.335622] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.335622] PCI: ECAM [mem 0xc0000000-0xce0fffff] (base 0xc0000000) for domain 0000 [bus 00-e0]
[ 0.335622] PCI: Using configuration type 1 for base access
[ 0.335622] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.341431] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.341431] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.341431] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.341431] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.342917] raid6: skipped pq benchmark and selected avx2x4
[ 0.342920] raid6: using avx2x2 recovery algorithm
[ 0.343016] ACPI: Added _OSI(Module Device)
[ 0.343018] ACPI: Added _OSI(Processor Device)
[ 0.343019] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.486370] ACPI: 12 ACPI AML tables successfully acquired and loaded
[ 0.504163] ACPI: Dynamic OEM Table Load:
[ 0.504173] ACPI: SSDT 0xFFFF88D9C22ADC00 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20200717)
[ 0.505835] ACPI: Dynamic OEM Table Load:
[ 0.505843] ACPI: SSDT 0xFFFF88D9C22C0800 000626 (v02 PmRef Cpu0Ist 00003000 INTL 20200717)
[ 0.507543] ACPI: Dynamic OEM Table Load:
[ 0.507549] ACPI: SSDT 0xFFFF88D9C231C200 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717)
[ 0.509127] ACPI: Dynamic OEM Table Load:
[ 0.509133] ACPI: SSDT 0xFFFF88D9C22C1000 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717)
[ 0.511326] ACPI: Dynamic OEM Table Load:
[ 0.511337] ACPI: SSDT 0xFFFF88D9C2E0E000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717)
[ 0.513962] ACPI: Dynamic OEM Table Load:
[ 0.513970] ACPI: SSDT 0xFFFF88D9C2E0C000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717)
[ 0.516345] ACPI: Dynamic OEM Table Load:
[ 0.516353] ACPI: SSDT 0xFFFF88D9C2E08000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717)
[ 0.518763] ACPI: Dynamic OEM Table Load:
[ 0.518771] ACPI: SSDT 0xFFFF88D9C22B1000 000FBB (v02 PmRef ApCst 00003000 INTL 20200717)
[ 0.537881] ACPI: EC: EC started
[ 0.537882] ACPI: EC: interrupt blocked
[ 0.538880] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.538883] ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.538885] ACPI: Interpreter enabled
[ 0.538959] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.538961] ACPI: Using IOAPIC for interrupt routing
[ 0.541006] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.541007] PCI: Ignoring E820 reservations for host bridge windows
[ 0.542918] ACPI: Enabled 6 GPEs in block 00 to 7F
[ 0.553960] ACPI: \_SB_.PC00.RP01.PXSX.WRST: New power resource
[ 0.553991] ACPI: \_SB_.PC00.RP01.PXSX.DRST: New power resource
[ 0.571647] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.PRBT: New power resource
[ 0.586695] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[ 0.608213] ACPI: \_TZ_.FN00: New power resource
[ 0.608294] ACPI: \_TZ_.FN01: New power resource
[ 0.608377] ACPI: \_TZ_.FN02: New power resource
[ 0.608452] ACPI: \_TZ_.FN03: New power resource
[ 0.608526] ACPI: \_TZ_.FN04: New power resource
[ 0.609288] ACPI: \PIN_: New power resource
[ 0.610184] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[ 0.610191] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.613776] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.613778] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.615662] PCI host bridge to bus 0000:00
[ 0.615666] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.615669] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.615670] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.615673] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000effff window]
[ 0.615674] pci_bus 0000:00: root bus resource [mem 0x80000000-0xbfffffff window]
[ 0.615675] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.615677] pci_bus 0000:00: root bus resource [bus 00-e0]
[ 0.615712] pci 0000:00:00.0: [8086:a700] type 00 class 0x060000 conventional PCI endpoint
[ 0.615852] pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400 PCIe Root Port
[ 0.615865] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.615868] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.615871] pci 0000:00:01.0: bridge window [mem 0x82d00000-0x82ffffff]
[ 0.615876] pci 0000:00:01.0: bridge window [mem 0x4800000000-0x4c0fffffff 64bit pref]
[ 0.615917] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.615939] pci 0000:00:01.0: PTM enabled (root), 4ns granularity
[ 0.616810] pci 0000:00:06.0: [8086:a74d] type 01 class 0x060400 PCIe Root Port
[ 0.616824] pci 0000:00:06.0: PCI bridge to [bus 04]
[ 0.616828] pci 0000:00:06.0: bridge window [mem 0x83500000-0x835fffff]
[ 0.616877] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[ 0.616898] pci 0000:00:06.0: PTM enabled (root), 4ns granularity
[ 0.617746] pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[ 0.617765] pci 0000:00:0a.0: BAR 0 [mem 0x4c14210000-0x4c14217fff 64bit]
[ 0.617772] pci 0000:00:0a.0: enabling Extended Tags
[ 0.617889] pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 0.617919] pci 0000:00:0e.0: BAR 0 [mem 0x4c12000000-0x4c13ffffff 64bit]
[ 0.617922] pci 0000:00:0e.0: BAR 2 [mem 0x80000000-0x81ffffff]
[ 0.617925] pci 0000:00:0e.0: BAR 4 [mem 0x4c14100000-0x4c141fffff 64bit]
[ 0.618256] pci 0000:00:14.0: [8086:7a60] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.618299] pci 0000:00:14.0: BAR 0 [mem 0x4c14200000-0x4c1420ffff 64bit]
[ 0.618347] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.618769] pci 0000:00:14.2: [8086:7a27] type 00 class 0x050000 conventional PCI endpoint
[ 0.618819] pci 0000:00:14.2: BAR 0 [mem 0x4c14224000-0x4c14227fff 64bit]
[ 0.618824] pci 0000:00:14.2: BAR 2 [mem 0x4c1422d000-0x4c1422dfff 64bit]
[ 0.619026] pci 0000:00:15.0: [8086:7a4c] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.619139] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.629680] pci 0000:00:15.1: [8086:7a4d] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.629756] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.640672] pci 0000:00:15.2: [8086:7a4e] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.640746] pci 0000:00:15.2: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.651686] pci 0000:00:16.0: [8086:7a68] type 00 class 0x078000 conventional PCI endpoint
[ 0.651739] pci 0000:00:16.0: BAR 0 [mem 0x4c14229000-0x4c14229fff 64bit]
[ 0.651795] pci 0000:00:16.0: PME# supported from D3hot
[ 0.652634] pci 0000:00:17.0: [8086:7a62] type 00 class 0x010601 conventional PCI endpoint
[ 0.652672] pci 0000:00:17.0: BAR 0 [mem 0x83600000-0x83601fff]
[ 0.652675] pci 0000:00:17.0: BAR 1 [mem 0x83603000-0x836030ff]
[ 0.652677] pci 0000:00:17.0: BAR 2 [io 0x6050-0x6057]
[ 0.652680] pci 0000:00:17.0: BAR 3 [io 0x6040-0x6043]
[ 0.652682] pci 0000:00:17.0: BAR 4 [io 0x6020-0x603f]
[ 0.652684] pci 0000:00:17.0: BAR 5 [mem 0x83602000-0x836027ff]
[ 0.652724] pci 0000:00:17.0: PME# supported from D3hot
[ 0.653208] pci 0000:00:1a.0: [8086:7a48] type 01 class 0x060400 PCIe Root Port
[ 0.653239] pci 0000:00:1a.0: PCI bridge to [bus 05]
[ 0.653247] pci 0000:00:1a.0: bridge window [io 0x4000-0x4fff]
[ 0.653254] pci 0000:00:1a.0: bridge window [mem 0x82000000-0x829fffff]
[ 0.653269] pci 0000:00:1a.0: bridge window [mem 0x4c10100000-0x4c10afffff 64bit pref]
[ 0.653350] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.654248] pci 0000:00:1b.0: [8086:7a40] type 01 class 0x060400 PCIe Root Port
[ 0.654278] pci 0000:00:1b.0: PCI bridge to [bus 06]
[ 0.654371] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.655255] pci 0000:00:1c.0: [8086:7a38] type 01 class 0x060400 PCIe Root Port
[ 0.655282] pci 0000:00:1c.0: PCI bridge to [bus 07]
[ 0.655288] pci 0000:00:1c.0: bridge window [mem 0x83400000-0x834fffff]
[ 0.655375] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.655415] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.656273] pci 0000:00:1c.3: [8086:7a3b] type 01 class 0x060400 PCIe Root Port
[ 0.656300] pci 0000:00:1c.3: PCI bridge to [bus 08]
[ 0.656306] pci 0000:00:1c.3: bridge window [mem 0x83000000-0x831fffff]
[ 0.656393] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.656433] pci 0000:00:1c.3: PTM enabled (root), 4ns granularity
[ 0.657283] pci 0000:00:1c.4: [8086:7a3c] type 01 class 0x060400 PCIe Root Port
[ 0.657309] pci 0000:00:1c.4: PCI bridge to [bus 09]
[ 0.657316] pci 0000:00:1c.4: bridge window [mem 0x83300000-0x833fffff]
[ 0.657412] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.657461] pci 0000:00:1c.4: PTM enabled (root), 4ns granularity
[ 0.658336] pci 0000:00:1d.0: [8086:7a30] type 01 class 0x060400 PCIe Root Port
[ 0.658362] pci 0000:00:1d.0: PCI bridge to [bus 0a-0c]
[ 0.658366] pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
[ 0.658370] pci 0000:00:1d.0: bridge window [mem 0x82a00000-0x82cfffff]
[ 0.658380] pci 0000:00:1d.0: bridge window [mem 0x4000000000-0x440fffffff 64bit pref]
[ 0.658471] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.658518] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[ 0.659392] pci 0000:00:1d.4: [8086:7a34] type 01 class 0x060400 PCIe Root Port
[ 0.659418] pci 0000:00:1d.4: PCI bridge to [bus 0d]
[ 0.659427] pci 0000:00:1d.4: bridge window [mem 0x83200000-0x832fffff]
[ 0.659526] pci 0000:00:1d.4: PME# supported from D0 D3hot D3cold
[ 0.659572] pci 0000:00:1d.4: PTM enabled (root), 4ns granularity
[ 0.660440] pci 0000:00:1f.0: [8086:7a04] type 00 class 0x060100 conventional PCI endpoint
[ 0.660897] pci 0000:00:1f.3: [8086:7a50] type 00 class 0x040300 conventional PCI endpoint
[ 0.660999] pci 0000:00:1f.3: BAR 0 [mem 0x4c14220000-0x4c14223fff 64bit]
[ 0.661011] pci 0000:00:1f.3: BAR 4 [mem 0x4c14000000-0x4c140fffff 64bit]
[ 0.661109] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.661233] pci 0000:00:1f.4: [8086:7a23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.661286] pci 0000:00:1f.4: BAR 0 [mem 0x4c14228000-0x4c142280ff 64bit]
[ 0.661293] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.661650] pci 0000:00:1f.5: [8086:7a24] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.661706] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.661810] pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.661830] pci 0000:01:00.0: BAR 0 [mem 0x82f00000-0x82f03fff]
[ 0.661834] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.661840] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.661843] pci 0000:01:00.0: bridge window [mem 0x82d00000-0x82efffff]
[ 0.661851] pci 0000:01:00.0: bridge window [mem 0x4800000000-0x4c0fffffff 64bit pref]
[ 0.661928] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.662001] pci 0000:01:00.0: 126.024 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.662328] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.662380] pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.662405] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.662410] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.662413] pci 0000:02:00.0: bridge window [mem 0x82d00000-0x82efffff]
[ 0.662422] pci 0000:02:00.0: bridge window [mem 0x4800000000-0x4c0fffffff 64bit pref]
[ 0.662504] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.662644] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.662695] pci 0000:03:00.0: [1002:73bf] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.662729] pci 0000:03:00.0: BAR 0 [mem 0x4800000000-0x4bffffffff 64bit pref]
[ 0.662733] pci 0000:03:00.0: BAR 2 [mem 0x4c00000000-0x4c0fffffff 64bit pref]
[ 0.662735] pci 0000:03:00.0: BAR 4 [io 0x5000-0x50ff]
[ 0.662737] pci 0000:03:00.0: BAR 5 [mem 0x82d00000-0x82dfffff]
[ 0.662739] pci 0000:03:00.0: ROM [mem 0x82e00000-0x82e1ffff pref]
[ 0.662822] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.662900] pci 0000:03:00.0: 126.024 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.662984] pci 0000:03:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.663015] pci 0000:03:00.1: BAR 0 [mem 0x82e20000-0x82e23fff]
[ 0.663079] pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.663190] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.663274] pci 0000:04:00.0: [1987:5026] type 00 class 0x010802 PCIe Endpoint
[ 0.663343] pci 0000:04:00.0: BAR 0 [mem 0x83500000-0x83503fff 64bit]
[ 0.663719] pci 0000:04:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 126.028 Gb/s with 32.0 GT/s PCIe x4 link)
[ 0.663827] pci 0000:00:06.0: PCI bridge to [bus 04]
[ 0.663901] pci 0000:00:1a.0: PCI bridge to [bus 05]
[ 0.663973] pci 0000:00:1b.0: PCI bridge to [bus 06]
[ 0.664105] pci 0000:07:00.0: [8086:272b] type 00 class 0x028000 PCIe Endpoint
[ 0.664323] pci 0000:07:00.0: BAR 0 [mem 0x83400000-0x83403fff 64bit]
[ 0.664469] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[ 0.664676] pci 0000:07:00.0: 7.876 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x1 link at 0000:00:1c.0 (capable of 15.753 Gb/s with 16.0 GT/s PCIe x1 link)
[ 0.666041] pci 0000:00:1c.0: PCI bridge to [bus 07]
[ 0.666146] pci 0000:08:00.0: [8086:125c] type 00 class 0x020000 PCIe Endpoint
[ 0.666209] pci 0000:08:00.0: BAR 0 [mem 0x83000000-0x830fffff]
[ 0.666215] pci 0000:08:00.0: BAR 3 [mem 0x83100000-0x83103fff]
[ 0.666340] pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
[ 0.666568] pci 0000:00:1c.3: PCI bridge to [bus 08]
[ 0.666649] pci 0000:09:00.0: [15b7:5006] type 00 class 0x010802 PCIe Endpoint
[ 0.666705] pci 0000:09:00.0: BAR 0 [mem 0x83300000-0x83303fff 64bit]
[ 0.666712] pci 0000:09:00.0: BAR 4 [mem 0x83304000-0x833040ff 64bit]
[ 0.666999] pci 0000:00:1c.4: PCI bridge to [bus 09]
[ 0.667082] pci 0000:0a:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.667115] pci 0000:0a:00.0: BAR 0 [mem 0x82c00000-0x82c03fff]
[ 0.667121] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[ 0.667129] pci 0000:0a:00.0: bridge window [io 0x3000-0x3fff]
[ 0.667133] pci 0000:0a:00.0: bridge window [mem 0x82a00000-0x82bfffff]
[ 0.667147] pci 0000:0a:00.0: bridge window [mem 0x4000000000-0x440fffffff 64bit pref]
[ 0.667276] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold
[ 0.667411] pci 0000:0a:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:1d.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.667528] pci 0000:00:1d.0: PCI bridge to [bus 0a-0c]
[ 0.667611] pci 0000:0b:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.667647] pci 0000:0b:00.0: PCI bridge to [bus 0c]
[ 0.667655] pci 0000:0b:00.0: bridge window [io 0x3000-0x3fff]
[ 0.667659] pci 0000:0b:00.0: bridge window [mem 0x82a00000-0x82bfffff]
[ 0.667673] pci 0000:0b:00.0: bridge window [mem 0x4000000000-0x440fffffff 64bit pref]
[ 0.667802] pci 0000:0b:00.0: PME# supported from D0 D3hot D3cold
[ 0.668029] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[ 0.668117] pci 0000:0c:00.0: [1002:744c] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.668172] pci 0000:0c:00.0: BAR 0 [mem 0x4000000000-0x43ffffffff 64bit pref]
[ 0.668176] pci 0000:0c:00.0: BAR 2 [mem 0x4400000000-0x440fffffff 64bit pref]
[ 0.668179] pci 0000:0c:00.0: BAR 4 [io 0x3000-0x30ff]
[ 0.668182] pci 0000:0c:00.0: BAR 5 [mem 0x82a00000-0x82afffff]
[ 0.668184] pci 0000:0c:00.0: ROM [mem 0x82b00000-0x82b1ffff pref]
[ 0.668324] pci 0000:0c:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.668464] pci 0000:0c:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:1d.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.668600] pci 0000:0c:00.1: [1002:ab30] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.668652] pci 0000:0c:00.1: BAR 0 [mem 0x82b20000-0x82b23fff]
[ 0.668755] pci 0000:0c:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.668933] pci 0000:0b:00.0: PCI bridge to [bus 0c]
[ 0.669035] pci 0000:0d:00.0: [1987:5013] type 00 class 0x010802 PCIe Endpoint
[ 0.669093] pci 0000:0d:00.0: BAR 0 [mem 0x83200000-0x83203fff 64bit]
[ 0.669377] pci 0000:00:1d.4: PCI bridge to [bus 0d]
[ 0.672243] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.672398] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.672549] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.672698] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.672848] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.672997] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.673146] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.673296] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.684008] ACPI: EC: interrupt unblocked
[ 0.684010] ACPI: EC: event unblocked
[ 0.684027] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.684029] ACPI: EC: GPE=0x7
[ 0.684030] ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.684032] ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.684322] iommu: Default domain type: Passthrough (set via kernel command line)
[ 0.685471] SCSI subsystem initialized
[ 0.685484] libata version 3.00 loaded.
[ 0.685484] ACPI: bus type USB registered
[ 0.685484] usbcore: registered new interface driver usbfs
[ 0.685484] usbcore: registered new interface driver hub
[ 0.685484] usbcore: registered new device driver usb
[ 0.685484] EDAC MC: Ver: 3.0.0
[ 0.685545] efivars: Registered efivars operations
[ 0.685582] NetLabel: Initializing
[ 0.685584] NetLabel: domain hash size = 128
[ 0.685585] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.685606] NetLabel: unlabeled traffic allowed by default
[ 0.685612] mctp: management component transport protocol core
[ 0.685612] NET: Registered PF_MCTP protocol family
[ 0.685625] PCI: Using ACPI for IRQ routing
[ 0.704691] PCI: pci_cache_line_size set to 64 bytes
[ 0.704767] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[ 0.704837] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.704839] e820: reserve RAM buffer [mem 0x63e9c000-0x63ffffff]
[ 0.704841] e820: reserve RAM buffer [mem 0x6dfda000-0x6fffffff]
[ 0.704842] e820: reserve RAM buffer [mem 0x708c1000-0x73ffffff]
[ 0.704843] e820: reserve RAM buffer [mem 0x74172000-0x77ffffff]
[ 0.704844] e820: reserve RAM buffer [mem 0x7a000000-0x7bffffff]
[ 0.705342] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 0.705342] pci 0000:03:00.0: vgaarb: bridge control possible
[ 0.705342] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.705342] pci 0000:0c:00.0: vgaarb: bridge control possible
[ 0.705342] pci 0000:0c:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.705344] vgaarb: loaded
[ 0.705588] Monitor-Mwait will be used to enter C-1 state
[ 0.705591] Monitor-Mwait will be used to enter C-2 state
[ 0.705591] Monitor-Mwait will be used to enter C-3 state
[ 0.707342] clocksource: Switched to clocksource tsc-early
[ 0.707512] VFS: Disk quotas dquot_6.6.0
[ 0.707522] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.707650] pnp: PnP ACPI init
[ 0.707958] system 00:00: [io 0x0290-0x029f] has been reserved
[ 0.707961] system 00:00: [io 0x0b00-0x0b1f] has been reserved
[ 0.708187] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.708189] system 00:01: [io 0x164e-0x164f] has been reserved
[ 0.708353] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.709905] system 00:03: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 0.709908] system 00:03: [mem 0xfeda0000-0xfeda0fff] has been reserved
[ 0.709910] system 00:03: [mem 0xfeda1000-0xfeda1fff] has been reserved
[ 0.709912] system 00:03: [mem 0xc0000000-0xcfffffff] has been reserved
[ 0.709914] system 00:03: [mem 0xfed20000-0xfed7ffff] could not be reserved
[ 0.709915] system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.709917] system 00:03: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 0.709918] system 00:03: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.711106] system 00:04: [io 0x2000-0x20fe] has been reserved
[ 0.712190] pnp: PnP ACPI: found 6 devices
[ 0.718006] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.718074] NET: Registered PF_INET protocol family
[ 0.718417] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.736768] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.736888] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.737512] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.738317] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.738425] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.738864] MPTCP token hash table entries: 65536 (order: 9, 1572864 bytes, linear)
[ 0.739603] UDP hash table entries: 65536 (order: 10, 4194304 bytes, linear)
[ 0.740612] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, linear)
[ 0.741067] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.741075] NET: Registered PF_XDP protocol family
[ 0.741098] pci 0000:00:15.0: BAR 0 [mem 0x4410000000-0x4410000fff 64bit]: assigned
[ 0.741122] pci 0000:00:15.1: BAR 0 [mem 0x4410001000-0x4410001fff 64bit]: assigned
[ 0.741138] pci 0000:00:15.2: BAR 0 [mem 0x4410002000-0x4410002fff 64bit]: assigned
[ 0.741155] pci 0000:00:1f.5: BAR 0 [mem 0x83604000-0x83604fff]: assigned
[ 0.741169] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.741171] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.741176] pci 0000:02:00.0: bridge window [mem 0x82d00000-0x82efffff]
[ 0.741179] pci 0000:02:00.0: bridge window [mem 0x4800000000-0x4c0fffffff 64bit pref]
[ 0.741184] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.741187] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.741191] pci 0000:01:00.0: bridge window [mem 0x82d00000-0x82efffff]
[ 0.741194] pci 0000:01:00.0: bridge window [mem 0x4800000000-0x4c0fffffff 64bit pref]
[ 0.741199] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.741200] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.741203] pci 0000:00:01.0: bridge window [mem 0x82d00000-0x82ffffff]
[ 0.741205] pci 0000:00:01.0: bridge window [mem 0x4800000000-0x4c0fffffff 64bit pref]
[ 0.741209] pci 0000:00:06.0: PCI bridge to [bus 04]
[ 0.741212] pci 0000:00:06.0: bridge window [mem 0x83500000-0x835fffff]
[ 0.741217] pci 0000:00:1a.0: PCI bridge to [bus 05]
[ 0.741229] pci 0000:00:1a.0: bridge window [io 0x4000-0x4fff]
[ 0.741238] pci 0000:00:1a.0: bridge window [mem 0x82000000-0x829fffff]
[ 0.741245] pci 0000:00:1a.0: bridge window [mem 0x4c10100000-0x4c10afffff 64bit pref]
[ 0.741255] pci 0000:00:1b.0: PCI bridge to [bus 06]
[ 0.741270] pci 0000:00:1c.0: PCI bridge to [bus 07]
[ 0.741274] pci 0000:00:1c.0: bridge window [mem 0x83400000-0x834fffff]
[ 0.741282] pci 0000:00:1c.3: PCI bridge to [bus 08]
[ 0.741286] pci 0000:00:1c.3: bridge window [mem 0x83000000-0x831fffff]
[ 0.741294] pci 0000:00:1c.4: PCI bridge to [bus 09]
[ 0.741298] pci 0000:00:1c.4: bridge window [mem 0x83300000-0x833fffff]
[ 0.741307] pci 0000:0b:00.0: PCI bridge to [bus 0c]
[ 0.741314] pci 0000:0b:00.0: bridge window [io 0x3000-0x3fff]
[ 0.741319] pci 0000:0b:00.0: bridge window [mem 0x82a00000-0x82bfffff]
[ 0.741323] pci 0000:0b:00.0: bridge window [mem 0x4000000000-0x440fffffff 64bit pref]
[ 0.741330] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[ 0.741333] pci 0000:0a:00.0: bridge window [io 0x3000-0x3fff]
[ 0.741339] pci 0000:0a:00.0: bridge window [mem 0x82a00000-0x82bfffff]
[ 0.741343] pci 0000:0a:00.0: bridge window [mem 0x4000000000-0x440fffffff 64bit pref]
[ 0.741350] pci 0000:00:1d.0: PCI bridge to [bus 0a-0c]
[ 0.741352] pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
[ 0.741356] pci 0000:00:1d.0: bridge window [mem 0x82a00000-0x82cfffff]
[ 0.741360] pci 0000:00:1d.0: bridge window [mem 0x4000000000-0x440fffffff 64bit pref]
[ 0.741365] pci 0000:00:1d.4: PCI bridge to [bus 0d]
[ 0.741370] pci 0000:00:1d.4: bridge window [mem 0x83200000-0x832fffff]
[ 0.741378] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.741380] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.741381] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.741383] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000effff window]
[ 0.741384] pci_bus 0000:00: resource 8 [mem 0x80000000-0xbfffffff window]
[ 0.741386] pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
[ 0.741388] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
[ 0.741389] pci_bus 0000:01: resource 1 [mem 0x82d00000-0x82ffffff]
[ 0.741390] pci_bus 0000:01: resource 2 [mem 0x4800000000-0x4c0fffffff 64bit pref]
[ 0.741392] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff]
[ 0.741393] pci_bus 0000:02: resource 1 [mem 0x82d00000-0x82efffff]
[ 0.741394] pci_bus 0000:02: resource 2 [mem 0x4800000000-0x4c0fffffff 64bit pref]
[ 0.741396] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.741397] pci_bus 0000:03: resource 1 [mem 0x82d00000-0x82efffff]
[ 0.741399] pci_bus 0000:03: resource 2 [mem 0x4800000000-0x4c0fffffff 64bit pref]
[ 0.741400] pci_bus 0000:04: resource 1 [mem 0x83500000-0x835fffff]
[ 0.741402] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff]
[ 0.741403] pci_bus 0000:05: resource 1 [mem 0x82000000-0x829fffff]
[ 0.741405] pci_bus 0000:05: resource 2 [mem 0x4c10100000-0x4c10afffff 64bit pref]
[ 0.741406] pci_bus 0000:07: resource 1 [mem 0x83400000-0x834fffff]
[ 0.741408] pci_bus 0000:08: resource 1 [mem 0x83000000-0x831fffff]
[ 0.741410] pci_bus 0000:09: resource 1 [mem 0x83300000-0x833fffff]
[ 0.741411] pci_bus 0000:0a: resource 0 [io 0x3000-0x3fff]
[ 0.741412] pci_bus 0000:0a: resource 1 [mem 0x82a00000-0x82cfffff]
[ 0.741414] pci_bus 0000:0a: resource 2 [mem 0x4000000000-0x440fffffff 64bit pref]
[ 0.741415] pci_bus 0000:0b: resource 0 [io 0x3000-0x3fff]
[ 0.741416] pci_bus 0000:0b: resource 1 [mem 0x82a00000-0x82bfffff]
[ 0.741418] pci_bus 0000:0b: resource 2 [mem 0x4000000000-0x440fffffff 64bit pref]
[ 0.741419] pci_bus 0000:0c: resource 0 [io 0x3000-0x3fff]
[ 0.741421] pci_bus 0000:0c: resource 1 [mem 0x82a00000-0x82bfffff]
[ 0.741422] pci_bus 0000:0c: resource 2 [mem 0x4000000000-0x440fffffff 64bit pref]
[ 0.741424] pci_bus 0000:0d: resource 1 [mem 0x83200000-0x832fffff]
[ 0.742242] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[ 0.742336] pci 0000:0c:00.1: D0 power state depends on 0000:0c:00.0
[ 0.742408] PCI: CLS 64 bytes, default 64
[ 0.742446] DMAR: No RMRR found
[ 0.742447] DMAR: No ATSR found
[ 0.742448] DMAR: No SATC found
[ 0.742449] DMAR: dmar0: Using Queued invalidation
[ 0.742535] pci 0000:00:00.0: Adding to iommu group 0
[ 0.742550] pci 0000:00:01.0: Adding to iommu group 1
[ 0.742564] pci 0000:00:06.0: Adding to iommu group 2
[ 0.742576] pci 0000:00:0a.0: Adding to iommu group 3
[ 0.742587] pci 0000:00:0e.0: Adding to iommu group 4
[ 0.742590] Trying to unpack rootfs image as initramfs...
[ 0.742609] pci 0000:00:14.0: Adding to iommu group 5
[ 0.742620] pci 0000:00:14.2: Adding to iommu group 5
[ 0.742646] pci 0000:00:15.0: Adding to iommu group 6
[ 0.742658] pci 0000:00:15.1: Adding to iommu group 6
[ 0.742668] pci 0000:00:15.2: Adding to iommu group 6
[ 0.742684] pci 0000:00:16.0: Adding to iommu group 7
[ 0.742703] pci 0000:00:17.0: Adding to iommu group 8
[ 0.742719] pci 0000:00:1a.0: Adding to iommu group 9
[ 0.742736] pci 0000:00:1b.0: Adding to iommu group 10
[ 0.742757] pci 0000:00:1c.0: Adding to iommu group 11
[ 0.742773] pci 0000:00:1c.3: Adding to iommu group 12
[ 0.742790] pci 0000:00:1c.4: Adding to iommu group 13
[ 0.742812] pci 0000:00:1d.0: Adding to iommu group 14
[ 0.742833] pci 0000:00:1d.4: Adding to iommu group 15
[ 0.742863] pci 0000:00:1f.0: Adding to iommu group 16
[ 0.742876] pci 0000:00:1f.3: Adding to iommu group 16
[ 0.742888] pci 0000:00:1f.4: Adding to iommu group 16
[ 0.742900] pci 0000:00:1f.5: Adding to iommu group 16
[ 0.742913] pci 0000:01:00.0: Adding to iommu group 17
[ 0.742925] pci 0000:02:00.0: Adding to iommu group 18
[ 0.742940] pci 0000:03:00.0: Adding to iommu group 19
[ 0.742957] pci 0000:03:00.1: Adding to iommu group 20
[ 0.742970] pci 0000:04:00.0: Adding to iommu group 21
[ 0.742994] pci 0000:07:00.0: Adding to iommu group 22
[ 0.743014] pci 0000:08:00.0: Adding to iommu group 23
[ 0.743027] pci 0000:09:00.0: Adding to iommu group 24
[ 0.743040] pci 0000:0a:00.0: Adding to iommu group 25
[ 0.743058] pci 0000:0b:00.0: Adding to iommu group 26
[ 0.743081] pci 0000:0c:00.0: Adding to iommu group 27
[ 0.743098] pci 0000:0c:00.1: Adding to iommu group 28
[ 0.743111] pci 0000:0d:00.0: Adding to iommu group 29
[ 0.743154] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.743155] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.743155] software IO TLB: mapped [mem 0x0000000069fda000-0x000000006dfda000] (64MB)
[ 0.743224] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2df10e7656b, max_idle_ns: 440795364873 ns
[ 0.743388] clocksource: Switched to clocksource tsc
[ 0.743407] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.775867] Initialise system trusted keyrings
[ 0.775879] Key type blacklist registered
[ 0.776024] workingset: timestamp_bits=36 max_order=25 bucket_order=0
[ 0.776498] fuse: init (API version 7.45)
[ 0.776644] integrity: Platform Keyring initialized
[ 0.776647] integrity: Machine keyring initialized
[ 0.788383] xor: automatically using best checksumming function avx
[ 0.788385] Key type asymmetric registered
[ 0.788387] Asymmetric key parser 'x509' registered
[ 0.788408] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[ 0.788493] io scheduler mq-deadline registered
[ 0.788494] io scheduler kyber registered
[ 0.788506] io scheduler bfq registered
[ 0.791799] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.792184] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.792351] pcieport 0000:00:01.0: AER: enabled with IRQ 121
[ 0.792570] pcieport 0000:00:06.0: PME: Signaling with IRQ 122
[ 0.792671] pcieport 0000:00:06.0: AER: enabled with IRQ 122
[ 0.792831] pcieport 0000:00:1a.0: PME: Signaling with IRQ 123
[ 0.792870] pcieport 0000:00:1a.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.793171] pcieport 0000:00:1b.0: PME: Signaling with IRQ 124
[ 0.793431] pcieport 0000:00:1c.0: PME: Signaling with IRQ 125
[ 0.793559] pcieport 0000:00:1c.0: AER: enabled with IRQ 125
[ 0.793834] pcieport 0000:00:1c.3: PME: Signaling with IRQ 126
[ 0.793927] pcieport 0000:00:1c.3: AER: enabled with IRQ 126
[ 0.794194] pcieport 0000:00:1c.4: PME: Signaling with IRQ 127
[ 0.794294] pcieport 0000:00:1c.4: AER: enabled with IRQ 127
[ 0.794554] pcieport 0000:00:1d.0: PME: Signaling with IRQ 128
[ 0.794643] pcieport 0000:00:1d.0: AER: enabled with IRQ 128
[ 0.794919] pcieport 0000:00:1d.4: PME: Signaling with IRQ 129
[ 0.795007] pcieport 0000:00:1d.4: AER: enabled with IRQ 129
[ 0.795996] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.796025] ACPI: button: Sleep Button [SLPB]
[ 0.796055] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.796072] ACPI: button: Power Button [PWRB]
[ 0.796099] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.799753] ACPI: button: Power Button [PWRF]
[ 0.810574] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.810577] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.810871] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.811227] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.813040] hpet_acpi_add: no address or irqs in _CRS
[ 0.813086] Non-volatile memory driver v1.3
[ 0.813088] Linux agpgart interface v0.103
[ 0.848267] ACPI: bus type drm_connector registered
[ 0.849408] Freeing initrd memory: 49536K
[ 0.851086] ahci 0000:00:17.0: enabling device (0000 -> 0003)
[ 0.851445] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.851449] ahci 0000:00:17.0: 4/4 ports implemented (port mask 0xf0)
[ 0.851451] ahci 0000:00:17.0: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds
[ 0.858382] scsi host0: ahci
[ 0.858649] scsi host1: ahci
[ 0.858905] scsi host2: ahci
[ 0.859144] scsi host3: ahci
[ 0.859362] scsi host4: ahci
[ 0.859521] scsi host5: ahci
[ 0.859722] scsi host6: ahci
[ 0.859939] scsi host7: ahci
[ 0.859979] ata1: DUMMY
[ 0.859980] ata2: DUMMY
[ 0.859981] ata3: DUMMY
[ 0.859981] ata4: DUMMY
[ 0.859988] ata5: SATA max UDMA/133 abar m2048@0x83602000 port 0x83602300 irq 132 lpm-pol 3
[ 0.859990] ata6: SATA max UDMA/133 abar m2048@0x83602000 port 0x83602380 irq 132 lpm-pol 3
[ 0.859992] ata7: SATA max UDMA/133 abar m2048@0x83602000 port 0x83602400 irq 132 lpm-pol 3
[ 0.859994] ata8: SATA max UDMA/133 abar m2048@0x83602000 port 0x83602480 irq 132 lpm-pol 3
[ 0.860234] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.860241] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.861367] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 0.861715] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.861718] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.861721] xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.861762] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
[ 0.861765] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.861766] usb usb1: Product: xHCI Host Controller
[ 0.861768] usb usb1: Manufacturer: Linux 6.18.8-arch2-1 xhci-hcd
[ 0.861769] usb usb1: SerialNumber: 0000:00:14.0
[ 0.861977] hub 1-0:1.0: USB hub found
[ 0.862003] hub 1-0:1.0: 16 ports detected
[ 0.866645] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.18
[ 0.866648] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.866650] usb usb2: Product: xHCI Host Controller
[ 0.866651] usb usb2: Manufacturer: Linux 6.18.8-arch2-1 xhci-hcd
[ 0.866653] usb usb2: SerialNumber: 0000:00:14.0
[ 0.866846] hub 2-0:1.0: USB hub found
[ 0.866872] hub 2-0:1.0: 8 ports detected
[ 0.870149] usbcore: registered new interface driver usbserial_generic
[ 0.870156] usbserial: USB Serial support registered for generic
[ 0.870182] i8042: PNP: No PS/2 controller found.
[ 0.870376] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.871305] rtc_cmos rtc_cmos: registered as rtc0
[ 0.871463] rtc_cmos rtc_cmos: setting system clock to 2026-02-11T07:52:43 UTC (1770796363)
[ 0.871496] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.873200] intel_pstate: Intel P-state driver initializing
[ 0.877400] intel_pstate: HWP enabled
[ 0.877864] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[ 0.877866] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.878877] fbcon: Deferring console take-over
[ 0.878879] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.878971] hid: raw HID events driver (C) Jiri Kosina
[ 0.878992] usbcore: registered new interface driver usbhid
[ 0.878993] usbhid: USB HID core driver
[ 0.879025] rust_binder: Loaded Rust Binder.
[ 0.879051] drop_monitor: Initializing network drop monitor service
[ 0.879177] NET: Registered PF_INET6 protocol family
[ 0.879466] Segment Routing with IPv6
[ 0.879467] RPL Segment Routing with IPv6
[ 0.879477] In-situ OAM (IOAM) with IPv6
[ 0.879498] NET: Registered PF_PACKET protocol family
[ 0.881889] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.882457] microcode: Current revision: 0x00000133
[ 0.882459] microcode: Updated early from: 0x0000012b
[ 0.883013] IPI shorthand broadcast: enabled
[ 0.885075] sched_clock: Marking stable (878001133, 6690212)->(941569458, -56878113)
[ 0.885436] registered taskstats version 1
[ 0.886374] Loading compiled-in X.509 certificates
[ 0.894094] Loaded X.509 cert 'Build time autogenerated kernel key: c1b5fa5fa0cb5d255090ff90450001540de77344'
[ 0.896403] Demotion targets for Node 0: null
[ 0.896552] Key type .fscrypt registered
[ 0.896554] Key type fscrypt-provisioning registered
[ 0.896847] Btrfs loaded, zoned=yes, fsverity=yes
[ 0.896881] Key type big_key registered
[ 0.897134] integrity: Loading X.509 certificate: UEFI:db
[ 0.900826] integrity: Loaded X.509 cert 'ASUSTeK MotherBoard SW Key Certificate: da83b990422ebc8c441f8d8b039a65a2'
[ 0.900829] integrity: Loading X.509 certificate: UEFI:db
[ 0.901148] integrity: Loaded X.509 cert 'ASUSTeK Notebook SW Key Certificate: b8e581e4df77a5bb4282d5ccfc00c071'
[ 0.901150] integrity: Loading X.509 certificate: UEFI:db
[ 0.901173] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.901174] integrity: Loading X.509 certificate: UEFI:db
[ 0.901193] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.901195] integrity: Loading X.509 certificate: UEFI:db
[ 0.901211] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[ 0.901213] integrity: Loading X.509 certificate: UEFI:db
[ 0.901229] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 0.903047] PM: Magic number: 14:879:874
[ 0.903113] cpuid cpu30: hash matches
[ 0.903156] pci 0000:00:0e.0: hash matches
[ 0.903164] acpi device:e7: hash matches
[ 0.903192] acpi device:ba: hash matches
[ 0.903239] processor cpu30: hash matches
[ 0.905527] RAS: Correctable Errors collector initialized.
[ 0.912139] clk: Disabling unused clocks
[ 0.912144] PM: genpd: Disabling unused power domains
[ 1.106955] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[ 1.171278] ata8: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.171327] ata5: SATA link down (SStatus 4 SControl 300)
[ 1.171381] ata6: SATA link down (SStatus 4 SControl 300)
[ 1.171421] ata7: SATA link down (SStatus 4 SControl 300)
[ 1.172579] ata8.00: ATA-8: ST1000DM010-2EP102, CC46, max UDMA/133
[ 1.198048] ata8.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.198065] ata8.00: Features: DIPM
[ 1.199759] ata8.00: configured for UDMA/133
[ 1.200650] scsi 7:0:0:0: Direct-Access ATA ST1000DM010-2EP1 CC46 PQ: 0 ANSI: 5
[ 1.201542] sd 7:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 1.201557] sd 7:0:0:0: [sda] 4096-byte physical blocks
[ 1.201578] sd 7:0:0:0: [sda] Write Protect is off
[ 1.201584] sd 7:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.201611] sd 7:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.201659] sd 7:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 1.274577] sda: sda1
[ 1.275018] sd 7:0:0:0: [sda] Attached SCSI disk
[ 1.295502] Freeing unused decrypted memory: 2028K
[ 1.296287] Freeing unused kernel image (initmem) memory: 4736K
[ 1.296302] Write protecting the kernel read-only data: 36864k
[ 1.297060] Freeing unused kernel image (text/rodata gap) memory: 164K
[ 1.297175] Freeing unused kernel image (rodata/data gap) memory: 12K
[ 1.304539] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.304543] rodata_test: all tests were successful
[ 1.304548] Run /init as init process
[ 1.304549] with arguments:
[ 1.304550] /init
[ 1.304551] splash
[ 1.304552] with environment:
[ 1.304552] HOME=/
[ 1.304553] TERM=linux
[ 1.304554] cryptdevice=UUID=c3a5bb21-0011-4385-8427-99d080d36af7:luks-c3a5bb21-0011-4385-8427-99d080d36af7
[ 1.351235] usb 2-8: new SuperSpeed USB device number 2 using xhci_hcd
[ 1.403554] usb 2-8: New USB device found, idVendor=174c, idProduct=3074, bcdDevice= 0.01
[ 1.403560] usb 2-8: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[ 1.403562] usb 2-8: Product: ASM107x
[ 1.403564] usb 2-8: Manufacturer: ASUS TEK.
[ 1.415571] hub 2-8:1.0: USB hub found
[ 1.419223] hub 2-8:1.0: 4 ports detected
[ 1.523080] vmd 0000:00:0e.0: enabling device (0000 -> 0002)
[ 1.523544] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[ 1.523546] pci_bus 10000:e0: root bus resource [bus e0-ff]
[ 1.523548] pci_bus 10000:e0: root bus resource [mem 0x80000000-0x81ffffff]
[ 1.523549] pci_bus 10000:e0: root bus resource [mem 0x4c14102000-0x4c141fffff 64bit]
[ 1.528147] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[ 1.528630] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 1.536329] Key type psk registered
[ 1.536647] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[ 1.536983] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 1.544718] i2c i2c-1: Failed to register i2c client ITE8853:00 at 0x40 (-16)
[ 1.545938] vmd 0000:00:0e.0: Bound to PCI domain 10000
[ 1.546997] intel-lpss 0000:00:15.2: enabling device (0004 -> 0006)
[ 1.547268] idma64 idma64.2: Found Intel integrated DMA 64-bit
[ 1.555857] nvme 0000:04:00.0: platform quirk: setting simple suspend
[ 1.555860] nvme 0000:0d:00.0: platform quirk: setting simple suspend
[ 1.555861] nvme 0000:09:00.0: platform quirk: setting simple suspend
[ 1.556051] nvme nvme1: pci function 0000:0d:00.0
[ 1.556108] nvme nvme2: pci function 0000:09:00.0
[ 1.556110] nvme nvme0: pci function 0000:04:00.0
[ 1.568356] nvme nvme2: 32/0/0 default/read/poll queues
[ 1.576288] nvme nvme1: missing or invalid SUBNQN field.
[ 1.578099] nvme2n1: p1 p2
[ 1.610899] nvme nvme0: 32/0/0 default/read/poll queues
[ 1.619310] nvme0n1: p1 p2
[ 1.623830] nvme nvme1: allocated 128 MiB host memory buffer (32 segments).
[ 1.625397] nvme nvme1: 8/0/0 default/read/poll queues
[ 1.627989] nvme1n1: p1 p2 p3
[ 1.837998] usb 2-8.1: new SuperSpeed USB device number 3 using xhci_hcd
[ 1.857087] usb 2-8.1: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.63
[ 1.857091] usb 2-8.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.857092] usb 2-8.1: Product: USB3.1 Hub
[ 1.857093] usb 2-8.1: Manufacturer: GenesysLogic
[ 1.866306] hub 2-8.1:1.0: USB hub found
[ 1.867086] hub 2-8.1:1.0: 4 ports detected
[ 2.773071] usb 1-2: New USB device found, idVendor=0b05, idProduct=1af1, bcdDevice= 0.13
[ 2.773077] usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=0
[ 2.773079] usb 1-2: Product: USB Audio
[ 2.773080] usb 1-2: Manufacturer: Generic
[ 2.797522] hid-generic 0003:0B05:1AF1.0001: hiddev96,hidraw0: USB HID v1.11 Device [Generic USB Audio] on usb-0000:00:14.0-2/input7
[ 2.909707] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[ 3.037166] usb 1-4: config 1 has an invalid interface number: 2 but max is 1
[ 3.037176] usb 1-4: config 1 has no interface number 1
[ 3.038211] usb 1-4: New USB device found, idVendor=0b05, idProduct=19af, bcdDevice= 1.00
[ 3.038216] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.038218] usb 1-4: Product: AURA LED Controller
[ 3.038220] usb 1-4: Manufacturer: AsusTek Computer Inc.
[ 3.038221] usb 1-4: SerialNumber: 9876543210
[ 3.040495] hid-generic 0003:0B05:19AF.0002: hiddev97,hidraw1: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:00:14.0-4/input2
[ 3.151707] usb 1-8: new high-speed USB device number 4 using xhci_hcd
[ 3.276560] usb 1-8: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.90
[ 3.276564] usb 1-8: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 3.276566] usb 1-8: Product: USB2.0 Hub
[ 3.277853] hub 1-8:1.0: USB hub found
[ 3.278181] hub 1-8:1.0: 2 ports detected
[ 3.391704] usb 1-10: new high-speed USB device number 5 using xhci_hcd
[ 3.517138] usb 1-10: New USB device found, idVendor=174c, idProduct=2074, bcdDevice= 0.01
[ 3.517142] usb 1-10: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[ 3.517144] usb 1-10: Product: ASM107x
[ 3.517146] usb 1-10: Manufacturer: ASUS TEK.
[ 3.518298] hub 1-10:1.0: USB hub found
[ 3.518469] hub 1-10:1.0: 4 ports detected
[ 3.632703] usb 1-11: new high-speed USB device number 6 using xhci_hcd
[ 3.757529] usb 1-11: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.90
[ 3.757534] usb 1-11: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 3.757536] usb 1-11: Product: USB2.0 Hub
[ 3.758941] hub 1-11:1.0: USB hub found
[ 3.759269] hub 1-11:1.0: 4 ports detected
[ 3.835765] usb 1-10.1: new high-speed USB device number 7 using xhci_hcd
[ 3.929662] usb 1-10.1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.63
[ 3.929666] usb 1-10.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.929667] usb 1-10.1: Product: USB2.1 Hub
[ 3.929668] usb 1-10.1: Manufacturer: GenesysLogic
[ 3.930948] hub 1-10.1:1.0: USB hub found
[ 3.931206] hub 1-10.1:1.0: 4 ports detected
[ 4.018654] [drm] amdgpu kernel modesetting enabled.
[ 4.018865] amdgpu: Virtual CRAT table created for CPU
[ 4.018875] amdgpu: Topology: Add CPU node
[ 4.019001] amdgpu 0000:03:00.0: enabling device (0006 -> 0007)
[ 4.019123] amdgpu 0000:03:00.0: amdgpu: initializing kernel modesetting (SIENNA_CICHLID 0x1002:0x73BF 0x1462:0x3961 0xC3).
[ 4.019134] amdgpu 0000:03:00.0: amdgpu: register mmio base: 0x82D00000
[ 4.019135] amdgpu 0000:03:00.0: amdgpu: register mmio size: 1048576
[ 4.022797] amdgpu 0000:03:00.0: amdgpu: detected ip block number 0 <common_v1_0_0> (nv_common)
[ 4.022800] amdgpu 0000:03:00.0: amdgpu: detected ip block number 1 <gmc_v10_0_0> (gmc_v10_0)
[ 4.022802] amdgpu 0000:03:00.0: amdgpu: detected ip block number 2 <ih_v5_0_0> (navi10_ih)
[ 4.022803] amdgpu 0000:03:00.0: amdgpu: detected ip block number 3 <psp_v11_0_0> (psp)
[ 4.022804] amdgpu 0000:03:00.0: amdgpu: detected ip block number 4 <smu_v11_0_0> (smu)
[ 4.022805] amdgpu 0000:03:00.0: amdgpu: detected ip block number 5 <dce_v1_0_0> (dm)
[ 4.022806] amdgpu 0000:03:00.0: amdgpu: detected ip block number 6 <gfx_v10_0_0> (gfx_v10_0)
[ 4.022807] amdgpu 0000:03:00.0: amdgpu: detected ip block number 7 <sdma_v5_2_0> (sdma_v5_2)
[ 4.022809] amdgpu 0000:03:00.0: amdgpu: detected ip block number 8 <vcn_v3_0_0> (vcn_v3_0)
[ 4.022810] amdgpu 0000:03:00.0: amdgpu: detected ip block number 9 <jpeg_v3_0_0> (jpeg_v3_0)
[ 4.022822] amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
[ 4.022824] amdgpu: ATOM BIOS: 113-V396TRIO-2OC
[ 4.039877] usb 1-13: new high-speed USB device number 8 using xhci_hcd
[ 4.064169] amdgpu 0000:03:00.0: vgaarb: deactivate vga console
[ 4.064177] amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 4.064221] amdgpu 0000:03:00.0: amdgpu: MEM ECC is not presented.
[ 4.064223] amdgpu 0000:03:00.0: amdgpu: SRAM ECC is not presented.
[ 4.064283] amdgpu 0000:03:00.0: amdgpu: vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 4.064294] amdgpu 0000:03:00.0: amdgpu: VRAM: 16368M 0x0000008000000000 - 0x00000083FEFFFFFF (16368M used)
[ 4.064299] amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 4.064316] [drm] Detected VRAM RAM=16368M, BAR=16384M
[ 4.064319] [drm] RAM width 256bits GDDR6
[ 4.064602] amdgpu 0000:03:00.0: amdgpu: amdgpu: 16368M of VRAM memory ready
[ 4.064606] amdgpu 0000:03:00.0: amdgpu: amdgpu: 48177M of GTT memory ready.
[ 4.064636] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 4.064820] [drm] PCIE GART of 512M enabled (table at 0x0000008000300000).
[ 4.164554] usb 1-13: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.90
[ 4.164559] usb 1-13: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 4.164561] usb 1-13: Product: USB2.0 Hub
[ 4.166327] hub 1-13:1.0: USB hub found
[ 4.166668] hub 1-13:1.0: 4 ports detected
[ 4.242767] usb 1-10.2: new high-speed USB device number 9 using xhci_hcd
[ 4.408770] usb 1-11.1: new full-speed USB device number 10 using xhci_hcd
[ 4.483413] usb 1-11.1: New USB device found, idVendor=1a86, idProduct=7523, bcdDevice=81.34
[ 4.483416] usb 1-11.1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 4.483418] usb 1-11.1: Product: USB Serial
[ 4.553326] usb 1-10.2: New USB device found, idVendor=046d, idProduct=0825, bcdDevice= 0.12
[ 4.553338] usb 1-10.2: New USB device strings: Mfr=0, Product=0, SerialNumber=2
[ 4.553344] usb 1-10.2: SerialNumber: 37346D40
[ 4.578715] usb 1-10.1.1: new full-speed USB device number 11 using xhci_hcd
[ 4.689240] usb 1-10.1.1: New USB device found, idVendor=1050, idProduct=0407, bcdDevice= 5.43
[ 4.689244] usb 1-10.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.689245] usb 1-10.1.1: Product: YubiKey OTP+FIDO+CCID
[ 4.689246] usb 1-10.1.1: Manufacturer: Yubico
[ 4.704686] input: Yubico YubiKey OTP+FIDO+CCID as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.1/1-10.1.1/1-10.1.1:1.0/0003:1050:0407.0003/input/input3
[ 4.792916] hid-generic 0003:1050:0407.0003: input,hidraw2: USB HID v1.10 Keyboard [Yubico YubiKey OTP+FIDO+CCID] on usb-0000:00:14.0-10.1.1/input0
[ 4.793538] hid-generic 0003:1050:0407.0004: hiddev98,hidraw3: USB HID v1.10 Device [Yubico YubiKey OTP+FIDO+CCID] on usb-0000:00:14.0-10.1.1/input1
[ 4.798786] usb 1-14: new full-speed USB device number 12 using xhci_hcd
[ 4.923398] usb 1-14: New USB device found, idVendor=8087, idProduct=0038, bcdDevice= 0.00
[ 4.923402] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4.994765] usb 1-13.2: new high-speed USB device number 13 using xhci_hcd
[ 5.079776] usb 1-13.2: New USB device found, idVendor=0b05, idProduct=1988, bcdDevice= 2.00
[ 5.079780] usb 1-13.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5.079781] usb 1-13.2: Product: ROG RYUJIN II
[ 5.079782] usb 1-13.2: Manufacturer: AsusTek Computer Inc.
[ 5.079783] usb 1-13.2: SerialNumber: 397935563031
[ 5.083483] hid-generic 0003:0B05:1988.0005: hiddev99,hidraw4: USB HID v1.11 Device [AsusTek Computer Inc. ROG RYUJIN II] on usb-0000:00:14.0-13.2/input1
[ 5.141771] usb 1-11.4: new full-speed USB device number 14 using xhci_hcd
[ 5.224784] usb 1-11.4: config 1 has an invalid interface number: 1 but max is 0
[ 5.224795] usb 1-11.4: config 1 has no interface number 0
[ 5.239146] usb 1-11.4: New USB device found, idVendor=170d, idProduct=0108, bcdDevice= 1.00
[ 5.239160] usb 1-11.4: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[ 5.239162] usb 1-11.4: Product: MSI GH50 Wireless Battery Charger
[ 5.239163] usb 1-11.4: Manufacturer: MSI
[ 5.265611] input: MSI MSI GH50 Wireless Battery Charger Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11.4/1-11.4:1.1/0003:170D:0108.0006/input/input4
[ 5.280901] amdgpu 0000:03:00.0: amdgpu: STB initialized to 2048 entries
[ 5.280945] amdgpu 0000:03:00.0: amdgpu: [drm] Loading DMUB firmware via PSP: version=0x02020021
[ 5.281271] [drm] use_doorbell being set to: [true]
[ 5.281284] [drm] use_doorbell being set to: [true]
[ 5.281293] [drm] use_doorbell being set to: [true]
[ 5.281302] [drm] use_doorbell being set to: [true]
[ 5.281314] amdgpu 0000:03:00.0: amdgpu: [VCN instance 0] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 14
[ 5.281405] amdgpu 0000:03:00.0: amdgpu: [VCN instance 1] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 14
[ 5.300769] usb 1-10.3: new full-speed USB device number 15 using xhci_hcd
[ 5.315958] input: MSI MSI GH50 Wireless Battery Charger as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11.4/1-11.4:1.1/0003:170D:0108.0006/input/input5
[ 5.316123] input: MSI MSI GH50 Wireless Battery Charger as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11.4/1-11.4:1.1/0003:170D:0108.0006/input/input7
[ 5.316502] hid-generic 0003:170D:0108.0006: input,hiddev100,hidraw5: USB HID v1.11 Device [MSI MSI GH50 Wireless Battery Charger] on usb-0000:00:14.0-11.4/input1
[ 5.345917] amdgpu 0000:03:00.0: amdgpu: reserve 0xa00000 from 0x83fd000000 for PSP TMR
[ 5.395469] usb 1-10.3: New USB device found, idVendor=19f5, idProduct=32f5, bcdDevice= 1.19
[ 5.395479] usb 1-10.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 5.395483] usb 1-10.3: Product: NuPhy Halo75 V2
[ 5.395485] usb 1-10.3: Manufacturer: NuPhy
[ 5.410330] input: NuPhy NuPhy Halo75 V2 as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3/1-10.3:1.0/0003:19F5:32F5.0007/input/input8
[ 5.455776] usb 1-13.3: new high-speed USB device number 16 using xhci_hcd
[ 5.490382] amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: optional securedisplay ta ucode is not available
[ 5.490413] amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x00000040, smu fw if version = 0x00000041, smu fw program = 0, version = 0x003a5a00 (58.90.0)
[ 5.490423] amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
[ 5.490459] amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
[ 5.500996] hid-generic 0003:19F5:32F5.0007: input,hidraw6: USB HID v1.11 Keyboard [NuPhy NuPhy Halo75 V2] on usb-0000:00:14.0-10.3/input0
[ 5.502289] hid-generic 0003:19F5:32F5.0008: hiddev101,hidraw7: USB HID v1.11 Device [NuPhy NuPhy Halo75 V2] on usb-0000:00:14.0-10.3/input1
[ 5.503710] input: NuPhy NuPhy Halo75 V2 Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3/1-10.3:1.2/0003:19F5:32F5.0009/input/input9
[ 5.503838] input: NuPhy NuPhy Halo75 V2 System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3/1-10.3:1.2/0003:19F5:32F5.0009/input/input10
[ 5.540739] usb 1-13.3: New USB device found, idVendor=1b1c, idProduct=0c3f, bcdDevice= 1.00
[ 5.540742] usb 1-13.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5.540743] usb 1-13.3: Product: iCUE LINK System Hub
[ 5.540744] usb 1-13.3: Manufacturer: Corsair
[ 5.540745] usb 1-13.3: SerialNumber: 6EF1DBF69DC42B5D8DF0312C2C7A1B01
[ 5.544235] hid-generic 0003:1B1C:0C3F.000A: hiddev102,hidraw8: USB HID v1.00 Device [Corsair iCUE LINK System Hub] on usb-0000:00:14.0-13.3/input0
[ 5.544740] hid-generic 0003:1B1C:0C3F.000B: hiddev103,hidraw9: USB HID v1.00 Device [Corsair iCUE LINK System Hub] on usb-0000:00:14.0-13.3/input1
[ 5.554976] input: NuPhy NuPhy Halo75 V2 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3/1-10.3:1.2/0003:19F5:32F5.0009/input/input11
[ 5.555138] input: NuPhy NuPhy Halo75 V2 Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3/1-10.3:1.2/0003:19F5:32F5.0009/input/input12
[ 5.560365] amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
[ 5.560942] amdgpu 0000:03:00.0: amdgpu: [drm] Display Core v3.2.351 initialized on DCN 3.0
[ 5.560944] amdgpu 0000:03:00.0: amdgpu: [drm] DP-HDMI FRL PCON supported
[ 5.562086] amdgpu 0000:03:00.0: amdgpu: [drm] DMUB hardware initialized: version=0x02020021
[ 5.590797] hid-generic 0003:19F5:32F5.0009: input,hidraw10: USB HID v1.11 Mouse [NuPhy NuPhy Halo75 V2] on usb-0000:00:14.0-10.3/input2
[ 5.591429] hid-generic 0003:19F5:32F5.000C: hiddev104,hidraw11: USB HID v1.11 Device [NuPhy NuPhy Halo75 V2] on usb-0000:00:14.0-10.3/input3
[ 5.672799] usb 1-10.4: new full-speed USB device number 17 using xhci_hcd
[ 5.771294] usb 1-10.4: New USB device found, idVendor=046d, idProduct=c548, bcdDevice= 5.03
[ 5.771304] usb 1-10.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 5.771307] usb 1-10.4: Product: USB Receiver
[ 5.771309] usb 1-10.4: Manufacturer: Logitech
[ 5.784663] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.4/1-10.4:1.0/0003:046D:C548.000D/input/input13
[ 5.871945] hid-generic 0003:046D:C548.000D: input,hidraw12: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-10.4/input0
[ 5.873482] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.4/1-10.4:1.1/0003:046D:C548.000E/input/input14
[ 5.873608] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.4/1-10.4:1.1/0003:046D:C548.000E/input/input15
[ 5.886595] amdgpu 0000:03:00.0: amdgpu: kiq ring mec 2 pipe 1 q 0
[ 5.923920] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.4/1-10.4:1.1/0003:046D:C548.000E/input/input16
[ 5.923953] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.4/1-10.4:1.1/0003:046D:C548.000E/input/input17
[ 5.924102] hid-generic 0003:046D:C548.000E: input,hiddev105,hidraw13: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-10.4/input1
[ 5.925555] hid-generic 0003:046D:C548.000F: hiddev106,hidraw14: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-10.4/input2
[ 5.928254] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.4/1-10.4:1.3/0003:046D:C548.0010/input/input18
[ 5.928288] hid-generic 0003:046D:C548.0010: input,hidraw15: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-10.4/input3
[ 5.952463] amdgpu: HMM registered 16368MB device memory
[ 5.953376] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 5.953391] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 5.953569] amdgpu: Virtual CRAT table created for GPU
[ 5.954058] amdgpu: Topology: Add dGPU node [0x73bf:0x1002]
[ 5.954060] kfd kfd: amdgpu: added device 1002:73bf
[ 5.954083] amdgpu 0000:03:00.0: amdgpu: SE 4, SH per SE 2, CU per SH 10, active_cu_number 60
[ 5.954087] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 5.954088] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
[ 5.954089] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
[ 5.954090] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
[ 5.954090] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 5.954091] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 5.954092] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 5.954092] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 5.954093] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 5.954094] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 5.954095] amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
[ 5.954096] amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
[ 5.954096] amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 14 on hub 0
[ 5.954097] amdgpu 0000:03:00.0: amdgpu: ring sdma2 uses VM inv eng 15 on hub 0
[ 5.954098] amdgpu 0000:03:00.0: amdgpu: ring sdma3 uses VM inv eng 16 on hub 0
[ 5.954099] amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
[ 5.954099] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
[ 5.954100] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
[ 5.954101] amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_1 uses VM inv eng 5 on hub 8
[ 5.954102] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_1.0 uses VM inv eng 6 on hub 8
[ 5.954102] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_1.1 uses VM inv eng 7 on hub 8
[ 5.954103] amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 8 on hub 8
[ 5.955224] amdgpu 0000:03:00.0: amdgpu: Using BACO for runtime pm
[ 5.955490] amdgpu 0000:03:00.0: [drm] Registered 6 planes with drm panic
[ 5.955491] [drm] Initialized amdgpu 3.64.0 for 0000:03:00.0 on minor 1
[ 5.961499] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.4/1-10.4:1.3/0003:046D:C548.0010/input/input19
[ 5.961560] hid-multitouch 0003:046D:C548.0010: input,hidraw15: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-10.4/input3
[ 5.966427] fbcon: amdgpudrmfb (fb0) is primary device
[ 5.966429] fbcon: Deferring console take-over
[ 5.966431] amdgpu 0000:03:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 5.976430] amdgpu 0000:0c:00.0: enabling device (0006 -> 0007)
[ 5.976504] amdgpu 0000:0c:00.0: amdgpu: initializing kernel modesetting (IP DISCOVERY 0x1002:0x744C 0x148C:0x2425 0xCE).
[ 5.976519] amdgpu 0000:0c:00.0: amdgpu: register mmio base: 0x82A00000
[ 5.976520] amdgpu 0000:0c:00.0: amdgpu: register mmio size: 1048576
[ 5.982049] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 0 <common_v1_0_0> (soc21_common)
[ 5.982051] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 1 <gmc_v11_0_0> (gmc_v11_0)
[ 5.982052] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 2 <ih_v6_0_0> (ih_v6_0)
[ 5.982054] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 3 <psp_v13_0_0> (psp)
[ 5.982054] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 4 <smu_v13_0_0> (smu)
[ 5.982056] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 5 <dce_v1_0_0> (dm)
[ 5.982057] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 6 <gfx_v11_0_0> (gfx_v11_0)
[ 5.982058] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 7 <sdma_v6_0_0> (sdma_v6_0)
[ 5.982059] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 8 <vcn_v4_0_0> (vcn_v4_0)
[ 5.982060] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 9 <jpeg_v4_0_0> (jpeg_v4_0)
[ 5.982061] amdgpu 0000:0c:00.0: amdgpu: detected ip block number 10 <mes_v11_0_0> (mes_v11_0)
[ 5.982083] amdgpu 0000:0c:00.0: amdgpu: Fetched VBIOS from VFCT
[ 5.982085] amdgpu: ATOM BIOS: 113-EXT91423-001
[ 5.984988] amdgpu 0000:0c:00.0: amdgpu: CP RS64 enable
[ 5.988551] amdgpu 0000:0c:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
[ 5.988569] amdgpu 0000:0c:00.0: amdgpu: PCIE atomic ops is not supported
[ 5.988586] amdgpu 0000:0c:00.0: amdgpu: MEM ECC is not presented.
[ 5.988587] amdgpu 0000:0c:00.0: amdgpu: SRAM ECC is not presented.
[ 5.988655] amdgpu 0000:0c:00.0: amdgpu: vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 5.988662] amdgpu 0000:0c:00.0: amdgpu: VRAM: 16368M 0x0000008000000000 - 0x00000083FEFFFFFF (16368M used)
[ 5.988664] amdgpu 0000:0c:00.0: amdgpu: GART: 512M 0x00007FFF00000000 - 0x00007FFF1FFFFFFF
[ 5.988677] [drm] Detected VRAM RAM=16368M, BAR=16384M
[ 5.988678] [drm] RAM width 256bits GDDR6
[ 5.988797] amdgpu 0000:0c:00.0: amdgpu: amdgpu: 16368M of VRAM memory ready
[ 5.988798] amdgpu 0000:0c:00.0: amdgpu: amdgpu: 48177M of GTT memory ready.
[ 5.988808] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 5.988872] [drm] PCIE GART of 512M enabled (table at 0x00000083FEB00000).
[ 5.989569] amdgpu 0000:0c:00.0: amdgpu: [drm] Loading DMUB firmware via PSP: version=0x07002F00
[ 5.989758] amdgpu 0000:0c:00.0: amdgpu: [VCN instance 0] Found VCN firmware Version ENC: 1.24 DEC: 9 VEP: 0 Revision: 27
[ 5.989891] amdgpu 0000:0c:00.0: amdgpu: [VCN instance 1] Found VCN firmware Version ENC: 1.24 DEC: 9 VEP: 0 Revision: 27
[ 6.059730] amdgpu 0000:0c:00.0: amdgpu: reserve 0x1300000 from 0x83fc000000 for PSP TMR
[ 6.211412] amdgpu 0000:0c:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 6.211421] amdgpu 0000:0c:00.0: amdgpu: SECUREDISPLAY: optional securedisplay ta ucode is not available
[ 6.211474] amdgpu 0000:0c:00.0: amdgpu: smu driver if version = 0x0000003d, smu fw if version = 0x00000040, smu fw program = 0, smu fw version = 0x004e8300 (78.131.0)
[ 6.211482] amdgpu 0000:0c:00.0: amdgpu: SMU driver if version not matched
[ 6.363615] amdgpu 0000:0c:00.0: amdgpu: SMU is initialized successfully!
[ 6.364261] amdgpu 0000:0c:00.0: amdgpu: [drm] Display Core v3.2.351 initialized on DCN 3.2
[ 6.364263] amdgpu 0000:0c:00.0: amdgpu: [drm] DP-HDMI FRL PCON supported
[ 6.366153] amdgpu 0000:0c:00.0: amdgpu: [drm] DMUB hardware initialized: version=0x07002F00
[ 6.377452] amdgpu 0000:0c:00.0: amdgpu: [drm] DP-4: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
[ 6.377648] amdgpu 0000:0c:00.0: amdgpu: [drm] DP-5: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
[ 6.377868] amdgpu 0000:0c:00.0: amdgpu: [drm] DP-6: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
[ 6.377917] amdgpu 0000:0c:00.0: amdgpu: [drm] HDMI-A-2: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
[ 6.452840] amdgpu: HMM registered 16368MB device memory
[ 6.454776] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 6.454790] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 6.454841] amdgpu: Virtual CRAT table created for GPU
[ 6.455133] amdgpu: Topology: Add dGPU node [0x744c:0x1002]
[ 6.455134] kfd kfd: amdgpu: added device 1002:744c
[ 6.455150] amdgpu 0000:0c:00.0: amdgpu: SE 6, SH per SE 2, CU per SH 8, active_cu_number 80
[ 6.455153] amdgpu 0000:0c:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 6.455154] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 6.455155] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 6.455155] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 6.455156] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 6.455157] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 6.455157] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 6.455158] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 6.455159] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 6.455159] amdgpu 0000:0c:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[ 6.455160] amdgpu 0000:0c:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
[ 6.455161] amdgpu 0000:0c:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
[ 6.455162] amdgpu 0000:0c:00.0: amdgpu: ring vcn_unified_1 uses VM inv eng 1 on hub 8
[ 6.455162] amdgpu 0000:0c:00.0: amdgpu: ring jpeg_dec uses VM inv eng 4 on hub 8
[ 6.455163] amdgpu 0000:0c:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 14 on hub 0
[ 6.456534] amdgpu 0000:0c:00.0: amdgpu: Using BACO for runtime pm
[ 6.457021] amdgpu 0000:0c:00.0: [drm] Registered 4 planes with drm panic
[ 6.457023] [drm] Initialized amdgpu 3.64.0 for 0000:0c:00.0 on minor 0
[ 6.460140] amdgpu 0000:0c:00.0: [drm] Cannot find any crtc or sizes
[ 6.460153] [drm] pre_validate_dsc:1667 MST_DSC dsc precompute is not needed
[ 6.885416] device-mapper: uevent: version 1.0.3
[ 6.885478] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[ 6.894565] Key type trusted registered
[ 6.897166] Key type encrypted registered
[ 14.920864] [drm] PCIE GART of 512M enabled (table at 0x00000083FEB00000).
[ 14.920917] amdgpu 0000:0c:00.0: amdgpu: PSP is resuming...
[ 14.979475] amdgpu 0000:0c:00.0: amdgpu: reserve 0x1300000 from 0x83fc000000 for PSP TMR
[ 15.128520] amdgpu 0000:0c:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 15.128523] amdgpu 0000:0c:00.0: amdgpu: SECUREDISPLAY: optional securedisplay ta ucode is not available
[ 15.128528] amdgpu 0000:0c:00.0: amdgpu: SMU is resuming...
[ 15.128547] amdgpu 0000:0c:00.0: amdgpu: smu driver if version = 0x0000003d, smu fw if version = 0x00000040, smu fw program = 0, smu fw version = 0x004e8300 (78.131.0)
[ 15.128554] amdgpu 0000:0c:00.0: amdgpu: SMU driver if version not matched
[ 15.283442] amdgpu 0000:0c:00.0: amdgpu: SMU is resumed successfully!
[ 15.292947] amdgpu 0000:0c:00.0: amdgpu: [drm] DMUB hardware initialized: version=0x07002F00
[ 15.299521] amdgpu 0000:0c:00.0: [drm] Cannot find any crtc or sizes
[ 15.299527] amdgpu 0000:0c:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 15.299528] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 15.299529] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 15.299530] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 15.299530] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 15.299531] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 15.299532] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 15.299532] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 15.299533] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 15.299534] amdgpu 0000:0c:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[ 15.299535] amdgpu 0000:0c:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
[ 15.299535] amdgpu 0000:0c:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
[ 15.299536] amdgpu 0000:0c:00.0: amdgpu: ring vcn_unified_1 uses VM inv eng 1 on hub 8
[ 15.299537] amdgpu 0000:0c:00.0: amdgpu: ring jpeg_dec uses VM inv eng 4 on hub 8
[ 15.299537] amdgpu 0000:0c:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 14 on hub 0
[ 15.302905] amdgpu 0000:0c:00.0: [drm] Cannot find any crtc or sizes
[ 25.657796] BTRFS: device fsid 4097c61a-4290-422b-8ef1-c7a62c9cf0a1 devid 1 transid 151029 /dev/mapper/luks-c3a5bb21-0011-4385-8427-99d080d36af7 (253:0) scanned by mount (834)
[ 25.658248] BTRFS info (device dm-0): first mount of filesystem 4097c61a-4290-422b-8ef1-c7a62c9cf0a1
[ 25.658267] BTRFS info (device dm-0): using crc32c (crc32c-lib) checksum algorithm
[ 25.805004] BTRFS info (device dm-0): enabling ssd optimizations
[ 25.805013] BTRFS info (device dm-0): enabling free space tree
[ 26.280471] systemd[1]: systemd 259.1-1-arch running in system mode (+PAM +AUDIT -SELINUX +APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
[ 26.280489] systemd[1]: Detected architecture x86-64.
[ 26.283340] systemd[1]: Hostname set to <NeuroCore>.
[ 26.385458] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 26.410594] systemd-sslh-generator: Configuration directory '/etc/sslh/' does not exist! No units generated.
[ 26.455911] zram: Added device: zram0
[ 26.553655] systemd[1]: /usr/lib/systemd/system/ananicy-cpp.service:16: Support for option CPUAccounting= has been removed and it is ignored
[ 26.565486] systemd[1]: Queued start job for default target Graphical Interface.
[ 26.596025] systemd[1]: Created slice Virtual Machine and Container Slice.
[ 26.597738] systemd[1]: Created slice Slice /system/dirmngr.
[ 26.598382] systemd[1]: Created slice Slice /system/getty.
[ 26.599095] systemd[1]: Created slice Slice /system/gpg-agent.
[ 26.599653] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 26.600187] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 26.600656] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 26.601140] systemd[1]: Created slice Slice /system/keyboxd.
[ 26.601597] systemd[1]: Created slice Slice /system/modprobe.
[ 26.602067] systemd[1]: Created slice Encrypted Volume Units Service Slice.
[ 26.602472] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 26.602940] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[ 26.603198] systemd[1]: Created slice User and Session Slice.
[ 26.603247] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 26.603392] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 26.603415] systemd[1]: Expecting device /dev/disk/by-uuid/0841-2D2F...
[ 26.603422] systemd[1]: Expecting device /dev/disk/by-uuid/c3a5bb21-0011-4385-8427-99d080d36af7...
[ 26.603426] systemd[1]: Expecting device /dev/mapper/luks-c3a5bb21-0011-4385-8427-99d080d36af7...
[ 26.603432] systemd[1]: Expecting device /dev/zram0...
[ 26.603448] systemd[1]: Reached target Login Prompts.
[ 26.603460] systemd[1]: Reached target Image Downloads.
[ 26.603472] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 26.603503] systemd[1]: Reached target Remote File Systems.
[ 26.603515] systemd[1]: Reached target Slice Units.
[ 26.603555] systemd[1]: Reached target Local Verity Protected Volumes.
[ 26.603615] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 26.603701] systemd[1]: Listening on LVM2 poll daemon socket.
[ 26.604456] systemd[1]: Listening on Query the User Interactively for a Password.
[ 26.605295] systemd[1]: Listening on Process Core Dump Socket.
[ 26.605713] systemd[1]: Listening on Credential Encryption/Decryption.
[ 26.606284] systemd[1]: Listening on Factory Reset Management.
[ 26.606340] systemd[1]: Listening on Journal Socket (/dev/log).
[ 26.606382] systemd[1]: Listening on Journal Sockets.
[ 26.606933] systemd[1]: Listening on Console Output Muting Service Socket.
[ 26.606959] systemd[1]: TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
[ 26.606968] systemd[1]: Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
[ 26.607346] systemd[1]: Listening on Disk Repartitioning Service Socket.
[ 26.607377] systemd[1]: Listening on udev Control Socket.
[ 26.607403] systemd[1]: Listening on udev Kernel Socket.
[ 26.607434] systemd[1]: Listening on udev Varlink Socket.
[ 26.607462] systemd[1]: Listening on User Database Manager Socket.
[ 26.608591] systemd[1]: Mounting Huge Pages File System...
[ 26.609063] systemd[1]: Mounting POSIX Message Queue File System...
[ 26.609555] systemd[1]: Mounting Kernel Debug File System...
[ 26.610108] systemd[1]: Mounting Kernel Trace File System...
[ 26.610830] systemd[1]: Starting Create List of Static Device Nodes...
[ 26.611414] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 26.611430] systemd[1]: Load Kernel Module configfs skipped, unmet condition check ConditionKernelModuleLoaded=!configfs
[ 26.611880] systemd[1]: Mounting Kernel Configuration File System...
[ 26.611894] systemd[1]: Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
[ 26.611913] systemd[1]: Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
[ 26.612402] systemd[1]: Mounting FUSE Control File System...
[ 26.612535] systemd[1]: Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
[ 26.614494] systemd[1]: Starting Journal Service...
[ 26.615460] systemd[1]: Starting Load Kernel Modules...
[ 26.615473] systemd[1]: TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
[ 26.615499] systemd[1]: TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
[ 26.616085] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 26.616120] systemd[1]: Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
[ 26.616661] systemd[1]: Starting Load udev Rules from Credentials...
[ 26.617279] systemd[1]: Starting Coldplug All udev Devices...
[ 26.617844] systemd[1]: Starting Virtual Console Setup...
[ 26.619891] systemd[1]: Mounted Huge Pages File System.
[ 26.619985] systemd[1]: Mounted POSIX Message Queue File System.
[ 26.620046] systemd[1]: Mounted Kernel Debug File System.
[ 26.620103] systemd[1]: Mounted Kernel Trace File System.
[ 26.620336] systemd[1]: Finished Create List of Static Device Nodes.
[ 26.622360] systemd[1]: Mounted Kernel Configuration File System.
[ 26.622411] systemd[1]: Mounted FUSE Control File System.
[ 26.623089] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[ 26.623541] systemd[1]: Finished Load udev Rules from Credentials.
[ 26.625307] systemd[1]: Finished Virtual Console Setup.
[ 26.628225] i2c_dev: i2c /dev entries driver
[ 26.629725] Asymmetric key parser 'pkcs8' registered
[ 26.630170] systemd[1]: Finished Load Kernel Modules.
[ 26.644871] systemd[1]: Starting Apply Kernel Variables...
[ 26.647406] systemd-journald[914]: Collecting audit messages is disabled.
[ 26.651185] systemd[1]: Finished Apply Kernel Variables.
[ 26.651967] systemd[1]: Starting CLI Netfilter Manager...
[ 26.654140] systemd[1]: Starting User Database Manager...
[ 26.713617] systemd[1]: Started Journal Service.
[ 26.747669] BTRFS info (device dm-0 state M): use zstd compression, level 3
[ 27.031017] zram0: detected capacity change from 0 to 197335040
[ 27.062504] input: PC Speaker as /devices/platform/pcspkr/input/input20
[ 27.066262] EDAC ie31200: No ECC support
[ 27.066917] EDAC ie31200: No ECC support
[ 27.068517] pps_core: LinuxPPS API ver. 1 registered
[ 27.068524] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 27.074822] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 27.086089] ACPI: bus type thunderbolt registered
[ 27.087542] spi-nor spi0.0: supply vcc not found, using dummy regulator
[ 27.087579] PTP clock support registered
[ 27.092230] Creating 1 MTD partitions on "0000:00:1f.5":
[ 27.092235] 0x000000000000-0x000002000000 : "BIOS"
[ 27.102521] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 27.102550] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 27.104688] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer
[ 27.104698] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 27.104699] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 27.106279] i2c i2c-22: Successfully instantiated SPD at 0x51
[ 27.107360] i2c i2c-22: Successfully instantiated SPD at 0x53
[ 27.107543] Intel(R) 2.5G Ethernet Linux Driver
[ 27.107546] Copyright(c) 2018 Intel Corporation.
[ 27.107585] igc 0000:08:00.0: enabling device (0000 -> 0002)
[ 27.107732] igc 0000:08:00.0: PTM enabled, 4ns granularity
[ 27.107754] igc 0000:08:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 27.116377] asus_wmi: ASUS WMI generic driver loaded
[ 27.119698] intel_pmc_core INT33A1:00: initialized
[ 27.122991] spd5118 22-0051: DDR5 temperature sensor: vendor 0x06:0x32 revision 1.6
[ 27.127553] spd5118 22-0053: DDR5 temperature sensor: vendor 0x06:0x32 revision 1.6
[ 27.155215] igc 0000:08:00.0 (unnamed net_device) (uninitialized): PHC added
[ 27.173319] asus_wmi: SFUN value: 0x1
[ 27.173323] eeepc-wmi eeepc-wmi: Detected ATK, not ASUSWMI, use DSTS
[ 27.174225] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input21
[ 27.182393] igc 0000:08:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[ 27.182399] igc 0000:08:00.0 eth0: MAC: e8:9c:25:38:4f:0f
[ 27.215559] igc 0000:08:00.0 eno2: renamed from eth0
[ 27.238214] mc: Linux media interface: v0.10
[ 27.238310] Bluetooth: Core ver 2.22
[ 27.238328] NET: Registered PF_BLUETOOTH protocol family
[ 27.238329] Bluetooth: HCI device and connection manager initialized
[ 27.238332] Bluetooth: HCI socket layer initialized
[ 27.238335] Bluetooth: L2CAP socket layer initialized
[ 27.238337] Bluetooth: SCO socket layer initialized
[ 27.239371] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 27.239635] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 27.239871] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 27.248186] mousedev: PS/2 mouse device common for all mice
[ 27.259613] videodev: Linux video capture interface: v2.00
[ 27.265565] iwlwifi 0000:07:00.0: enabling device (0000 -> 0002)
[ 27.267625] ACPI Warning: \_SB.PC00.RP01.PXSX._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20250807/nsarguments-61)
[ 27.268444] iwlwifi 0000:07:00.0: Detected crf-id 0x2001910, cnv-id 0x2001910 wfpm id 0x80000000
[ 27.268460] iwlwifi 0000:07:00.0: PCI dev 272b/02f4, rev=0x472, rfid=0x112200
[ 27.268464] iwlwifi 0000:07:00.0: Detected Intel(R) Wi-Fi 7 BE202 160MHz
[ 27.268559] iwlwifi 0000:07:00.0: Direct firmware load for iwlwifi-gl-c0-fm-c0-c99.ucode failed with error -2
[ 27.279087] iwlwifi 0000:07:00.0: loaded firmware version 101.6ef20b19.0 gl-c0-fm-c0-101.ucode op_mode iwlmld
[ 27.313012] rog_ryujin 0003:0B05:1988.0005: hidraw4: USB HID v1.11 Device [AsusTek Computer Inc. ROG RYUJIN II] on usb-0000:00:14.0-13.2/input1
[ 27.318550] usbcore: registered new interface driver ch341
[ 27.318560] usbserial: USB Serial support registered for ch341-uart
[ 27.318569] ch341 1-11.1:1.0: ch341-uart converter detected
[ 27.318950] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 27.319127] usb 1-11.1: ch341-uart converter now attached to ttyUSB0
[ 27.319325] snd_hda_intel 0000:03:00.1: enabling device (0000 -> 0002)
[ 27.319495] snd_hda_intel 0000:03:00.1: Force to non-snoop mode
[ 27.322843] usbcore: registered new interface driver btusb
[ 27.326016] Bluetooth: hci0: Firmware timestamp 2025.46 buildtype 1 build 97345
[ 27.326021] Bluetooth: hci0: Firmware SHA1: 0xc7c5b316
[ 27.326027] Bluetooth: hci0: DSM reset method type: 0x01
[ 27.326033] Bluetooth: hci0: No support for dsm to set reset method
[ 27.330925] Bluetooth: hci0: Found device firmware: intel/ibt-0291-0291.sfi
[ 27.330938] Bluetooth: hci0: Boot Address: 0x100800
[ 27.330940] Bluetooth: hci0: Firmware Version: 65-46.25
[ 27.330941] Bluetooth: hci0: Firmware already loaded
[ 27.334998] Bluetooth: hci0: Fseq status: Success (0x00)
[ 27.335001] Bluetooth: hci0: Fseq executed: 00.00.04.199
[ 27.335003] Bluetooth: hci0: Fseq BT Top: 00.00.04.202
[ 27.369988] uvcvideo 1-10.2:1.0: Found UVC 1.00 device <unnamed> (046d:0825)
[ 27.370212] snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 27.372961] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input22
[ 27.373026] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input23
[ 27.373072] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input24
[ 27.373124] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input25
[ 27.373166] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input26
[ 27.373209] input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input27
[ 27.381267] intel_tcc_cooling: Programmable TCC Offset detected
[ 27.400403] intel_rapl_msr: PL4 support detected.
[ 27.400442] intel_rapl_common: Found RAPL domain package
[ 27.400446] intel_rapl_common: Found RAPL domain core
[ 27.408338] [drm] PCIE GART of 512M enabled (table at 0x00000083FEB00000).
[ 27.408373] amdgpu 0000:0c:00.0: amdgpu: PSP is resuming...
[ 27.414336] usbcore: registered new interface driver uvcvideo
[ 27.466827] amdgpu 0000:0c:00.0: amdgpu: reserve 0x1300000 from 0x83fc000000 for PSP TMR
[ 27.614922] amdgpu 0000:0c:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 27.614924] amdgpu 0000:0c:00.0: amdgpu: SECUREDISPLAY: optional securedisplay ta ucode is not available
[ 27.614926] amdgpu 0000:0c:00.0: amdgpu: SMU is resuming...
[ 27.614930] amdgpu 0000:0c:00.0: amdgpu: smu driver if version = 0x0000003d, smu fw if version = 0x00000040, smu fw program = 0, smu fw version = 0x004e8300 (78.131.0)
[ 27.614932] amdgpu 0000:0c:00.0: amdgpu: SMU driver if version not matched
[ 27.652618] systemd-journald[914]: Received client request to flush runtime journal.
[ 27.656434] iwlwifi 0000:07:00.0: Detected RF FM, rfid=0x112200
[ 27.765493] iwlwifi 0000:07:00.0: base HW address: 90:09:df:06:d3:a8
[ 27.768270] amdgpu 0000:0c:00.0: amdgpu: SMU is resumed successfully!
[ 27.777743] amdgpu 0000:0c:00.0: amdgpu: [drm] DMUB hardware initialized: version=0x07002F00
[ 27.782510] Adding 98667516k swap on /dev/zram0. Priority:100 extents:1 across:98667516k SSDsc
[ 27.784526] amdgpu 0000:0c:00.0: [drm] Cannot find any crtc or sizes
[ 27.784532] amdgpu 0000:0c:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 27.784533] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 27.784534] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 27.784535] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 27.784536] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 27.784537] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 27.784537] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 27.784538] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 27.784539] amdgpu 0000:0c:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 27.784540] amdgpu 0000:0c:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[ 27.784540] amdgpu 0000:0c:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
[ 27.784541] amdgpu 0000:0c:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
[ 27.784542] amdgpu 0000:0c:00.0: amdgpu: ring vcn_unified_1 uses VM inv eng 1 on hub 8
[ 27.784543] amdgpu 0000:0c:00.0: amdgpu: ring jpeg_dec uses VM inv eng 4 on hub 8
[ 27.784543] amdgpu 0000:0c:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 14 on hub 0
[ 27.786317] zswap: loaded using pool zstd
[ 27.789753] amdgpu 0000:0c:00.0: [drm] Cannot find any crtc or sizes
[ 27.789952] snd_hda_intel 0000:0c:00.1: enabling device (0000 -> 0002)
[ 27.790275] snd_hda_intel 0000:0c:00.1: Force to non-snoop mode
[ 27.795275] snd_hda_intel 0000:0c:00.1: bound 0000:0c:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 27.796683] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1d.0/0000:0a:00.0/0000:0b:00.0/0000:0c:00.1/sound/card3/input28
[ 27.796804] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1d.0/0000:0a:00.0/0000:0b:00.0/0000:0c:00.1/sound/card3/input29
[ 27.796868] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1d.0/0000:0a:00.0/0000:0b:00.0/0000:0c:00.1/sound/card3/input30
[ 27.796940] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1d.0/0000:0a:00.0/0000:0b:00.0/0000:0c:00.1/sound/card3/input31
[ 28.325696] snd_hda_intel 0000:00:1f.3: azx_get_response timeout, switching to polling mode: last cmd=0x000f0000
[ 29.329710] snd_hda_intel 0000:00:1f.3: No response from codec, disabling MSI: last cmd=0x000f0000
[ 30.332713] snd_hda_intel 0000:00:1f.3: Codec #0 probe error; disabling it...
[ 30.332726] snd_hda_intel 0000:00:1f.3: no codecs initialized
[ 31.198781] usb 1-10.2: reset high-speed USB device number 9 using xhci_hcd
[ 32.873696] usb 1-10.2: set resolution quirk: cval->res = 384
[ 32.873833] usbcore: registered new interface driver snd-usb-audio
[ 32.885095] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 32.885098] Bluetooth: BNEP filters: protocol multicast
[ 32.885101] Bluetooth: BNEP socket layer initialized
[ 32.885936] Bluetooth: MGMT ver 1.23
[ 32.890637] NET: Registered PF_ALG protocol family
[ 32.891688] nct6775: Found NCT6798D or compatible chip at 0x2e:0x290
[ 33.471034] input: evremap Virtual input for /dev/input/event11 as /devices/virtual/input/input32
[ 33.966715] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 34.142270] input: ydotoold virtual device as /devices/virtual/input/input33
[ 34.153978] tun: Universal TUN/TAP device driver, 1.6
[ 34.411585] kvm: Running KVM with ignore_msrs=1 and report_ignored_msrs=0 is not a
a supported configuration. Lying to the guest about the existence of MSRs
may cause the guest operating system to hang or produce errors. If a guest
does not run without ignore_msrs=1, please report it to kvm@vger.kernel.org.
[ 37.718838] wlan0: authenticate with 10:7c:61:a4:64:dc (local address=90:09:df:06:d3:a8)
[ 37.719324] wlan0: send auth to 10:7c:61:a4:64:dc (try 1/3)
[ 37.720729] wlan0: authenticated
[ 37.721764] wlan0: associate with 10:7c:61:a4:64:dc (try 1/3)
[ 37.725384] wlan0: RX AssocResp from 10:7c:61:a4:64:dc (capab=0x1011 status=0 aid=23)
[ 37.726778] wlan0: associated
[ 38.537953] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=33529 DF PROTO=UDP SPT=1900 DPT=56840 LEN=281
[ 38.538274] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=33530 DF PROTO=UDP SPT=1900 DPT=56840 LEN=281
[ 38.538957] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=33531 DF PROTO=UDP SPT=1900 DPT=56840 LEN=281
[ 38.540000] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=33532 DF PROTO=UDP SPT=1900 DPT=56840 LEN=281
[ 38.540401] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=310 TOS=0x00 PREC=0x00 TTL=64 ID=33533 DF PROTO=UDP SPT=1900 DPT=56840 LEN=290
[ 38.540815] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=310 TOS=0x00 PREC=0x00 TTL=64 ID=33534 DF PROTO=UDP SPT=1900 DPT=56840 LEN=290
[ 38.542415] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=310 TOS=0x00 PREC=0x00 TTL=64 ID=33535 DF PROTO=UDP SPT=1900 DPT=56840 LEN=290
[ 38.542779] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=310 TOS=0x00 PREC=0x00 TTL=64 ID=33536 DF PROTO=UDP SPT=1900 DPT=56840 LEN=290
[ 38.544520] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=365 TOS=0x00 PREC=0x00 TTL=64 ID=33537 DF PROTO=UDP SPT=1900 DPT=56840 LEN=345
[ 38.544864] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=365 TOS=0x00 PREC=0x00 TTL=64 ID=33538 DF PROTO=UDP SPT=1900 DPT=56840 LEN=345
[ 38.855820] usb 1-10.2: reset high-speed USB device number 9 using xhci_hcd
[ 39.631374] Initializing XFRM netlink socket
[ 39.640365] Bridge firewalling registered
[ 40.151708] amdgpu: Freeing queue vital buffer 0x7f8fa4e00000, queue evicted
[ 40.607787] amdgpu: Freeing queue vital buffer 0x7fb287c00000, queue evicted
[ 40.931159] br-fb233aa1e299: port 1(veth89c2d66) entered blocking state
[ 40.931175] br-fb233aa1e299: port 1(veth89c2d66) entered disabled state
[ 40.931183] veth89c2d66: entered allmulticast mode
[ 40.931230] veth89c2d66: entered promiscuous mode
[ 40.935410] br-56982330862e: port 1(veth7100448) entered blocking state
[ 40.935415] br-56982330862e: port 1(veth7100448) entered disabled state
[ 40.935424] veth7100448: entered allmulticast mode
[ 40.935482] veth7100448: entered promiscuous mode
[ 40.975349] br-fb233aa1e299: port 2(vethfc1abb7) entered blocking state
[ 40.975383] br-fb233aa1e299: port 2(vethfc1abb7) entered disabled state
[ 40.975403] vethfc1abb7: entered allmulticast mode
[ 40.975524] vethfc1abb7: entered promiscuous mode
[ 40.983918] eth0: renamed from vethdf0254b
[ 40.984257] br-fb233aa1e299: port 1(veth89c2d66) entered blocking state
[ 40.984262] br-fb233aa1e299: port 1(veth89c2d66) entered forwarding state
[ 40.984444] eth0: renamed from veth085b28a
[ 40.984980] br-56982330862e: port 1(veth7100448) entered blocking state
[ 40.984985] br-56982330862e: port 1(veth7100448) entered forwarding state
[ 41.006945] br-dfe397d9d463: port 1(vethdaca16b) entered blocking state
[ 41.006949] br-dfe397d9d463: port 1(vethdaca16b) entered disabled state
[ 41.006955] vethdaca16b: entered allmulticast mode
[ 41.006987] vethdaca16b: entered promiscuous mode
[ 41.015745] eth0: renamed from veth3fe1b71
[ 41.016351] br-fb233aa1e299: port 2(vethfc1abb7) entered blocking state
[ 41.016356] br-fb233aa1e299: port 2(vethfc1abb7) entered forwarding state
[ 41.048131] br-fb233aa1e299: port 3(vethd22b5f6) entered blocking state
[ 41.048141] br-fb233aa1e299: port 3(vethd22b5f6) entered disabled state
[ 41.048152] vethd22b5f6: entered allmulticast mode
[ 41.048232] vethd22b5f6: entered promiscuous mode
[ 41.084249] eth0: renamed from veth26dae64
[ 41.084998] br-fb233aa1e299: port 4(vethc53dd2f) entered blocking state
[ 41.085026] br-fb233aa1e299: port 4(vethc53dd2f) entered disabled state
[ 41.085055] vethc53dd2f: entered allmulticast mode
[ 41.085242] vethc53dd2f: entered promiscuous mode
[ 41.086196] br-dfe397d9d463: port 1(vethdaca16b) entered blocking state
[ 41.086211] br-dfe397d9d463: port 1(vethdaca16b) entered forwarding state
[ 41.104697] eth0: renamed from veth5cb5d04
[ 41.106149] br-fb233aa1e299: port 3(vethd22b5f6) entered blocking state
[ 41.106162] br-fb233aa1e299: port 3(vethd22b5f6) entered forwarding state
[ 41.140576] eth0: renamed from veth4b6eca8
[ 41.141414] br-fb233aa1e299: port 4(vethc53dd2f) entered blocking state
[ 41.141421] br-fb233aa1e299: port 4(vethc53dd2f) entered forwarding state
[ 41.144421] br-dfe397d9d463: port 2(veth1f4636c) entered blocking state
[ 41.144441] br-dfe397d9d463: port 2(veth1f4636c) entered disabled state
[ 41.144458] veth1f4636c: entered allmulticast mode
[ 41.144531] veth1f4636c: entered promiscuous mode
[ 41.192104] br-56982330862e: port 2(veth113a206) entered blocking state
[ 41.192133] br-56982330862e: port 2(veth113a206) entered disabled state
[ 41.192142] veth113a206: entered allmulticast mode
[ 41.192218] veth113a206: entered promiscuous mode
[ 41.192528] br-fb233aa1e299: port 5(veth7e0417e) entered blocking state
[ 41.192540] br-fb233aa1e299: port 5(veth7e0417e) entered disabled state
[ 41.192549] veth7e0417e: entered allmulticast mode
[ 41.192598] veth7e0417e: entered promiscuous mode
[ 41.200716] eth0: renamed from veth24f5f20
[ 41.201303] br-dfe397d9d463: port 2(veth1f4636c) entered blocking state
[ 41.201309] br-dfe397d9d463: port 2(veth1f4636c) entered forwarding state
[ 41.260843] br-fb233aa1e299: port 6(veth8a4dcce) entered blocking state
[ 41.260941] br-fb233aa1e299: port 6(veth8a4dcce) entered disabled state
[ 41.260950] veth8a4dcce: entered allmulticast mode
[ 41.260999] veth8a4dcce: entered promiscuous mode
[ 41.261271] br-dfe397d9d463: port 3(vethcc4f7b4) entered blocking state
[ 41.261275] br-dfe397d9d463: port 3(vethcc4f7b4) entered disabled state
[ 41.261545] vethcc4f7b4: entered allmulticast mode
[ 41.261625] vethcc4f7b4: entered promiscuous mode
[ 41.261883] eth0: renamed from veth08c8df1
[ 41.262601] br-fb233aa1e299: port 5(veth7e0417e) entered blocking state
[ 41.262606] br-fb233aa1e299: port 5(veth7e0417e) entered forwarding state
[ 41.262633] br-56982330862e: port 3(veth3cb756e) entered blocking state
[ 41.262638] br-56982330862e: port 3(veth3cb756e) entered disabled state
[ 41.262646] veth3cb756e: entered allmulticast mode
[ 41.263004] veth3cb756e: entered promiscuous mode
[ 41.263192] eth0: renamed from veth6b34640
[ 41.264111] br-56982330862e: port 2(veth113a206) entered blocking state
[ 41.264114] br-56982330862e: port 2(veth113a206) entered forwarding state
[ 41.308582] br-fb233aa1e299: port 7(veth4a2c6bf) entered blocking state
[ 41.308592] br-fb233aa1e299: port 7(veth4a2c6bf) entered disabled state
[ 41.308603] veth4a2c6bf: entered allmulticast mode
[ 41.308650] veth4a2c6bf: entered promiscuous mode
[ 41.309183] br-dfe397d9d463: port 4(veth12aeb7a) entered blocking state
[ 41.309207] br-dfe397d9d463: port 4(veth12aeb7a) entered disabled state
[ 41.309221] veth12aeb7a: entered allmulticast mode
[ 41.309300] veth12aeb7a: entered promiscuous mode
[ 41.313376] eth0: renamed from veth3ed38e8
[ 41.313509] eth0: renamed from vethf05e3c7
[ 41.313864] br-f22c21d6e84a: port 1(vethf80b375) entered blocking state
[ 41.313875] br-f22c21d6e84a: port 1(vethf80b375) entered disabled state
[ 41.313883] vethf80b375: entered allmulticast mode
[ 41.314036] vethf80b375: entered promiscuous mode
[ 41.314885] eth0: renamed from vethec384a0
[ 41.315216] br-fb233aa1e299: port 6(veth8a4dcce) entered blocking state
[ 41.315220] br-fb233aa1e299: port 6(veth8a4dcce) entered forwarding state
[ 41.315638] br-dfe397d9d463: port 3(vethcc4f7b4) entered blocking state
[ 41.315644] br-dfe397d9d463: port 3(vethcc4f7b4) entered forwarding state
[ 41.315865] br-56982330862e: port 3(veth3cb756e) entered blocking state
[ 41.315869] br-56982330862e: port 3(veth3cb756e) entered forwarding state
[ 41.363621] br-fb233aa1e299: port 8(vethb758ee5) entered blocking state
[ 41.363628] br-fb233aa1e299: port 8(vethb758ee5) entered disabled state
[ 41.363643] vethb758ee5: entered allmulticast mode
[ 41.363730] vethb758ee5: entered promiscuous mode
[ 41.363993] br-f22c21d6e84a: port 2(veth117e833) entered blocking state
[ 41.364009] br-f22c21d6e84a: port 2(veth117e833) entered disabled state
[ 41.364023] veth117e833: entered allmulticast mode
[ 41.364091] veth117e833: entered promiscuous mode
[ 41.364447] br-dfe397d9d463: port 5(vethc0b9689) entered blocking state
[ 41.364462] br-dfe397d9d463: port 5(vethc0b9689) entered disabled state
[ 41.364472] vethc0b9689: entered allmulticast mode
[ 41.364542] vethc0b9689: entered promiscuous mode
[ 41.368447] eth0: renamed from vethf752373
[ 41.369178] br-fb233aa1e299: port 7(veth4a2c6bf) entered blocking state
[ 41.369184] br-fb233aa1e299: port 7(veth4a2c6bf) entered forwarding state
[ 41.369642] eth0: renamed from vethdd79cff
[ 41.370227] br-dfe397d9d463: port 4(veth12aeb7a) entered blocking state
[ 41.370231] br-dfe397d9d463: port 4(veth12aeb7a) entered forwarding state
[ 41.370370] eth0: renamed from vethbcb5d79
[ 41.370978] br-f22c21d6e84a: port 1(vethf80b375) entered blocking state
[ 41.370984] br-f22c21d6e84a: port 1(vethf80b375) entered forwarding state
[ 41.406952] br-f22c21d6e84a: port 3(veth41311aa) entered blocking state
[ 41.406962] br-f22c21d6e84a: port 3(veth41311aa) entered disabled state
[ 41.406974] veth41311aa: entered allmulticast mode
[ 41.407009] veth41311aa: entered promiscuous mode
[ 41.409972] br-fb233aa1e299: port 9(veth75652ca) entered blocking state
[ 41.409976] br-fb233aa1e299: port 9(veth75652ca) entered disabled state
[ 41.409981] veth75652ca: entered allmulticast mode
[ 41.410016] veth75652ca: entered promiscuous mode
[ 41.419231] br-dfe397d9d463: port 6(veth7c1fc54) entered blocking state
[ 41.419250] br-dfe397d9d463: port 6(veth7c1fc54) entered disabled state
[ 41.419264] veth7c1fc54: entered allmulticast mode
[ 41.419373] veth7c1fc54: entered promiscuous mode
[ 41.426955] eth0: renamed from vethdc2943e
[ 41.427310] eth0: renamed from veth54091c0
[ 41.430801] br-f22c21d6e84a: port 2(veth117e833) entered blocking state
[ 41.430807] br-f22c21d6e84a: port 2(veth117e833) entered forwarding state
[ 41.431293] br-fb233aa1e299: port 8(vethb758ee5) entered blocking state
[ 41.431299] br-fb233aa1e299: port 8(vethb758ee5) entered forwarding state
[ 41.436981] eth0: renamed from vethce8ffab
[ 41.437648] br-dfe397d9d463: port 5(vethc0b9689) entered blocking state
[ 41.437654] br-dfe397d9d463: port 5(vethc0b9689) entered forwarding state
[ 41.450989] br-fb233aa1e299: port 10(veth5260a98) entered blocking state
[ 41.451004] br-fb233aa1e299: port 10(veth5260a98) entered disabled state
[ 41.451013] veth5260a98: entered allmulticast mode
[ 41.451068] veth5260a98: entered promiscuous mode
[ 41.472056] br-dfe397d9d463: port 7(veth21d0ff4) entered blocking state
[ 41.472067] br-dfe397d9d463: port 7(veth21d0ff4) entered disabled state
[ 41.472087] veth21d0ff4: entered allmulticast mode
[ 41.472234] veth21d0ff4: entered promiscuous mode
[ 41.484995] br-fb233aa1e299: port 11(veth835a3eb) entered blocking state
[ 41.485019] br-fb233aa1e299: port 11(veth835a3eb) entered disabled state
[ 41.485039] veth835a3eb: entered allmulticast mode
[ 41.485238] veth835a3eb: entered promiscuous mode
[ 41.491630] eth0: renamed from veth64290aa
[ 41.492190] eth0: renamed from vetha09df74
[ 41.493120] br-fb233aa1e299: port 9(veth75652ca) entered blocking state
[ 41.493128] br-fb233aa1e299: port 9(veth75652ca) entered forwarding state
[ 41.493471] br-f22c21d6e84a: port 3(veth41311aa) entered blocking state
[ 41.493479] br-f22c21d6e84a: port 3(veth41311aa) entered forwarding state
[ 41.502288] eth0: renamed from vethf3247cf
[ 41.503700] br-dfe397d9d463: port 6(veth7c1fc54) entered blocking state
[ 41.503707] br-dfe397d9d463: port 6(veth7c1fc54) entered forwarding state
[ 41.503876] eth0: renamed from veth081f923
[ 41.504486] br-fb233aa1e299: port 10(veth5260a98) entered blocking state
[ 41.504491] br-fb233aa1e299: port 10(veth5260a98) entered forwarding state
[ 41.528101] Bluetooth: RFCOMM TTY layer initialized
[ 41.528112] Bluetooth: RFCOMM socket layer initialized
[ 41.528117] Bluetooth: RFCOMM ver 1.11
[ 41.533505] br-dfe397d9d463: port 8(vethcd1c140) entered blocking state
[ 41.533512] br-dfe397d9d463: port 8(vethcd1c140) entered disabled state
[ 41.533521] vethcd1c140: entered allmulticast mode
[ 41.533576] vethcd1c140: entered promiscuous mode
[ 41.550854] eth0: renamed from veth0f9f746
[ 41.551985] br-dfe397d9d463: port 7(veth21d0ff4) entered blocking state
[ 41.551988] br-dfe397d9d463: port 7(veth21d0ff4) entered forwarding state
[ 41.560637] br-dfe397d9d463: port 9(veth2a5121c) entered blocking state
[ 41.560759] br-dfe397d9d463: port 9(veth2a5121c) entered disabled state
[ 41.560773] veth2a5121c: entered allmulticast mode
[ 41.560863] veth2a5121c: entered promiscuous mode
[ 41.565848] eth0: renamed from veth381b7d3
[ 41.566488] br-fb233aa1e299: port 11(veth835a3eb) entered blocking state
[ 41.566494] br-fb233aa1e299: port 11(veth835a3eb) entered forwarding state
[ 41.568532] eth0: renamed from veth5f2abe9
[ 41.569446] br-dfe397d9d463: port 8(vethcd1c140) entered blocking state
[ 41.569451] br-dfe397d9d463: port 8(vethcd1c140) entered forwarding state
[ 41.593934] eth0: renamed from veth07fd297
[ 41.594386] br-dfe397d9d463: port 9(veth2a5121c) entered blocking state
[ 41.594392] br-dfe397d9d463: port 9(veth2a5121c) entered forwarding state
[ 41.705712] veth3ed38e8: renamed from eth0
[ 41.725669] br-dfe397d9d463: port 3(vethcc4f7b4) entered disabled state
[ 41.751260] br-fb233aa1e299: port 7(veth4a2c6bf) entered disabled state
[ 41.751413] vethf752373: renamed from eth0
[ 41.773649] br-dfe397d9d463: port 3(vethcc4f7b4) entered disabled state
[ 41.774592] vethcc4f7b4 (unregistering): left allmulticast mode
[ 41.774596] vethcc4f7b4 (unregistering): left promiscuous mode
[ 41.774598] br-dfe397d9d463: port 3(vethcc4f7b4) entered disabled state
[ 41.798708] br-fb233aa1e299: port 7(veth4a2c6bf) entered disabled state
[ 41.799508] veth4a2c6bf (unregistering): left allmulticast mode
[ 41.799512] veth4a2c6bf (unregistering): left promiscuous mode
[ 41.799515] br-fb233aa1e299: port 7(veth4a2c6bf) entered disabled state
[ 42.035045] br-dfe397d9d463: port 3(veth8eb08ae) entered blocking state
[ 42.035064] br-dfe397d9d463: port 3(veth8eb08ae) entered disabled state
[ 42.035073] veth8eb08ae: entered allmulticast mode
[ 42.035135] veth8eb08ae: entered promiscuous mode
[ 42.065710] br-fb233aa1e299: port 7(vethdf14b4b) entered blocking state
[ 42.065722] br-fb233aa1e299: port 7(vethdf14b4b) entered disabled state
[ 42.065735] vethdf14b4b: entered allmulticast mode
[ 42.065837] vethdf14b4b: entered promiscuous mode
[ 42.073385] eth0: renamed from veth3c51477
[ 42.075045] br-dfe397d9d463: port 3(veth8eb08ae) entered blocking state
[ 42.075051] br-dfe397d9d463: port 3(veth8eb08ae) entered forwarding state
[ 42.094173] eth0: renamed from vethc41da57
[ 42.094808] br-fb233aa1e299: port 7(vethdf14b4b) entered blocking state
[ 42.094813] br-fb233aa1e299: port 7(vethdf14b4b) entered forwarding state
[ 42.131549] docker0: port 1(veth3517048) entered blocking state
[ 42.131556] docker0: port 1(veth3517048) entered disabled state
[ 42.131567] veth3517048: entered allmulticast mode
[ 42.131630] veth3517048: entered promiscuous mode
[ 42.143208] eth0: renamed from vethce4b1c0
[ 42.145215] docker0: port 1(veth3517048) entered blocking state
[ 42.145222] docker0: port 1(veth3517048) entered forwarding state
[ 54.035632] warning: `kdeconnectd' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 54.688826] usb 1-10.2: reset high-speed USB device number 9 using xhci_hcd
[ 58.706798] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=1802 DF PROTO=TCP SPT=34466 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 83.565193] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=21921 DF PROTO=TCP SPT=34012 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 98.566143] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=16984 DF PROTO=TCP SPT=52120 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 118.676098] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=20394 DF PROTO=TCP SPT=33398 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 141.026348] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=6024 DF PROTO=UDP SPT=1900 DPT=57682 LEN=281
[ 158.566302] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=11685 DF PROTO=TCP SPT=56142 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 178.706723] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=48630 DF PROTO=TCP SPT=49054 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 203.563957] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=28189 DF PROTO=TCP SPT=33102 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 218.563514] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=62735 DF PROTO=TCP SPT=53630 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 238.672961] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=60175 DF PROTO=TCP SPT=50374 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 263.562778] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=30327 DF PROTO=TCP SPT=43570 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 278.562653] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=56932 DF PROTO=TCP SPT=60316 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 298.704135] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=22681 DF PROTO=TCP SPT=46504 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 323.561323] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=6112 DF PROTO=TCP SPT=36262 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 338.562206] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=6108 DF PROTO=TCP SPT=44286 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 358.671397] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=48299 DF PROTO=TCP SPT=59780 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 383.561402] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=26518 DF PROTO=TCP SPT=60820 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 398.561736] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=39504 DF PROTO=TCP SPT=56870 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 418.702708] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=61211 DF PROTO=TCP SPT=57736 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 443.560655] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=50191 DF PROTO=TCP SPT=60812 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 458.560599] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=474 DF PROTO=TCP SPT=45556 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 478.670090] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=31307 DF PROTO=TCP SPT=38758 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 503.560032] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=57715 DF PROTO=TCP SPT=45610 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 518.559831] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=37630 DF PROTO=TCP SPT=36852 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 538.701420] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=49397 DF PROTO=TCP SPT=60920 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 563.559293] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=26982 DF PROTO=TCP SPT=55774 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 578.559103] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=22766 DF PROTO=TCP SPT=51742 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 598.669701] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=13098 DF PROTO=TCP SPT=37726 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 623.558411] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=37512 DF PROTO=TCP SPT=55906 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 638.558527] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=23183 DF PROTO=TCP SPT=56498 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 658.700073] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=24426 DF PROTO=TCP SPT=50236 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 683.557929] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=56706 DF PROTO=TCP SPT=47974 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 698.557766] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=53394 DF PROTO=TCP SPT=48004 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 718.667381] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=22043 DF PROTO=TCP SPT=53016 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 743.556466] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=60944 DF PROTO=TCP SPT=41878 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 758.557111] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=16107 DF PROTO=TCP SPT=45518 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 778.698696] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=49575 DF PROTO=TCP SPT=47700 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 803.556627] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=21700 DF PROTO=TCP SPT=54878 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 818.556617] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=39310 DF PROTO=TCP SPT=36518 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 838.666082] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=13681 DF PROTO=TCP SPT=46456 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 863.555919] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=47937 DF PROTO=TCP SPT=53408 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 878.556156] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=50758 DF PROTO=TCP SPT=33088 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 898.697414] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=61442 DF PROTO=TCP SPT=43632 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 923.555408] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=31913 DF PROTO=TCP SPT=43746 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 938.555133] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=31456 DF PROTO=TCP SPT=43982 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 958.665732] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=13377 DF PROTO=TCP SPT=33782 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 983.554683] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=54810 DF PROTO=TCP SPT=34326 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 998.554505] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=40259 DF PROTO=TCP SPT=53110 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1018.696064] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=38251 DF PROTO=TCP SPT=40450 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1043.554617] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=21526 DF PROTO=TCP SPT=39456 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1058.553643] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=20864 DF PROTO=TCP SPT=38552 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1078.662946] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=22333 DF PROTO=TCP SPT=41298 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1098.852788] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=18126 DF PROTO=UDP SPT=1900 DPT=49212 LEN=281
[ 1118.551991] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=49915 DF PROTO=TCP SPT=34694 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1138.693154] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=50060 DF PROTO=TCP SPT=36284 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1163.551083] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=27122 DF PROTO=TCP SPT=33776 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1178.550347] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=4115 DF PROTO=TCP SPT=43776 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1198.659665] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=21061 DF PROTO=TCP SPT=60522 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1223.548763] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=49777 DF PROTO=TCP SPT=48280 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1238.548926] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=38266 DF PROTO=TCP SPT=48702 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1258.691300] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=54277 DF PROTO=TCP SPT=36746 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1283.547960] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=15182 DF PROTO=TCP SPT=49104 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1291.812981] wlan0: Connection to AP 10:7c:61:a4:64:dc lost
[ 1293.583686] wlan0: authenticate with 10:7c:61:a4:64:d8 (local address=90:09:df:06:d3:a8)
[ 1293.584165] wlan0: send auth to 10:7c:61:a4:64:d8 (try 1/3)
[ 1293.586738] wlan0: authenticated
[ 1293.588543] wlan0: associate with 10:7c:61:a4:64:d8 (try 1/3)
[ 1293.594305] wlan0: RX AssocResp from 10:7c:61:a4:64:d8 (capab=0x1411 status=0 aid=21)
[ 1293.595135] wlan0: associated
[ 1298.547768] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=14448 DF PROTO=TCP SPT=40988 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1318.658098] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=20875 DF PROTO=TCP SPT=54400 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1318.723100] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=433808 PROTO=TCP SPT=443 DPT=39236 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 1322.368353] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=491375 PROTO=TCP SPT=443 DPT=47210 WINDOW=17 RES=0x00 ACK PSH URGP=0
[ 1343.546163] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=19239 DF PROTO=TCP SPT=37506 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1346.858691] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=409275 PROTO=TCP SPT=443 DPT=39236 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 1350.527616] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=816005 PROTO=TCP SPT=443 DPT=47210 WINDOW=17 RES=0x00 ACK PSH URGP=0
[ 1358.546416] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10820 DF PROTO=TCP SPT=34502 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1365.340104] usb 1-10.2: reset high-speed USB device number 9 using xhci_hcd
[ 1369.406061] usb 1-10.2: reset high-speed USB device number 9 using xhci_hcd
[ 1378.687925] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=60896 DF PROTO=TCP SPT=38134 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1403.545623] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=52320 DF PROTO=TCP SPT=51546 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1404.203594] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=949150 PROTO=TCP SPT=443 DPT=39236 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 1409.918641] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=425950 PROTO=TCP SPT=443 DPT=47210 WINDOW=17 RES=0x00 ACK PSH URGP=0
[ 1418.545377] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=37036 DF PROTO=TCP SPT=48332 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1438.655835] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8304 DF PROTO=TCP SPT=36470 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1463.544582] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=7390 DF PROTO=TCP SPT=33758 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1478.544413] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=22498 DF PROTO=TCP SPT=54712 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1498.685819] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=33712 DF PROTO=TCP SPT=37238 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1518.929690] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=744042 PROTO=TCP SPT=443 DPT=39236 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 1523.543640] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=11417 DF PROTO=TCP SPT=47622 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1524.665114] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=395803 PROTO=TCP SPT=443 DPT=47210 WINDOW=17 RES=0x00 ACK PSH URGP=0
[ 1538.543397] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=20844 DF PROTO=TCP SPT=56316 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1558.653951] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=43451 DF PROTO=TCP SPT=48646 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1583.542644] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=11996 DF PROTO=TCP SPT=55462 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1598.543089] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=33687 DF PROTO=TCP SPT=46554 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1602.021443] wlan0: disconnect from AP 10:7c:61:a4:64:d8 for new auth to 10:7c:61:a4:64:dc
[ 1602.090243] wlan0: authenticate with 10:7c:61:a4:64:dc (local address=90:09:df:06:d3:a8)
[ 1602.090702] wlan0: send auth to 10:7c:61:a4:64:dc (try 1/3)
[ 1602.092084] wlan0: authenticated
[ 1602.093086] wlan0: associate with 10:7c:61:a4:64:dc (try 1/3)
[ 1602.094582] wlan0: RX ReassocResp from 10:7c:61:a4:64:dc (capab=0x1011 status=0 aid=24)
[ 1602.095503] wlan0: associated
[ 1618.683927] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=1350 DF PROTO=TCP SPT=56520 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1641.803743] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=625064 PROTO=TCP SPT=443 DPT=39236 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 1643.541507] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=38983 DF PROTO=TCP SPT=53272 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1647.483983] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=315399 PROTO=TCP SPT=443 DPT=47210 WINDOW=17 RES=0x00 ACK PSH URGP=0
[ 1658.541569] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=14824 DF PROTO=TCP SPT=55164 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1678.651004] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=46393 DF PROTO=TCP SPT=48870 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1703.540794] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=60472 DF PROTO=TCP SPT=60644 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1718.540666] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=23793 DF PROTO=TCP SPT=44806 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1738.682108] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=7423 DF PROTO=TCP SPT=58904 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1763.539874] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=38430 DF PROTO=TCP SPT=36284 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1764.683667] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=465765 PROTO=TCP SPT=443 DPT=39236 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 1770.422657] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=609111 PROTO=TCP SPT=443 DPT=47210 WINDOW=17 RES=0x00 ACK PSH URGP=0
[ 1778.539732] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=46197 DF PROTO=TCP SPT=58252 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1798.649242] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=16610 DF PROTO=TCP SPT=54238 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1823.538988] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9162 DF PROTO=TCP SPT=60730 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1838.538957] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=65012 DF PROTO=TCP SPT=37326 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1858.680422] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=35451 DF PROTO=TCP SPT=34146 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1883.538251] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=39699 DF PROTO=TCP SPT=41468 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1887.524384] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=568033 PROTO=TCP SPT=443 DPT=39236 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 1893.298519] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=741885 PROTO=TCP SPT=443 DPT=47210 WINDOW=17 RES=0x00 ACK PSH URGP=0
[ 1898.535763] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=967975 PROTO=TCP SPT=443 DPT=39344 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 1898.538074] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=64488 DF PROTO=TCP SPT=52068 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1918.647538] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=20897 DF PROTO=TCP SPT=49056 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1943.537474] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=53234 DF PROTO=TCP SPT=50812 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1958.536439] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=58412 DF PROTO=TCP SPT=55704 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 1978.678744] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=47309 DF PROTO=TCP SPT=45976 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2003.536507] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=36997 DF PROTO=TCP SPT=54430 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2010.446302] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=296145 PROTO=TCP SPT=443 DPT=39236 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 2016.180785] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=32804 PROTO=TCP SPT=443 DPT=47210 WINDOW=17 RES=0x00 ACK PSH URGP=0
[ 2018.536307] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=53256 DF PROTO=TCP SPT=37582 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2038.645884] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=11368 DF PROTO=TCP SPT=43580 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2063.535711] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=30833 DF PROTO=TCP SPT=43684 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2078.534838] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=59318 DF PROTO=TCP SPT=34854 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2098.677750] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=4669 DF PROTO=TCP SPT=41546 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2121.437108] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=59635 DF PROTO=UDP SPT=1900 DPT=33597 LEN=281
[ 2133.281297] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2606:4700:0000:0000:0000:0000:6812:0797 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=96 TC=0 HOPLIMIT=57 FLOWLBL=524556 PROTO=TCP SPT=443 DPT=39236 WINDOW=16 RES=0x00 ACK PSH URGP=0
[ 2138.533941] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=35340 DF PROTO=TCP SPT=45030 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2158.643109] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=41470 DF PROTO=TCP SPT=44924 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2183.532529] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=55087 DF PROTO=TCP SPT=51512 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2198.532226] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=43089 DF PROTO=TCP SPT=40552 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2218.674526] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=59784 DF PROTO=TCP SPT=53048 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2243.531636] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=30946 DF PROTO=TCP SPT=39130 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2258.530710] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=5920 DF PROTO=TCP SPT=44828 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2278.505547] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=49645 DF PROTO=UDP SPT=1900 DPT=56466 LEN=281
[ 2303.526203] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=6841 DF PROTO=UDP SPT=1900 DPT=44623 LEN=281
[ 2318.529373] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=16890 DF PROTO=TCP SPT=55632 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2338.670586] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=54118 DF PROTO=TCP SPT=40424 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2363.528361] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=15038 DF PROTO=TCP SPT=52502 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2378.527988] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=63382 DF PROTO=TCP SPT=57752 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2398.637226] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=44651 DF PROTO=TCP SPT=51148 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2423.526961] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10871 DF PROTO=TCP SPT=38784 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2438.526515] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=6028 DF PROTO=TCP SPT=52892 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2458.667909] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=54531 DF PROTO=TCP SPT=34968 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2483.525558] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10410 DF PROTO=TCP SPT=37290 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2498.525212] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=48931 DF PROTO=TCP SPT=60672 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2518.634619] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=46398 DF PROTO=TCP SPT=45962 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2543.524333] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=35054 DF PROTO=TCP SPT=55164 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2558.523986] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=57730 DF PROTO=TCP SPT=55978 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2578.665381] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=42011 DF PROTO=TCP SPT=35348 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2598.825937] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=1113 DF PROTO=UDP SPT=1900 DPT=37734 LEN=281
[ 2618.523048] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=27235 DF PROTO=TCP SPT=43554 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2638.633179] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=64084 DF PROTO=TCP SPT=36514 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2663.521778] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=40068 DF PROTO=TCP SPT=58854 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2678.521622] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=56089 DF PROTO=TCP SPT=58594 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2698.662994] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=60233 DF PROTO=TCP SPT=60898 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2723.521150] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=2339 DF PROTO=TCP SPT=54840 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2738.520411] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=45098 DF PROTO=TCP SPT=48600 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2758.629908] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=202 DF PROTO=TCP SPT=51482 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2783.520241] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=33034 DF PROTO=TCP SPT=58752 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2798.519554] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=30160 DF PROTO=TCP SPT=43492 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2818.661804] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=41632 DF PROTO=TCP SPT=56768 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2843.518499] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=36589 DF PROTO=TCP SPT=49590 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2858.492567] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=375 TOS=0x00 PREC=0x00 TTL=64 ID=26942 DF PROTO=UDP SPT=1900 DPT=35505 LEN=355
[ 2878.628682] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=31913 DF PROTO=TCP SPT=51000 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2903.517390] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=40323 DF PROTO=TCP SPT=35908 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2918.517106] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=25933 DF PROTO=TCP SPT=48906 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2938.658628] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=17665 DF PROTO=TCP SPT=57076 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2963.516346] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8069 DF PROTO=TCP SPT=53044 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2978.516121] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=2138 DF PROTO=TCP SPT=57306 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 2998.625627] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=8623 DF PROTO=TCP SPT=52174 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3018.936562] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=56278 DF PROTO=UDP SPT=1900 DPT=54967 LEN=281
[ 3038.515208] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=48562 DF PROTO=TCP SPT=38436 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3058.656566] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=21697 DF PROTO=TCP SPT=44002 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3083.514733] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=11744 DF PROTO=TCP SPT=52616 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3098.514062] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=61378 DF PROTO=TCP SPT=43290 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3118.623539] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=3431 DF PROTO=TCP SPT=34418 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3143.513286] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=4364 DF PROTO=TCP SPT=54746 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3158.512987] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=559 DF PROTO=TCP SPT=45794 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3178.654513] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=62849 DF PROTO=TCP SPT=37366 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3203.512163] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=21808 DF PROTO=TCP SPT=45616 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3218.511958] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=27875 DF PROTO=TCP SPT=47230 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3238.622547] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=18336 DF PROTO=TCP SPT=36542 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3263.511230] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=5046 DF PROTO=TCP SPT=35738 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3278.511063] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=12976 DF PROTO=TCP SPT=38828 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3298.653580] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=53520 DF PROTO=TCP SPT=38372 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3323.510394] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=53666 DF PROTO=TCP SPT=38198 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3338.510014] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=44325 DF PROTO=TCP SPT=51502 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3358.619561] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=60366 DF PROTO=TCP SPT=34146 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3383.509336] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=4868 DF PROTO=TCP SPT=36768 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3398.509235] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9132 DF PROTO=TCP SPT=51006 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3418.650556] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=37651 DF PROTO=TCP SPT=35902 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3443.507511] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=1948 DF PROTO=TCP SPT=43992 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3458.508102] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=31832 DF PROTO=TCP SPT=46898 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3478.617646] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=19788 DF PROTO=TCP SPT=47272 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3503.506777] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=14786 DF PROTO=TCP SPT=53080 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3518.507314] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=61992 DF PROTO=TCP SPT=33702 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3538.649716] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=5547 DF PROTO=TCP SPT=41752 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3563.506462] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10870 DF PROTO=TCP SPT=48332 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3578.506319] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=23348 DF PROTO=TCP SPT=52534 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3598.615734] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=6860 DF PROTO=TCP SPT=39590 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3623.505462] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=13861 DF PROTO=TCP SPT=46790 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3638.505260] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=53150 DF PROTO=TCP SPT=43422 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3658.646768] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=55708 DF PROTO=TCP SPT=44756 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3681.001841] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=29181 DF PROTO=UDP SPT=1900 DPT=47454 LEN=281
[ 3698.504819] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=39770 DF PROTO=TCP SPT=43928 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3718.613867] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=58442 DF PROTO=TCP SPT=60370 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3743.503621] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=26496 DF PROTO=TCP SPT=46488 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3758.503328] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=19818 DF PROTO=TCP SPT=43106 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3778.645975] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=50549 DF PROTO=TCP SPT=49312 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3803.502610] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=54423 DF PROTO=TCP SPT=60356 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3816.881423] docker0: port 2(veth2088ee7) entered blocking state
[ 3816.881442] docker0: port 2(veth2088ee7) entered disabled state
[ 3816.881451] veth2088ee7: entered allmulticast mode
[ 3816.881520] veth2088ee7: entered promiscuous mode
[ 3816.890957] eth0: renamed from veth8ff851d
[ 3816.891619] docker0: port 2(veth2088ee7) entered blocking state
[ 3816.891625] docker0: port 2(veth2088ee7) entered forwarding state
[ 3817.037306] docker0: port 2(veth2088ee7) entered disabled state
[ 3817.037389] veth8ff851d: renamed from eth0
[ 3817.081807] docker0: port 2(veth2088ee7) entered disabled state
[ 3817.082039] veth2088ee7 (unregistering): left allmulticast mode
[ 3817.082043] veth2088ee7 (unregistering): left promiscuous mode
[ 3817.082046] docker0: port 2(veth2088ee7) entered disabled state
[ 3817.100204] docker0: port 2(vethf0b670e) entered blocking state
[ 3817.100208] docker0: port 2(vethf0b670e) entered disabled state
[ 3817.100216] vethf0b670e: entered allmulticast mode
[ 3817.100262] vethf0b670e: entered promiscuous mode
[ 3817.117947] eth0: renamed from veth151bb2b
[ 3817.118833] docker0: port 2(vethf0b670e) entered blocking state
[ 3817.118840] docker0: port 2(vethf0b670e) entered forwarding state
[ 3817.236334] docker0: port 2(vethf0b670e) entered disabled state
[ 3817.236419] veth151bb2b: renamed from eth0
[ 3817.264031] docker0: port 3(veth682dba8) entered blocking state
[ 3817.264037] docker0: port 3(veth682dba8) entered disabled state
[ 3817.264046] veth682dba8: entered allmulticast mode
[ 3817.264102] veth682dba8: entered promiscuous mode
[ 3817.273509] eth0: renamed from veth3b13cb7
[ 3817.274281] docker0: port 3(veth682dba8) entered blocking state
[ 3817.274287] docker0: port 3(veth682dba8) entered forwarding state
[ 3817.280901] docker0: port 2(vethf0b670e) entered disabled state
[ 3817.282115] vethf0b670e (unregistering): left allmulticast mode
[ 3817.282120] vethf0b670e (unregistering): left promiscuous mode
[ 3817.282126] docker0: port 2(vethf0b670e) entered disabled state
[ 3817.383065] docker0: port 3(veth682dba8) entered disabled state
[ 3817.383136] veth3b13cb7: renamed from eth0
[ 3817.442806] docker0: port 3(veth682dba8) entered disabled state
[ 3817.443078] veth682dba8 (unregistering): left allmulticast mode
[ 3817.443082] veth682dba8 (unregistering): left promiscuous mode
[ 3817.443084] docker0: port 3(veth682dba8) entered disabled state
[ 3817.473692] docker0: port 2(veth6d03e67) entered blocking state
[ 3817.473696] docker0: port 2(veth6d03e67) entered disabled state
[ 3817.473703] veth6d03e67: entered allmulticast mode
[ 3817.473745] veth6d03e67: entered promiscuous mode
[ 3817.490438] eth0: renamed from veth49f6784
[ 3817.490867] docker0: port 2(veth6d03e67) entered blocking state
[ 3817.490872] docker0: port 2(veth6d03e67) entered forwarding state
[ 3817.521770] docker0: port 3(veth6b88ad0) entered blocking state
[ 3817.521775] docker0: port 3(veth6b88ad0) entered disabled state
[ 3817.521783] veth6b88ad0: entered allmulticast mode
[ 3817.521819] veth6b88ad0: entered promiscuous mode
[ 3817.532327] eth0: renamed from vetha276c61
[ 3817.533259] docker0: port 3(veth6b88ad0) entered blocking state
[ 3817.533266] docker0: port 3(veth6b88ad0) entered forwarding state
[ 3817.599799] docker0: port 2(veth6d03e67) entered disabled state
[ 3817.599853] veth49f6784: renamed from eth0
[ 3817.640131] docker0: port 3(veth6b88ad0) entered disabled state
[ 3817.640199] vetha276c61: renamed from eth0
[ 3817.662837] docker0: port 2(veth6d03e67) entered disabled state
[ 3817.663057] veth6d03e67 (unregistering): left allmulticast mode
[ 3817.663061] veth6d03e67 (unregistering): left promiscuous mode
[ 3817.663063] docker0: port 2(veth6d03e67) entered disabled state
[ 3817.690024] docker0: port 3(veth6b88ad0) entered disabled state
[ 3817.690243] veth6b88ad0 (unregistering): left allmulticast mode
[ 3817.690246] veth6b88ad0 (unregistering): left promiscuous mode
[ 3817.690248] docker0: port 3(veth6b88ad0) entered disabled state
[ 3817.797003] docker0: port 2(vetha4c1735) entered blocking state
[ 3817.797009] docker0: port 2(vetha4c1735) entered disabled state
[ 3817.797018] vetha4c1735: entered allmulticast mode
[ 3817.797079] vetha4c1735: entered promiscuous mode
[ 3817.806055] eth0: renamed from veth99665f6
[ 3817.807352] docker0: port 2(vetha4c1735) entered blocking state
[ 3817.807357] docker0: port 2(vetha4c1735) entered forwarding state
[ 3817.855186] docker0: port 3(veth198aa96) entered blocking state
[ 3817.855193] docker0: port 3(veth198aa96) entered disabled state
[ 3817.855202] veth198aa96: entered allmulticast mode
[ 3817.855298] veth198aa96: entered promiscuous mode
[ 3817.865188] eth0: renamed from vetha1e0482
[ 3817.866018] docker0: port 3(veth198aa96) entered blocking state
[ 3817.866022] docker0: port 3(veth198aa96) entered forwarding state
[ 3817.933720] docker0: port 2(vetha4c1735) entered disabled state
[ 3817.933804] veth99665f6: renamed from eth0
[ 3817.980871] docker0: port 2(vetha4c1735) entered disabled state
[ 3817.981176] vetha4c1735 (unregistering): left allmulticast mode
[ 3817.981181] vetha4c1735 (unregistering): left promiscuous mode
[ 3817.981184] docker0: port 2(vetha4c1735) entered disabled state
[ 3817.993896] docker0: port 3(veth198aa96) entered disabled state
[ 3817.993960] vetha1e0482: renamed from eth0
[ 3818.059849] docker0: port 3(veth198aa96) entered disabled state
[ 3818.060134] veth198aa96 (unregistering): left allmulticast mode
[ 3818.060139] veth198aa96 (unregistering): left promiscuous mode
[ 3818.060141] docker0: port 3(veth198aa96) entered disabled state
[ 3818.095519] docker0: port 2(vethf6bfcb7) entered blocking state
[ 3818.095542] docker0: port 2(vethf6bfcb7) entered disabled state
[ 3818.095552] vethf6bfcb7: entered allmulticast mode
[ 3818.095625] vethf6bfcb7: entered promiscuous mode
[ 3818.109022] eth0: renamed from veth539498b
[ 3818.110696] docker0: port 2(vethf6bfcb7) entered blocking state
[ 3818.110703] docker0: port 2(vethf6bfcb7) entered forwarding state
[ 3818.157135] docker0: port 3(veth7ca5d76) entered blocking state
[ 3818.157150] docker0: port 3(veth7ca5d76) entered disabled state
[ 3818.157160] veth7ca5d76: entered allmulticast mode
[ 3818.157236] veth7ca5d76: entered promiscuous mode
[ 3818.172132] eth0: renamed from veth769efc0
[ 3818.172876] docker0: port 3(veth7ca5d76) entered blocking state
[ 3818.172882] docker0: port 3(veth7ca5d76) entered forwarding state
[ 3818.207284] docker0: port 2(vethf6bfcb7) entered disabled state
[ 3818.207361] veth539498b: renamed from eth0
[ 3818.264266] docker0: port 2(vethf6bfcb7) entered disabled state
[ 3818.264748] vethf6bfcb7 (unregistering): left allmulticast mode
[ 3818.264750] vethf6bfcb7 (unregistering): left promiscuous mode
[ 3818.264752] docker0: port 2(vethf6bfcb7) entered disabled state
[ 3818.284255] docker0: port 3(veth7ca5d76) entered disabled state
[ 3818.284364] veth769efc0: renamed from eth0
[ 3818.304054] docker0: port 2(vethbeb5250) entered blocking state
[ 3818.304064] docker0: port 2(vethbeb5250) entered disabled state
[ 3818.304075] vethbeb5250: entered allmulticast mode
[ 3818.304137] vethbeb5250: entered promiscuous mode
[ 3818.333004] eth0: renamed from vetha680558
[ 3818.333665] docker0: port 2(vethbeb5250) entered blocking state
[ 3818.333671] docker0: port 2(vethbeb5250) entered forwarding state
[ 3818.358730] docker0: port 3(veth7ca5d76) entered disabled state
[ 3818.358985] veth7ca5d76 (unregistering): left allmulticast mode
[ 3818.358989] veth7ca5d76 (unregistering): left promiscuous mode
[ 3818.358991] docker0: port 3(veth7ca5d76) entered disabled state
[ 3818.428049] docker0: port 2(vethbeb5250) entered disabled state
[ 3818.428102] vetha680558: renamed from eth0
[ 3818.454953] docker0: port 3(vethf64886d) entered blocking state
[ 3818.454957] docker0: port 3(vethf64886d) entered disabled state
[ 3818.454969] vethf64886d: entered allmulticast mode
[ 3818.455087] vethf64886d: entered promiscuous mode
[ 3818.465678] eth0: renamed from veth925fa3b
[ 3818.467237] docker0: port 3(vethf64886d) entered blocking state
[ 3818.467242] docker0: port 3(vethf64886d) entered forwarding state
[ 3818.476383] docker0: port 2(vethbeb5250) entered disabled state
[ 3818.477364] vethbeb5250 (unregistering): left allmulticast mode
[ 3818.477369] vethbeb5250 (unregistering): left promiscuous mode
[ 3818.477373] docker0: port 2(vethbeb5250) entered disabled state
[ 3818.502384] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=43895 DF PROTO=TCP SPT=34822 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3818.637397] docker0: port 2(veth2c26eb8) entered blocking state
[ 3818.637423] docker0: port 2(veth2c26eb8) entered disabled state
[ 3818.637442] veth2c26eb8: entered allmulticast mode
[ 3818.637548] veth2c26eb8: entered promiscuous mode
[ 3818.647320] eth0: renamed from veth30fdfc0
[ 3818.648794] docker0: port 2(veth2c26eb8) entered blocking state
[ 3818.648798] docker0: port 2(veth2c26eb8) entered forwarding state
[ 3818.673487] docker0: port 4(veth9ed070f) entered blocking state
[ 3818.673506] docker0: port 4(veth9ed070f) entered disabled state
[ 3818.673517] veth9ed070f: entered allmulticast mode
[ 3818.673589] veth9ed070f: entered promiscuous mode
[ 3818.688668] eth0: renamed from veth0388a90
[ 3818.690314] docker0: port 4(veth9ed070f) entered blocking state
[ 3818.690320] docker0: port 4(veth9ed070f) entered forwarding state
[ 3818.759943] docker0: port 4(veth9ed070f) entered disabled state
[ 3818.760016] veth0388a90: renamed from eth0
[ 3818.812899] docker0: port 4(veth9ed070f) entered disabled state
[ 3818.813243] veth9ed070f (unregistering): left allmulticast mode
[ 3818.813248] veth9ed070f (unregistering): left promiscuous mode
[ 3818.813251] docker0: port 4(veth9ed070f) entered disabled state
[ 3818.935170] docker0: port 4(vethdc0c5f7) entered blocking state
[ 3818.935174] docker0: port 4(vethdc0c5f7) entered disabled state
[ 3818.935188] vethdc0c5f7: entered allmulticast mode
[ 3818.935238] vethdc0c5f7: entered promiscuous mode
[ 3818.944423] eth0: renamed from veth8a83017
[ 3818.945029] docker0: port 4(vethdc0c5f7) entered blocking state
[ 3818.945034] docker0: port 4(vethdc0c5f7) entered forwarding state
[ 3818.948961] docker0: port 5(veth85509e7) entered blocking state
[ 3818.948964] docker0: port 5(veth85509e7) entered disabled state
[ 3818.948974] veth85509e7: entered allmulticast mode
[ 3818.949015] veth85509e7: entered promiscuous mode
[ 3818.959044] eth0: renamed from vethb1d5fba
[ 3818.959715] docker0: port 5(veth85509e7) entered blocking state
[ 3818.959719] docker0: port 5(veth85509e7) entered forwarding state
[ 3819.021417] docker0: port 4(vethdc0c5f7) entered disabled state
[ 3819.021467] veth8a83017: renamed from eth0
[ 3819.068889] docker0: port 4(vethdc0c5f7) entered disabled state
[ 3819.069185] vethdc0c5f7 (unregistering): left allmulticast mode
[ 3819.069189] vethdc0c5f7 (unregistering): left promiscuous mode
[ 3819.069192] docker0: port 4(vethdc0c5f7) entered disabled state
[ 3819.204420] docker0: port 4(vetha99b1be) entered blocking state
[ 3819.204435] docker0: port 4(vetha99b1be) entered disabled state
[ 3819.204444] vetha99b1be: entered allmulticast mode
[ 3819.204498] vetha99b1be: entered promiscuous mode
[ 3819.214597] eth0: renamed from vethd209e61
[ 3819.216103] docker0: port 4(vetha99b1be) entered blocking state
[ 3819.216108] docker0: port 4(vetha99b1be) entered forwarding state
[ 3819.692687] docker0: port 3(vethf64886d) entered disabled state
[ 3819.692762] veth925fa3b: renamed from eth0
[ 3819.740106] docker0: port 2(veth2c26eb8) entered disabled state
[ 3819.740179] veth30fdfc0: renamed from eth0
[ 3819.765609] docker0: port 3(vethf64886d) entered disabled state
[ 3819.765806] vethf64886d (unregistering): left allmulticast mode
[ 3819.765810] vethf64886d (unregistering): left promiscuous mode
[ 3819.765812] docker0: port 3(vethf64886d) entered disabled state
[ 3819.797859] docker0: port 2(veth2c26eb8) entered disabled state
[ 3819.798179] veth2c26eb8 (unregistering): left allmulticast mode
[ 3819.798184] veth2c26eb8 (unregistering): left promiscuous mode
[ 3819.798199] docker0: port 2(veth2c26eb8) entered disabled state
[ 3820.074288] docker0: port 5(veth85509e7) entered disabled state
[ 3820.074366] vethb1d5fba: renamed from eth0
[ 3820.119079] docker0: port 5(veth85509e7) entered disabled state
[ 3820.119630] veth85509e7 (unregistering): left allmulticast mode
[ 3820.119634] veth85509e7 (unregistering): left promiscuous mode
[ 3820.119637] docker0: port 5(veth85509e7) entered disabled state
[ 3820.718054] docker0: port 4(vetha99b1be) entered disabled state
[ 3820.718129] vethd209e61: renamed from eth0
[ 3820.826983] docker0: port 4(vetha99b1be) entered disabled state
[ 3820.827310] vetha99b1be (unregistering): left allmulticast mode
[ 3820.827315] vetha99b1be (unregistering): left promiscuous mode
[ 3820.827317] docker0: port 4(vetha99b1be) entered disabled state
[ 3821.052784] docker0: port 2(veth49605a7) entered blocking state
[ 3821.052804] docker0: port 2(veth49605a7) entered disabled state
[ 3821.052815] veth49605a7: entered allmulticast mode
[ 3821.052887] veth49605a7: entered promiscuous mode
[ 3821.063702] eth0: renamed from veth85cbe40
[ 3821.067873] docker0: port 3(veth90c87fd) entered blocking state
[ 3821.067884] docker0: port 3(veth90c87fd) entered disabled state
[ 3821.067893] veth90c87fd: entered allmulticast mode
[ 3821.067937] veth90c87fd: entered promiscuous mode
[ 3821.068164] docker0: port 2(veth49605a7) entered blocking state
[ 3821.068172] docker0: port 2(veth49605a7) entered forwarding state
[ 3821.081896] eth0: renamed from vethf8b6c9a
[ 3821.082199] docker0: port 4(veth395c172) entered blocking state
[ 3821.082202] docker0: port 4(veth395c172) entered disabled state
[ 3821.082211] veth395c172: entered allmulticast mode
[ 3821.082260] veth395c172: entered promiscuous mode
[ 3821.082472] docker0: port 3(veth90c87fd) entered blocking state
[ 3821.082476] docker0: port 3(veth90c87fd) entered forwarding state
[ 3821.108251] eth0: renamed from veth58a57e8
[ 3821.108562] docker0: port 5(veth8f6a6e9) entered blocking state
[ 3821.108566] docker0: port 5(veth8f6a6e9) entered disabled state
[ 3821.108573] veth8f6a6e9: entered allmulticast mode
[ 3821.108613] veth8f6a6e9: entered promiscuous mode
[ 3821.108947] docker0: port 4(veth395c172) entered blocking state
[ 3821.108951] docker0: port 4(veth395c172) entered forwarding state
[ 3821.123556] eth0: renamed from veth4855216
[ 3821.124194] docker0: port 5(veth8f6a6e9) entered blocking state
[ 3821.124200] docker0: port 5(veth8f6a6e9) entered forwarding state
[ 3824.895077] docker0: port 5(veth8f6a6e9) entered disabled state
[ 3824.895180] veth4855216: renamed from eth0
[ 3824.915471] docker0: port 2(veth49605a7) entered disabled state
[ 3824.915525] veth85cbe40: renamed from eth0
[ 3824.946786] docker0: port 5(veth8f6a6e9) entered disabled state
[ 3824.947069] veth8f6a6e9 (unregistering): left allmulticast mode
[ 3824.947074] veth8f6a6e9 (unregistering): left promiscuous mode
[ 3824.947076] docker0: port 5(veth8f6a6e9) entered disabled state
[ 3824.972634] docker0: port 2(veth49605a7) entered disabled state
[ 3824.972873] veth49605a7 (unregistering): left allmulticast mode
[ 3824.972877] veth49605a7 (unregistering): left promiscuous mode
[ 3824.972879] docker0: port 2(veth49605a7) entered disabled state
[ 3825.005264] docker0: port 4(veth395c172) entered disabled state
[ 3825.005357] veth58a57e8: renamed from eth0
[ 3825.511485] docker0: port 4(veth395c172) entered disabled state
[ 3825.511722] veth395c172 (unregistering): left allmulticast mode
[ 3825.511726] veth395c172 (unregistering): left promiscuous mode
[ 3825.511727] docker0: port 4(veth395c172) entered disabled state
[ 3825.554126] docker0: port 3(veth90c87fd) entered disabled state
[ 3825.554197] vethf8b6c9a: renamed from eth0
[ 3825.629545] docker0: port 3(veth90c87fd) entered disabled state
[ 3825.629770] veth90c87fd (unregistering): left allmulticast mode
[ 3825.629774] veth90c87fd (unregistering): left promiscuous mode
[ 3825.629776] docker0: port 3(veth90c87fd) entered disabled state
[ 3825.690787] docker0: port 2(veth5530abc) entered blocking state
[ 3825.690793] docker0: port 2(veth5530abc) entered disabled state
[ 3825.690805] veth5530abc: entered allmulticast mode
[ 3825.690871] veth5530abc: entered promiscuous mode
[ 3825.705017] eth0: renamed from veth57ca58d
[ 3825.707444] docker0: port 2(veth5530abc) entered blocking state
[ 3825.707450] docker0: port 2(veth5530abc) entered forwarding state
[ 3825.707499] docker0: port 3(veth0d908b8) entered blocking state
[ 3825.707504] docker0: port 3(veth0d908b8) entered disabled state
[ 3825.707514] veth0d908b8: entered allmulticast mode
[ 3825.707551] veth0d908b8: entered promiscuous mode
[ 3825.732934] eth0: renamed from veth2b394aa
[ 3825.733469] docker0: port 4(vethcbeb395) entered blocking state
[ 3825.733473] docker0: port 4(vethcbeb395) entered disabled state
[ 3825.733483] vethcbeb395: entered allmulticast mode
[ 3825.733519] vethcbeb395: entered promiscuous mode
[ 3825.733943] docker0: port 3(veth0d908b8) entered blocking state
[ 3825.733948] docker0: port 3(veth0d908b8) entered forwarding state
[ 3825.748807] eth0: renamed from vethfd61a4c
[ 3825.750386] docker0: port 4(vethcbeb395) entered blocking state
[ 3825.750392] docker0: port 4(vethcbeb395) entered forwarding state
[ 3825.791705] docker0: port 5(vethbb6468f) entered blocking state
[ 3825.791710] docker0: port 5(vethbb6468f) entered disabled state
[ 3825.791719] vethbb6468f: entered allmulticast mode
[ 3825.791765] vethbb6468f: entered promiscuous mode
[ 3825.801174] eth0: renamed from veth1c9e548
[ 3825.802443] docker0: port 5(vethbb6468f) entered blocking state
[ 3825.802449] docker0: port 5(vethbb6468f) entered forwarding state
[ 3826.081349] docker0: port 3(veth0d908b8) entered disabled state
[ 3826.081406] veth2b394aa: renamed from eth0
[ 3826.119918] docker0: port 5(vethbb6468f) entered disabled state
[ 3826.119965] veth1c9e548: renamed from eth0
[ 3826.143652] docker0: port 3(veth0d908b8) entered disabled state
[ 3826.143863] veth0d908b8 (unregistering): left allmulticast mode
[ 3826.143866] veth0d908b8 (unregistering): left promiscuous mode
[ 3826.143868] docker0: port 3(veth0d908b8) entered disabled state
[ 3826.171206] docker0: port 5(vethbb6468f) entered disabled state
[ 3826.171454] vethbb6468f (unregistering): left allmulticast mode
[ 3826.171458] vethbb6468f (unregistering): left promiscuous mode
[ 3826.171460] docker0: port 5(vethbb6468f) entered disabled state
[ 3826.292839] docker0: port 3(veth7828992) entered blocking state
[ 3826.292845] docker0: port 3(veth7828992) entered disabled state
[ 3826.292855] veth7828992: entered allmulticast mode
[ 3826.292929] veth7828992: entered promiscuous mode
[ 3826.302579] eth0: renamed from vethafac9ae
[ 3826.304379] docker0: port 3(veth7828992) entered blocking state
[ 3826.304385] docker0: port 3(veth7828992) entered forwarding state
[ 3826.305448] docker0: port 5(veth47c57ea) entered blocking state
[ 3826.305465] docker0: port 5(veth47c57ea) entered disabled state
[ 3826.305533] veth47c57ea: entered allmulticast mode
[ 3826.305602] veth47c57ea: entered promiscuous mode
[ 3826.317485] eth0: renamed from vethd95d1b3
[ 3826.318433] docker0: port 5(veth47c57ea) entered blocking state
[ 3826.318439] docker0: port 5(veth47c57ea) entered forwarding state
[ 3826.409374] docker0: port 3(veth7828992) entered disabled state
[ 3826.409429] vethafac9ae: renamed from eth0
[ 3826.437577] docker0: port 5(veth47c57ea) entered disabled state
[ 3826.437670] vethd95d1b3: renamed from eth0
[ 3826.470268] docker0: port 3(veth7828992) entered disabled state
[ 3826.470483] veth7828992 (unregistering): left allmulticast mode
[ 3826.470487] veth7828992 (unregistering): left promiscuous mode
[ 3826.470490] docker0: port 3(veth7828992) entered disabled state
[ 3826.501533] docker0: port 5(veth47c57ea) entered disabled state
[ 3826.501757] veth47c57ea (unregistering): left allmulticast mode
[ 3826.501761] veth47c57ea (unregistering): left promiscuous mode
[ 3826.501763] docker0: port 5(veth47c57ea) entered disabled state
[ 3829.202755] docker0: port 4(vethcbeb395) entered disabled state
[ 3829.202812] vethfd61a4c: renamed from eth0
[ 3829.250579] docker0: port 4(vethcbeb395) entered disabled state
[ 3829.250796] vethcbeb395 (unregistering): left allmulticast mode
[ 3829.250800] vethcbeb395 (unregistering): left promiscuous mode
[ 3829.250802] docker0: port 4(vethcbeb395) entered disabled state
[ 3829.391168] docker0: port 3(vetha0a0ea4) entered blocking state
[ 3829.391184] docker0: port 3(vetha0a0ea4) entered disabled state
[ 3829.391199] vetha0a0ea4: entered allmulticast mode
[ 3829.391271] vetha0a0ea4: entered promiscuous mode
[ 3829.401882] eth0: renamed from veth8932538
[ 3829.403873] docker0: port 3(vetha0a0ea4) entered blocking state
[ 3829.403879] docker0: port 3(vetha0a0ea4) entered forwarding state
[ 3838.611974] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=46534 DF PROTO=TCP SPT=57158 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3840.713953] docker0: port 3(vetha0a0ea4) entered disabled state
[ 3840.714042] veth8932538: renamed from eth0
[ 3840.753440] docker0: port 3(vetha0a0ea4) entered disabled state
[ 3840.753724] vetha0a0ea4 (unregistering): left allmulticast mode
[ 3840.753729] vetha0a0ea4 (unregistering): left promiscuous mode
[ 3840.753732] docker0: port 3(vetha0a0ea4) entered disabled state
[ 3840.985832] docker0: port 3(veth3f14f30) entered blocking state
[ 3840.985838] docker0: port 3(veth3f14f30) entered disabled state
[ 3840.985848] veth3f14f30: entered allmulticast mode
[ 3840.985922] veth3f14f30: entered promiscuous mode
[ 3840.995630] eth0: renamed from veth9459156
[ 3840.996285] docker0: port 3(veth3f14f30) entered blocking state
[ 3840.996291] docker0: port 3(veth3f14f30) entered forwarding state
[ 3841.096363] docker0: port 3(veth3f14f30) entered disabled state
[ 3841.096417] veth9459156: renamed from eth0
[ 3841.148512] docker0: port 3(veth3f14f30) entered disabled state
[ 3841.148797] veth3f14f30 (unregistering): left allmulticast mode
[ 3841.148802] veth3f14f30 (unregistering): left promiscuous mode
[ 3841.148804] docker0: port 3(veth3f14f30) entered disabled state
[ 3848.696936] docker0: port 2(veth5530abc) entered disabled state
[ 3848.697023] veth57ca58d: renamed from eth0
[ 3848.753325] docker0: port 2(veth5530abc) entered disabled state
[ 3848.753631] veth5530abc (unregistering): left allmulticast mode
[ 3848.753636] veth5530abc (unregistering): left promiscuous mode
[ 3848.753638] docker0: port 2(veth5530abc) entered disabled state
[ 3849.017078] docker0: port 2(vetha63c483) entered blocking state
[ 3849.017097] docker0: port 2(vetha63c483) entered disabled state
[ 3849.017107] vetha63c483: entered allmulticast mode
[ 3849.017167] vetha63c483: entered promiscuous mode
[ 3849.026377] eth0: renamed from vethbc315b9
[ 3849.027055] docker0: port 2(vetha63c483) entered blocking state
[ 3849.027062] docker0: port 2(vetha63c483) entered forwarding state
[ 3860.153831] docker0: port 2(vetha63c483) entered disabled state
[ 3860.153878] vethbc315b9: renamed from eth0
[ 3860.205004] docker0: port 2(vetha63c483) entered disabled state
[ 3860.205320] vetha63c483 (unregistering): left allmulticast mode
[ 3860.205325] vetha63c483 (unregistering): left promiscuous mode
[ 3860.205328] docker0: port 2(vetha63c483) entered disabled state
[ 3860.334801] docker0: port 2(veth6476b60) entered blocking state
[ 3860.334821] docker0: port 2(veth6476b60) entered disabled state
[ 3860.334831] veth6476b60: entered allmulticast mode
[ 3860.334898] veth6476b60: entered promiscuous mode
[ 3860.344450] eth0: renamed from veth6c43a24
[ 3860.345212] docker0: port 2(veth6476b60) entered blocking state
[ 3860.345218] docker0: port 2(veth6476b60) entered forwarding state
[ 3860.436864] docker0: port 2(veth6476b60) entered disabled state
[ 3860.436928] veth6c43a24: renamed from eth0
[ 3860.491066] docker0: port 2(veth6476b60) entered disabled state
[ 3860.491347] veth6476b60 (unregistering): left allmulticast mode
[ 3860.491352] veth6476b60 (unregistering): left promiscuous mode
[ 3860.491354] docker0: port 2(veth6476b60) entered disabled state
[ 3861.216289] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=7431 DF PROTO=UDP SPT=1900 DPT=56552 LEN=281
[ 3878.501577] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=34027 DF PROTO=TCP SPT=37678 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3898.643084] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=17703 DF PROTO=TCP SPT=38402 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3923.500836] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=7296 DF PROTO=TCP SPT=41528 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3938.500586] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=14484 DF PROTO=TCP SPT=60924 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3958.611110] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=3292 DF PROTO=TCP SPT=38376 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3983.499937] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=24553 DF PROTO=TCP SPT=33802 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 3998.499694] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=60166 DF PROTO=TCP SPT=44668 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4018.641215] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=33718 DF PROTO=TCP SPT=46306 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4041.935863] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=36652 DF PROTO=UDP SPT=1900 DPT=55261 LEN=281
[ 4058.498812] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=59201 DF PROTO=TCP SPT=48398 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4078.608312] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=21415 DF PROTO=TCP SPT=50468 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4103.498567] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=27593 DF PROTO=TCP SPT=60620 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4118.497864] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=25403 DF PROTO=TCP SPT=52660 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4138.640332] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=40612 DF PROTO=TCP SPT=58810 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4163.497147] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=34036 DF PROTO=TCP SPT=55290 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4178.496871] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=40631 DF PROTO=TCP SPT=54100 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4198.607449] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=49992 DF PROTO=TCP SPT=46336 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4223.496176] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=17507 DF PROTO=TCP SPT=38072 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4238.495972] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=52304 DF PROTO=TCP SPT=58572 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4258.637524] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=38858 DF PROTO=TCP SPT=58628 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4283.495333] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=11531 DF PROTO=TCP SPT=50014 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4298.495016] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=26134 DF PROTO=TCP SPT=53838 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4318.604637] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=33383 DF PROTO=TCP SPT=48864 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4343.179124] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=10766 DF PROTO=UDP SPT=1900 DPT=35550 LEN=281
[ 4358.494205] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=20046 DF PROTO=TCP SPT=59678 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4378.636696] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=2164 DF PROTO=TCP SPT=51808 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4403.494054] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=26113 DF PROTO=TCP SPT=47062 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4418.493253] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=52932 DF PROTO=TCP SPT=46576 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4438.603786] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=9935 DF PROTO=TCP SPT=47792 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4463.493110] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=65095 DF PROTO=TCP SPT=60652 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4478.492400] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=28890 DF PROTO=TCP SPT=38176 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4493.494742] docker0: port 2(veth38ae893) entered blocking state
[ 4493.494748] docker0: port 2(veth38ae893) entered disabled state
[ 4493.494757] veth38ae893: entered allmulticast mode
[ 4493.494818] veth38ae893: entered promiscuous mode
[ 4493.503153] eth0: renamed from veth3c631c6
[ 4493.503543] docker0: port 2(veth38ae893) entered blocking state
[ 4493.503547] docker0: port 2(veth38ae893) entered forwarding state
[ 4493.606065] docker0: port 2(veth38ae893) entered disabled state
[ 4493.606151] veth3c631c6: renamed from eth0
[ 4493.650744] docker0: port 2(veth38ae893) entered disabled state
[ 4493.651062] veth38ae893 (unregistering): left allmulticast mode
[ 4493.651067] veth38ae893 (unregistering): left promiscuous mode
[ 4493.651070] docker0: port 2(veth38ae893) entered disabled state
[ 4493.738547] docker0: port 2(vethb4f7ba0) entered blocking state
[ 4493.738563] docker0: port 2(vethb4f7ba0) entered disabled state
[ 4493.738573] vethb4f7ba0: entered allmulticast mode
[ 4493.738628] vethb4f7ba0: entered promiscuous mode
[ 4493.748456] eth0: renamed from vethcbbcfdd
[ 4493.748996] docker0: port 2(vethb4f7ba0) entered blocking state
[ 4493.749001] docker0: port 2(vethb4f7ba0) entered forwarding state
[ 4493.806380] docker0: port 3(veth3a57e53) entered blocking state
[ 4493.806388] docker0: port 3(veth3a57e53) entered disabled state
[ 4493.806405] veth3a57e53: entered allmulticast mode
[ 4493.806475] veth3a57e53: entered promiscuous mode
[ 4493.816687] eth0: renamed from vethb35bd04
[ 4493.817354] docker0: port 3(veth3a57e53) entered blocking state
[ 4493.817358] docker0: port 3(veth3a57e53) entered forwarding state
[ 4493.856920] docker0: port 2(vethb4f7ba0) entered disabled state
[ 4493.857004] vethcbbcfdd: renamed from eth0
[ 4493.907557] docker0: port 2(vethb4f7ba0) entered disabled state
[ 4493.907850] vethb4f7ba0 (unregistering): left allmulticast mode
[ 4493.907856] vethb4f7ba0 (unregistering): left promiscuous mode
[ 4493.907859] docker0: port 2(vethb4f7ba0) entered disabled state
[ 4493.924317] docker0: port 3(veth3a57e53) entered disabled state
[ 4493.924387] vethb35bd04: renamed from eth0
[ 4493.982778] docker0: port 3(veth3a57e53) entered disabled state
[ 4493.983074] veth3a57e53 (unregistering): left allmulticast mode
[ 4493.983079] veth3a57e53 (unregistering): left promiscuous mode
[ 4493.983081] docker0: port 3(veth3a57e53) entered disabled state
[ 4494.067999] docker0: port 2(vethc35c8f7) entered blocking state
[ 4494.068003] docker0: port 2(vethc35c8f7) entered disabled state
[ 4494.068011] vethc35c8f7: entered allmulticast mode
[ 4494.068050] vethc35c8f7: entered promiscuous mode
[ 4494.078000] eth0: renamed from vethb01eaad
[ 4494.078724] docker0: port 2(vethc35c8f7) entered blocking state
[ 4494.078730] docker0: port 2(vethc35c8f7) entered forwarding state
[ 4494.130971] docker0: port 3(veth4c08440) entered blocking state
[ 4494.130986] docker0: port 3(veth4c08440) entered disabled state
[ 4494.130996] veth4c08440: entered allmulticast mode
[ 4494.131049] veth4c08440: entered promiscuous mode
[ 4494.139528] eth0: renamed from veth7e08c9e
[ 4494.140230] docker0: port 3(veth4c08440) entered blocking state
[ 4494.140235] docker0: port 3(veth4c08440) entered forwarding state
[ 4494.180435] docker0: port 2(vethc35c8f7) entered disabled state
[ 4494.180508] vethb01eaad: renamed from eth0
[ 4494.223881] docker0: port 2(vethc35c8f7) entered disabled state
[ 4494.224204] vethc35c8f7 (unregistering): left allmulticast mode
[ 4494.224210] vethc35c8f7 (unregistering): left promiscuous mode
[ 4494.224213] docker0: port 2(vethc35c8f7) entered disabled state
[ 4494.241804] docker0: port 3(veth4c08440) entered disabled state
[ 4494.241889] veth7e08c9e: renamed from eth0
[ 4494.283327] docker0: port 3(veth4c08440) entered disabled state
[ 4494.283534] veth4c08440 (unregistering): left allmulticast mode
[ 4494.283538] veth4c08440 (unregistering): left promiscuous mode
[ 4494.283540] docker0: port 3(veth4c08440) entered disabled state
[ 4494.440182] docker0: port 2(veth8f8763b) entered blocking state
[ 4494.440203] docker0: port 2(veth8f8763b) entered disabled state
[ 4494.440213] veth8f8763b: entered allmulticast mode
[ 4494.440284] veth8f8763b: entered promiscuous mode
[ 4494.453716] eth0: renamed from veth408b3d7
[ 4494.456930] docker0: port 2(veth8f8763b) entered blocking state
[ 4494.456936] docker0: port 2(veth8f8763b) entered forwarding state
[ 4494.457498] docker0: port 3(veth8cfb834) entered blocking state
[ 4494.457503] docker0: port 3(veth8cfb834) entered disabled state
[ 4494.457513] veth8cfb834: entered allmulticast mode
[ 4494.457571] veth8cfb834: entered promiscuous mode
[ 4494.478087] eth0: renamed from vetha92ab1d
[ 4494.479001] docker0: port 3(veth8cfb834) entered blocking state
[ 4494.479006] docker0: port 3(veth8cfb834) entered forwarding state
[ 4494.555493] docker0: port 4(veth965f2f7) entered blocking state
[ 4494.555505] docker0: port 4(veth965f2f7) entered disabled state
[ 4494.555519] veth965f2f7: entered allmulticast mode
[ 4494.555561] veth965f2f7: entered promiscuous mode
[ 4494.566388] eth0: renamed from veth0390228
[ 4494.567411] docker0: port 4(veth965f2f7) entered blocking state
[ 4494.567418] docker0: port 4(veth965f2f7) entered forwarding state
[ 4494.578434] docker0: port 2(veth8f8763b) entered disabled state
[ 4494.578487] veth408b3d7: renamed from eth0
[ 4494.606856] docker0: port 3(veth8cfb834) entered disabled state
[ 4494.606927] vetha92ab1d: renamed from eth0
[ 4494.632225] docker0: port 2(veth8f8763b) entered disabled state
[ 4494.632437] veth8f8763b (unregistering): left allmulticast mode
[ 4494.632440] veth8f8763b (unregistering): left promiscuous mode
[ 4494.632442] docker0: port 2(veth8f8763b) entered disabled state
[ 4494.659418] docker0: port 3(veth8cfb834) entered disabled state
[ 4494.659766] veth8cfb834 (unregistering): left allmulticast mode
[ 4494.659771] veth8cfb834 (unregistering): left promiscuous mode
[ 4494.659774] docker0: port 3(veth8cfb834) entered disabled state
[ 4494.660380] docker0: port 4(veth965f2f7) entered disabled state
[ 4494.660437] veth0390228: renamed from eth0
[ 4494.743336] docker0: port 4(veth965f2f7) entered disabled state
[ 4494.743576] veth965f2f7 (unregistering): left allmulticast mode
[ 4494.743580] veth965f2f7 (unregistering): left promiscuous mode
[ 4494.743582] docker0: port 4(veth965f2f7) entered disabled state
[ 4494.798307] docker0: port 2(veth45fe15f) entered blocking state
[ 4494.798311] docker0: port 2(veth45fe15f) entered disabled state
[ 4494.798320] veth45fe15f: entered allmulticast mode
[ 4494.798361] veth45fe15f: entered promiscuous mode
[ 4494.807917] eth0: renamed from vethabd6cc5
[ 4494.808442] docker0: port 2(veth45fe15f) entered blocking state
[ 4494.808447] docker0: port 2(veth45fe15f) entered forwarding state
[ 4494.819168] docker0: port 3(vethae84e6e) entered blocking state
[ 4494.819188] docker0: port 3(vethae84e6e) entered disabled state
[ 4494.819198] vethae84e6e: entered allmulticast mode
[ 4494.819260] vethae84e6e: entered promiscuous mode
[ 4494.833206] eth0: renamed from vethf6e4971
[ 4494.833807] docker0: port 3(vethae84e6e) entered blocking state
[ 4494.833812] docker0: port 3(vethae84e6e) entered forwarding state
[ 4494.872241] docker0: port 4(vethae68bd2) entered blocking state
[ 4494.872246] docker0: port 4(vethae68bd2) entered disabled state
[ 4494.872256] vethae68bd2: entered allmulticast mode
[ 4494.872312] vethae68bd2: entered promiscuous mode
[ 4494.877781] docker0: port 2(veth45fe15f) entered disabled state
[ 4494.877873] vethabd6cc5: renamed from eth0
[ 4494.893197] eth0: renamed from vetha358caf
[ 4494.893807] docker0: port 4(vethae68bd2) entered blocking state
[ 4494.893814] docker0: port 4(vethae68bd2) entered forwarding state
[ 4494.931718] docker0: port 2(veth45fe15f) entered disabled state
[ 4494.932100] veth45fe15f (unregistering): left allmulticast mode
[ 4494.932104] veth45fe15f (unregistering): left promiscuous mode
[ 4494.932107] docker0: port 2(veth45fe15f) entered disabled state
[ 4494.959344] docker0: port 3(vethae84e6e) entered disabled state
[ 4494.959424] vethf6e4971: renamed from eth0
[ 4495.009456] docker0: port 3(vethae84e6e) entered disabled state
[ 4495.009868] vethae84e6e (unregistering): left allmulticast mode
[ 4495.009872] vethae84e6e (unregistering): left promiscuous mode
[ 4495.009875] docker0: port 3(vethae84e6e) entered disabled state
[ 4495.072032] docker0: port 2(vetha7c17d3) entered blocking state
[ 4495.072053] docker0: port 2(vetha7c17d3) entered disabled state
[ 4495.072064] vetha7c17d3: entered allmulticast mode
[ 4495.072126] vetha7c17d3: entered promiscuous mode
[ 4495.081527] eth0: renamed from veth522fbdf
[ 4495.082303] docker0: port 2(vetha7c17d3) entered blocking state
[ 4495.082309] docker0: port 2(vetha7c17d3) entered forwarding state
[ 4495.234657] docker0: port 3(veth47fa82e) entered blocking state
[ 4495.234663] docker0: port 3(veth47fa82e) entered disabled state
[ 4495.234673] veth47fa82e: entered allmulticast mode
[ 4495.234743] veth47fa82e: entered promiscuous mode
[ 4495.243353] eth0: renamed from veth72b3002
[ 4495.244291] docker0: port 3(veth47fa82e) entered blocking state
[ 4495.244296] docker0: port 3(veth47fa82e) entered forwarding state
[ 4495.312826] docker0: port 3(veth47fa82e) entered disabled state
[ 4495.312923] veth72b3002: renamed from eth0
[ 4495.360243] docker0: port 3(veth47fa82e) entered disabled state
[ 4495.360545] veth47fa82e (unregistering): left allmulticast mode
[ 4495.360549] veth47fa82e (unregistering): left promiscuous mode
[ 4495.360552] docker0: port 3(veth47fa82e) entered disabled state
[ 4495.490786] docker0: port 3(veth83ebe3c) entered blocking state
[ 4495.490790] docker0: port 3(veth83ebe3c) entered disabled state
[ 4495.490796] veth83ebe3c: entered allmulticast mode
[ 4495.490829] veth83ebe3c: entered promiscuous mode
[ 4495.505592] eth0: renamed from vethe6111a6
[ 4495.506058] docker0: port 3(veth83ebe3c) entered blocking state
[ 4495.506062] docker0: port 3(veth83ebe3c) entered forwarding state
[ 4495.588300] docker0: port 5(vethac47c6d) entered blocking state
[ 4495.588304] docker0: port 5(vethac47c6d) entered disabled state
[ 4495.588311] vethac47c6d: entered allmulticast mode
[ 4495.588344] vethac47c6d: entered promiscuous mode
[ 4495.598897] eth0: renamed from veth49c1950
[ 4495.599617] docker0: port 5(vethac47c6d) entered blocking state
[ 4495.599623] docker0: port 5(vethac47c6d) entered forwarding state
[ 4495.670698] docker0: port 5(vethac47c6d) entered disabled state
[ 4495.670751] veth49c1950: renamed from eth0
[ 4495.719438] docker0: port 5(vethac47c6d) entered disabled state
[ 4495.719691] vethac47c6d (unregistering): left allmulticast mode
[ 4495.719695] vethac47c6d (unregistering): left promiscuous mode
[ 4495.719697] docker0: port 5(vethac47c6d) entered disabled state
[ 4495.922952] docker0: port 4(vethae68bd2) entered disabled state
[ 4495.924190] vetha358caf: renamed from eth0
[ 4495.974411] docker0: port 4(vethae68bd2) entered disabled state
[ 4495.974731] vethae68bd2 (unregistering): left allmulticast mode
[ 4495.974737] vethae68bd2 (unregistering): left promiscuous mode
[ 4495.974740] docker0: port 4(vethae68bd2) entered disabled state
[ 4496.140199] docker0: port 2(vetha7c17d3) entered disabled state
[ 4496.140282] veth522fbdf: renamed from eth0
[ 4496.242474] docker0: port 2(vetha7c17d3) entered disabled state
[ 4496.243633] vetha7c17d3 (unregistering): left allmulticast mode
[ 4496.243638] vetha7c17d3 (unregistering): left promiscuous mode
[ 4496.243642] docker0: port 2(vetha7c17d3) entered disabled state
[ 4496.417430] docker0: port 2(veth5fccb1b) entered blocking state
[ 4496.417446] docker0: port 2(veth5fccb1b) entered disabled state
[ 4496.417458] veth5fccb1b: entered allmulticast mode
[ 4496.417521] veth5fccb1b: entered promiscuous mode
[ 4496.468284] eth0: renamed from veth07f16c9
[ 4496.470334] docker0: port 4(veth1e13af3) entered blocking state
[ 4496.470352] docker0: port 4(veth1e13af3) entered disabled state
[ 4496.470362] veth1e13af3: entered allmulticast mode
[ 4496.470473] veth1e13af3: entered promiscuous mode
[ 4496.470722] docker0: port 2(veth5fccb1b) entered blocking state
[ 4496.470728] docker0: port 2(veth5fccb1b) entered forwarding state
[ 4496.482900] eth0: renamed from veth86b1a32
[ 4496.484550] docker0: port 4(veth1e13af3) entered blocking state
[ 4496.484554] docker0: port 4(veth1e13af3) entered forwarding state
[ 4496.611688] docker0: port 5(veth58d6801) entered blocking state
[ 4496.611695] docker0: port 5(veth58d6801) entered disabled state
[ 4496.611705] veth58d6801: entered allmulticast mode
[ 4496.611787] veth58d6801: entered promiscuous mode
[ 4496.621444] eth0: renamed from veth861d653
[ 4496.622094] docker0: port 5(veth58d6801) entered blocking state
[ 4496.622098] docker0: port 5(veth58d6801) entered forwarding state
[ 4496.673833] docker0: port 3(veth83ebe3c) entered disabled state
[ 4496.673881] vethe6111a6: renamed from eth0
[ 4496.724407] docker0: port 3(veth83ebe3c) entered disabled state
[ 4496.724761] veth83ebe3c (unregistering): left allmulticast mode
[ 4496.724766] veth83ebe3c (unregistering): left promiscuous mode
[ 4496.724769] docker0: port 3(veth83ebe3c) entered disabled state
[ 4497.143004] docker0: port 3(veth0285969) entered blocking state
[ 4497.143017] docker0: port 3(veth0285969) entered disabled state
[ 4497.143026] veth0285969: entered allmulticast mode
[ 4497.143068] veth0285969: entered promiscuous mode
[ 4497.153807] eth0: renamed from vethc967d19
[ 4497.154529] docker0: port 3(veth0285969) entered blocking state
[ 4497.154536] docker0: port 3(veth0285969) entered forwarding state
[ 4497.431823] docker0: port 2(veth5fccb1b) entered disabled state
[ 4497.431916] veth07f16c9: renamed from eth0
[ 4497.465475] docker0: port 2(veth5fccb1b) entered disabled state
[ 4497.465796] veth5fccb1b (unregistering): left allmulticast mode
[ 4497.465801] veth5fccb1b (unregistering): left promiscuous mode
[ 4497.465803] docker0: port 2(veth5fccb1b) entered disabled state
[ 4497.978604] docker0: port 2(veth4afa350) entered blocking state
[ 4497.978611] docker0: port 2(veth4afa350) entered disabled state
[ 4497.978621] veth4afa350: entered allmulticast mode
[ 4497.978688] veth4afa350: entered promiscuous mode
[ 4497.988310] eth0: renamed from vethc70ae6c
[ 4497.989043] docker0: port 2(veth4afa350) entered blocking state
[ 4497.989049] docker0: port 2(veth4afa350) entered forwarding state
[ 4498.633883] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=27625 DF PROTO=TCP SPT=59232 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4500.321958] docker0: port 4(veth1e13af3) entered disabled state
[ 4500.322049] veth86b1a32: renamed from eth0
[ 4500.366232] docker0: port 4(veth1e13af3) entered disabled state
[ 4500.366481] veth1e13af3 (unregistering): left allmulticast mode
[ 4500.366485] veth1e13af3 (unregistering): left promiscuous mode
[ 4500.366487] docker0: port 4(veth1e13af3) entered disabled state
[ 4500.518257] docker0: port 5(veth58d6801) entered disabled state
[ 4500.518416] veth861d653: renamed from eth0
[ 4500.564671] docker0: port 5(veth58d6801) entered disabled state
[ 4500.565188] veth58d6801 (unregistering): left allmulticast mode
[ 4500.565191] veth58d6801 (unregistering): left promiscuous mode
[ 4500.565194] docker0: port 5(veth58d6801) entered disabled state
[ 4500.734991] docker0: port 3(veth0285969) entered disabled state
[ 4500.735058] vethc967d19: renamed from eth0
[ 4500.797444] docker0: port 3(veth0285969) entered disabled state
[ 4500.797688] veth0285969 (unregistering): left allmulticast mode
[ 4500.797692] veth0285969 (unregistering): left promiscuous mode
[ 4500.797694] docker0: port 3(veth0285969) entered disabled state
[ 4500.951744] docker0: port 3(veth11f8488) entered blocking state
[ 4500.951771] docker0: port 3(veth11f8488) entered disabled state
[ 4500.951781] veth11f8488: entered allmulticast mode
[ 4500.951843] veth11f8488: entered promiscuous mode
[ 4500.960043] eth0: renamed from veth3d5f8ae
[ 4500.961425] docker0: port 3(veth11f8488) entered blocking state
[ 4500.961431] docker0: port 3(veth11f8488) entered forwarding state
[ 4500.961548] docker0: port 4(vethd7508fa) entered blocking state
[ 4500.961560] docker0: port 4(vethd7508fa) entered disabled state
[ 4500.961568] vethd7508fa: entered allmulticast mode
[ 4500.961639] vethd7508fa: entered promiscuous mode
[ 4500.982578] eth0: renamed from veth975a880
[ 4500.983024] docker0: port 4(vethd7508fa) entered blocking state
[ 4500.983027] docker0: port 4(vethd7508fa) entered forwarding state
[ 4500.983058] docker0: port 5(veth6f536b2) entered blocking state
[ 4500.983062] docker0: port 5(veth6f536b2) entered disabled state
[ 4500.983072] veth6f536b2: entered allmulticast mode
[ 4500.983117] veth6f536b2: entered promiscuous mode
[ 4500.996747] eth0: renamed from veth1507b41
[ 4500.997297] docker0: port 5(veth6f536b2) entered blocking state
[ 4500.997303] docker0: port 5(veth6f536b2) entered forwarding state
[ 4501.281687] docker0: port 3(veth11f8488) entered disabled state
[ 4501.281781] veth3d5f8ae: renamed from eth0
[ 4501.326201] docker0: port 4(vethd7508fa) entered disabled state
[ 4501.326265] veth975a880: renamed from eth0
[ 4501.351030] docker0: port 3(veth11f8488) entered disabled state
[ 4501.351647] veth11f8488 (unregistering): left allmulticast mode
[ 4501.351653] veth11f8488 (unregistering): left promiscuous mode
[ 4501.351657] docker0: port 3(veth11f8488) entered disabled state
[ 4501.376358] docker0: port 4(vethd7508fa) entered disabled state
[ 4501.376653] vethd7508fa (unregistering): left allmulticast mode
[ 4501.376658] vethd7508fa (unregistering): left promiscuous mode
[ 4501.376661] docker0: port 4(vethd7508fa) entered disabled state
[ 4501.625935] docker0: port 3(veth2cacace) entered blocking state
[ 4501.625955] docker0: port 3(veth2cacace) entered disabled state
[ 4501.625973] veth2cacace: entered allmulticast mode
[ 4501.626047] veth2cacace: entered promiscuous mode
[ 4501.635711] eth0: renamed from veth78be52b
[ 4501.637173] docker0: port 4(vethe4bb980) entered blocking state
[ 4501.637176] docker0: port 4(vethe4bb980) entered disabled state
[ 4501.637184] vethe4bb980: entered allmulticast mode
[ 4501.637223] vethe4bb980: entered promiscuous mode
[ 4501.637504] docker0: port 3(veth2cacace) entered blocking state
[ 4501.637510] docker0: port 3(veth2cacace) entered forwarding state
[ 4501.649886] eth0: renamed from veth72d11ab
[ 4501.650865] docker0: port 4(vethe4bb980) entered blocking state
[ 4501.650870] docker0: port 4(vethe4bb980) entered forwarding state
[ 4501.719143] docker0: port 2(veth4afa350) entered disabled state
[ 4501.719202] vethc70ae6c: renamed from eth0
[ 4501.759459] docker0: port 2(veth4afa350) entered disabled state
[ 4501.759720] veth4afa350 (unregistering): left allmulticast mode
[ 4501.759723] veth4afa350 (unregistering): left promiscuous mode
[ 4501.759725] docker0: port 2(veth4afa350) entered disabled state
[ 4501.966707] docker0: port 2(vetha4a8041) entered blocking state
[ 4501.966713] docker0: port 2(vetha4a8041) entered disabled state
[ 4501.966723] vetha4a8041: entered allmulticast mode
[ 4501.966805] vetha4a8041: entered promiscuous mode
[ 4501.976234] eth0: renamed from veth7b17ada
[ 4501.977430] docker0: port 2(vetha4a8041) entered blocking state
[ 4501.977434] docker0: port 2(vetha4a8041) entered forwarding state
[ 4505.634596] docker0: port 2(vetha4a8041) entered disabled state
[ 4505.635699] veth7b17ada: renamed from eth0
[ 4505.692390] docker0: port 2(vetha4a8041) entered disabled state
[ 4505.692704] vetha4a8041 (unregistering): left allmulticast mode
[ 4505.692709] vetha4a8041 (unregistering): left promiscuous mode
[ 4505.692712] docker0: port 2(vetha4a8041) entered disabled state
[ 4505.839773] docker0: port 2(vethf5e3b67) entered blocking state
[ 4505.839788] docker0: port 2(vethf5e3b67) entered disabled state
[ 4505.839801] vethf5e3b67: entered allmulticast mode
[ 4505.839843] vethf5e3b67: entered promiscuous mode
[ 4505.849428] eth0: renamed from vethc876776
[ 4505.850164] docker0: port 2(vethf5e3b67) entered blocking state
[ 4505.850170] docker0: port 2(vethf5e3b67) entered forwarding state
[ 4514.454324] docker0: port 3(veth2cacace) entered disabled state
[ 4514.454406] veth78be52b: renamed from eth0
[ 4514.505249] docker0: port 3(veth2cacace) entered disabled state
[ 4514.505539] veth2cacace (unregistering): left allmulticast mode
[ 4514.505543] veth2cacace (unregistering): left promiscuous mode
[ 4514.505546] docker0: port 3(veth2cacace) entered disabled state
[ 4514.590848] docker0: port 4(vethe4bb980) entered disabled state
[ 4514.591148] veth72d11ab: renamed from eth0
[ 4514.626076] docker0: port 4(vethe4bb980) entered disabled state
[ 4514.626308] vethe4bb980 (unregistering): left allmulticast mode
[ 4514.626311] vethe4bb980 (unregistering): left promiscuous mode
[ 4514.626313] docker0: port 4(vethe4bb980) entered disabled state
[ 4514.780468] docker0: port 3(veth2783522) entered blocking state
[ 4514.780483] docker0: port 3(veth2783522) entered disabled state
[ 4514.780494] veth2783522: entered allmulticast mode
[ 4514.780574] veth2783522: entered promiscuous mode
[ 4514.790285] eth0: renamed from veth3c3a5ea
[ 4514.792398] docker0: port 3(veth2783522) entered blocking state
[ 4514.792403] docker0: port 3(veth2783522) entered forwarding state
[ 4514.792522] docker0: port 4(veth323c408) entered blocking state
[ 4514.792527] docker0: port 4(veth323c408) entered disabled state
[ 4514.792537] veth323c408: entered allmulticast mode
[ 4514.792601] veth323c408: entered promiscuous mode
[ 4514.809834] eth0: renamed from veth9088904
[ 4514.810650] docker0: port 4(veth323c408) entered blocking state
[ 4514.810656] docker0: port 4(veth323c408) entered forwarding state
[ 4514.890225] docker0: port 3(veth2783522) entered disabled state
[ 4514.890294] veth3c3a5ea: renamed from eth0
[ 4514.918973] docker0: port 4(veth323c408) entered disabled state
[ 4514.919040] veth9088904: renamed from eth0
[ 4514.949139] docker0: port 3(veth2783522) entered disabled state
[ 4514.949357] veth2783522 (unregistering): left allmulticast mode
[ 4514.949361] veth2783522 (unregistering): left promiscuous mode
[ 4514.949363] docker0: port 3(veth2783522) entered disabled state
[ 4514.978235] docker0: port 4(veth323c408) entered disabled state
[ 4514.978481] veth323c408 (unregistering): left allmulticast mode
[ 4514.978485] veth323c408 (unregistering): left promiscuous mode
[ 4514.978487] docker0: port 4(veth323c408) entered disabled state
[ 4517.130606] docker0: port 2(vethf5e3b67) entered disabled state
[ 4517.130689] vethc876776: renamed from eth0
[ 4517.178139] docker0: port 2(vethf5e3b67) entered disabled state
[ 4517.178434] vethf5e3b67 (unregistering): left allmulticast mode
[ 4517.178439] vethf5e3b67 (unregistering): left promiscuous mode
[ 4517.178441] docker0: port 2(vethf5e3b67) entered disabled state
[ 4517.341787] docker0: port 2(vethbd44556) entered blocking state
[ 4517.341802] docker0: port 2(vethbd44556) entered disabled state
[ 4517.341816] vethbd44556: entered allmulticast mode
[ 4517.341884] vethbd44556: entered promiscuous mode
[ 4517.351057] eth0: renamed from veth8aab054
[ 4517.352656] docker0: port 2(vethbd44556) entered blocking state
[ 4517.352662] docker0: port 2(vethbd44556) entered forwarding state
[ 4517.447414] docker0: port 2(vethbd44556) entered disabled state
[ 4517.447501] veth8aab054: renamed from eth0
[ 4517.489191] docker0: port 2(vethbd44556) entered disabled state
[ 4517.490266] vethbd44556 (unregistering): left allmulticast mode
[ 4517.490271] vethbd44556 (unregistering): left promiscuous mode
[ 4517.490276] docker0: port 2(vethbd44556) entered disabled state
[ 4523.491578] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=13768 DF PROTO=TCP SPT=37638 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4524.234111] docker0: port 5(veth6f536b2) entered disabled state
[ 4524.234204] veth1507b41: renamed from eth0
[ 4524.287974] docker0: port 5(veth6f536b2) entered disabled state
[ 4524.288281] veth6f536b2 (unregistering): left allmulticast mode
[ 4524.288286] veth6f536b2 (unregistering): left promiscuous mode
[ 4524.288289] docker0: port 5(veth6f536b2) entered disabled state
[ 4524.513664] docker0: port 2(veth7f388c3) entered blocking state
[ 4524.513675] docker0: port 2(veth7f388c3) entered disabled state
[ 4524.513688] veth7f388c3: entered allmulticast mode
[ 4524.513729] veth7f388c3: entered promiscuous mode
[ 4524.522490] eth0: renamed from vethf10905a
[ 4524.522956] docker0: port 2(veth7f388c3) entered blocking state
[ 4524.522962] docker0: port 2(veth7f388c3) entered forwarding state
[ 4535.684644] docker0: port 2(veth7f388c3) entered disabled state
[ 4535.684729] vethf10905a: renamed from eth0
[ 4535.735936] docker0: port 2(veth7f388c3) entered disabled state
[ 4535.736226] veth7f388c3 (unregistering): left allmulticast mode
[ 4535.736273] veth7f388c3 (unregistering): left promiscuous mode
[ 4535.736276] docker0: port 2(veth7f388c3) entered disabled state
[ 4535.887693] docker0: port 2(veth2671828) entered blocking state
[ 4535.887712] docker0: port 2(veth2671828) entered disabled state
[ 4535.887723] veth2671828: entered allmulticast mode
[ 4535.887784] veth2671828: entered promiscuous mode
[ 4535.897318] eth0: renamed from vethf224ca7
[ 4535.897917] docker0: port 2(veth2671828) entered blocking state
[ 4535.897923] docker0: port 2(veth2671828) entered forwarding state
[ 4535.994639] docker0: port 2(veth2671828) entered disabled state
[ 4535.994714] vethf224ca7: renamed from eth0
[ 4536.043841] docker0: port 2(veth2671828) entered disabled state
[ 4536.044119] veth2671828 (unregistering): left allmulticast mode
[ 4536.044123] veth2671828 (unregistering): left promiscuous mode
[ 4536.044126] docker0: port 2(veth2671828) entered disabled state
[ 4538.491399] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=3744 DF PROTO=TCP SPT=55024 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4539.854559] docker0: port 2(veth686c513) entered blocking state
[ 4539.854582] docker0: port 2(veth686c513) entered disabled state
[ 4539.854592] veth686c513: entered allmulticast mode
[ 4539.854692] veth686c513: entered promiscuous mode
[ 4539.864206] eth0: renamed from veth7969041
[ 4539.864923] docker0: port 2(veth686c513) entered blocking state
[ 4539.864928] docker0: port 2(veth686c513) entered forwarding state
[ 4539.975894] docker0: port 2(veth686c513) entered disabled state
[ 4539.975970] veth7969041: renamed from eth0
[ 4540.019648] docker0: port 2(veth686c513) entered disabled state
[ 4540.019880] veth686c513 (unregistering): left allmulticast mode
[ 4540.019884] veth686c513 (unregistering): left promiscuous mode
[ 4540.019886] docker0: port 2(veth686c513) entered disabled state
[ 4540.167250] docker0: port 2(veth63fcef3) entered blocking state
[ 4540.167270] docker0: port 2(veth63fcef3) entered disabled state
[ 4540.167280] veth63fcef3: entered allmulticast mode
[ 4540.167339] veth63fcef3: entered promiscuous mode
[ 4540.176754] eth0: renamed from veth2db2b90
[ 4540.177401] docker0: port 2(veth63fcef3) entered blocking state
[ 4540.177407] docker0: port 2(veth63fcef3) entered forwarding state
[ 4540.231702] docker0: port 3(veth7638f6a) entered blocking state
[ 4540.231718] docker0: port 3(veth7638f6a) entered disabled state
[ 4540.231732] veth7638f6a: entered allmulticast mode
[ 4540.231797] veth7638f6a: entered promiscuous mode
[ 4540.242003] eth0: renamed from vethd376b46
[ 4540.243440] docker0: port 3(veth7638f6a) entered blocking state
[ 4540.243444] docker0: port 3(veth7638f6a) entered forwarding state
[ 4540.285016] docker0: port 2(veth63fcef3) entered disabled state
[ 4540.285105] veth2db2b90: renamed from eth0
[ 4540.337527] docker0: port 2(veth63fcef3) entered disabled state
[ 4540.337748] veth63fcef3 (unregistering): left allmulticast mode
[ 4540.337752] veth63fcef3 (unregistering): left promiscuous mode
[ 4540.337755] docker0: port 2(veth63fcef3) entered disabled state
[ 4540.352912] docker0: port 3(veth7638f6a) entered disabled state
[ 4540.352987] vethd376b46: renamed from eth0
[ 4540.402676] docker0: port 3(veth7638f6a) entered disabled state
[ 4540.402940] veth7638f6a (unregistering): left allmulticast mode
[ 4540.402943] veth7638f6a (unregistering): left promiscuous mode
[ 4540.402945] docker0: port 3(veth7638f6a) entered disabled state
[ 4540.566624] docker0: port 2(veth75cad56) entered blocking state
[ 4540.566629] docker0: port 2(veth75cad56) entered disabled state
[ 4540.566637] veth75cad56: entered allmulticast mode
[ 4540.566671] veth75cad56: entered promiscuous mode
[ 4540.576282] eth0: renamed from veth45b9b61
[ 4540.577111] docker0: port 2(veth75cad56) entered blocking state
[ 4540.577117] docker0: port 2(veth75cad56) entered forwarding state
[ 4540.688058] docker0: port 2(veth75cad56) entered disabled state
[ 4540.688144] veth45b9b61: renamed from eth0
[ 4540.736766] docker0: port 2(veth75cad56) entered disabled state
[ 4540.737101] veth75cad56 (unregistering): left allmulticast mode
[ 4540.737107] veth75cad56 (unregistering): left promiscuous mode
[ 4540.737110] docker0: port 2(veth75cad56) entered disabled state
[ 4541.317256] docker0: port 2(vethb4da98e) entered blocking state
[ 4541.317267] docker0: port 2(vethb4da98e) entered disabled state
[ 4541.317275] vethb4da98e: entered allmulticast mode
[ 4541.317316] vethb4da98e: entered promiscuous mode
[ 4541.326811] eth0: renamed from veth456f39f
[ 4541.327285] docker0: port 2(vethb4da98e) entered blocking state
[ 4541.327290] docker0: port 2(vethb4da98e) entered forwarding state
[ 4541.393306] docker0: port 2(vethb4da98e) entered disabled state
[ 4541.393378] veth456f39f: renamed from eth0
[ 4541.436573] docker0: port 2(vethb4da98e) entered disabled state
[ 4541.436795] vethb4da98e (unregistering): left allmulticast mode
[ 4541.436799] vethb4da98e (unregistering): left promiscuous mode
[ 4541.436801] docker0: port 2(vethb4da98e) entered disabled state
[ 4541.553624] docker0: port 2(veth2119e96) entered blocking state
[ 4541.553629] docker0: port 2(veth2119e96) entered disabled state
[ 4541.553636] veth2119e96: entered allmulticast mode
[ 4541.553675] veth2119e96: entered promiscuous mode
[ 4541.562414] eth0: renamed from vethc3e9402
[ 4541.563907] docker0: port 2(veth2119e96) entered blocking state
[ 4541.563913] docker0: port 2(veth2119e96) entered forwarding state
[ 4542.718818] docker0: port 2(veth2119e96) entered disabled state
[ 4542.718897] vethc3e9402: renamed from eth0
[ 4542.776623] docker0: port 2(veth2119e96) entered disabled state
[ 4542.776928] veth2119e96 (unregistering): left allmulticast mode
[ 4542.776933] veth2119e96 (unregistering): left promiscuous mode
[ 4542.776936] docker0: port 2(veth2119e96) entered disabled state
[ 4543.187804] docker0: port 2(veth8880b8b) entered blocking state
[ 4543.187810] docker0: port 2(veth8880b8b) entered disabled state
[ 4543.187818] veth8880b8b: entered allmulticast mode
[ 4543.187883] veth8880b8b: entered promiscuous mode
[ 4543.197269] eth0: renamed from vethdf688bf
[ 4543.199022] docker0: port 2(veth8880b8b) entered blocking state
[ 4543.199028] docker0: port 2(veth8880b8b) entered forwarding state
[ 4543.199090] docker0: port 3(vethce4c73c) entered blocking state
[ 4543.199094] docker0: port 3(vethce4c73c) entered disabled state
[ 4543.199103] vethce4c73c: entered allmulticast mode
[ 4543.199146] vethce4c73c: entered promiscuous mode
[ 4543.212607] eth0: renamed from veth2775809
[ 4543.213327] docker0: port 3(vethce4c73c) entered blocking state
[ 4543.213333] docker0: port 3(vethce4c73c) entered forwarding state
[ 4545.414557] docker0: port 4(vethee68a58) entered blocking state
[ 4545.414562] docker0: port 4(vethee68a58) entered disabled state
[ 4545.414574] vethee68a58: entered allmulticast mode
[ 4545.414631] vethee68a58: entered promiscuous mode
[ 4545.426519] eth0: renamed from vethfacb6f7
[ 4545.427026] docker0: port 4(vethee68a58) entered blocking state
[ 4545.427032] docker0: port 4(vethee68a58) entered forwarding state
[ 4546.844002] docker0: port 2(veth8880b8b) entered disabled state
[ 4546.844054] vethdf688bf: renamed from eth0
[ 4546.899937] docker0: port 2(veth8880b8b) entered disabled state
[ 4546.900166] veth8880b8b (unregistering): left allmulticast mode
[ 4546.900169] veth8880b8b (unregistering): left promiscuous mode
[ 4546.900172] docker0: port 2(veth8880b8b) entered disabled state
[ 4547.218824] docker0: port 2(veth49ac7bd) entered blocking state
[ 4547.218829] docker0: port 2(veth49ac7bd) entered disabled state
[ 4547.218838] veth49ac7bd: entered allmulticast mode
[ 4547.218908] veth49ac7bd: entered promiscuous mode
[ 4547.228700] eth0: renamed from vethe3d3c50
[ 4547.229200] docker0: port 2(veth49ac7bd) entered blocking state
[ 4547.229206] docker0: port 2(veth49ac7bd) entered forwarding state
[ 4547.593172] docker0: port 5(veth30a799b) entered blocking state
[ 4547.593188] docker0: port 5(veth30a799b) entered disabled state
[ 4547.593198] veth30a799b: entered allmulticast mode
[ 4547.593269] veth30a799b: entered promiscuous mode
[ 4547.602850] eth0: renamed from veth97260bc
[ 4547.603393] docker0: port 5(veth30a799b) entered blocking state
[ 4547.603397] docker0: port 5(veth30a799b) entered forwarding state
[ 4547.849226] docker0: port 6(vethb3b3e1d) entered blocking state
[ 4547.849244] docker0: port 6(vethb3b3e1d) entered disabled state
[ 4547.849255] vethb3b3e1d: entered allmulticast mode
[ 4547.849317] vethb3b3e1d: entered promiscuous mode
[ 4547.858638] eth0: renamed from veth63ad3ad
[ 4547.859880] docker0: port 7(veth1ac3924) entered blocking state
[ 4547.859889] docker0: port 7(veth1ac3924) entered disabled state
[ 4547.859895] veth1ac3924: entered allmulticast mode
[ 4547.859931] veth1ac3924: entered promiscuous mode
[ 4547.860363] docker0: port 6(vethb3b3e1d) entered blocking state
[ 4547.860368] docker0: port 6(vethb3b3e1d) entered forwarding state
[ 4547.874586] eth0: renamed from veth14fd9b2
[ 4547.883254] docker0: port 8(veth8e7404b) entered blocking state
[ 4547.883271] docker0: port 8(veth8e7404b) entered disabled state
[ 4547.883280] veth8e7404b: entered allmulticast mode
[ 4547.883364] veth8e7404b: entered promiscuous mode
[ 4547.884859] docker0: port 7(veth1ac3924) entered blocking state
[ 4547.884864] docker0: port 7(veth1ac3924) entered forwarding state
[ 4547.899806] eth0: renamed from vethfd860b7
[ 4547.901561] docker0: port 8(veth8e7404b) entered blocking state
[ 4547.901572] docker0: port 8(veth8e7404b) entered forwarding state
[ 4547.978541] docker0: port 6(vethb3b3e1d) entered disabled state
[ 4547.978626] veth63ad3ad: renamed from eth0
[ 4548.017967] docker0: port 7(veth1ac3924) entered disabled state
[ 4548.018027] veth14fd9b2: renamed from eth0
[ 4548.050502] docker0: port 8(veth8e7404b) entered disabled state
[ 4548.050732] docker0: port 6(vethb3b3e1d) entered disabled state
[ 4548.051009] vethb3b3e1d (unregistering): left allmulticast mode
[ 4548.051014] vethb3b3e1d (unregistering): left promiscuous mode
[ 4548.051016] docker0: port 6(vethb3b3e1d) entered disabled state
[ 4548.051304] vethfd860b7: renamed from eth0
[ 4548.086721] docker0: port 7(veth1ac3924) entered disabled state
[ 4548.087028] veth1ac3924 (unregistering): left allmulticast mode
[ 4548.087033] veth1ac3924 (unregistering): left promiscuous mode
[ 4548.087036] docker0: port 7(veth1ac3924) entered disabled state
[ 4548.116453] docker0: port 8(veth8e7404b) entered disabled state
[ 4548.116760] veth8e7404b (unregistering): left allmulticast mode
[ 4548.116765] veth8e7404b (unregistering): left promiscuous mode
[ 4548.116768] docker0: port 8(veth8e7404b) entered disabled state
[ 4548.947069] docker0: port 6(veth6c4eb8f) entered blocking state
[ 4548.947084] docker0: port 6(veth6c4eb8f) entered disabled state
[ 4548.947093] veth6c4eb8f: entered allmulticast mode
[ 4548.947153] veth6c4eb8f: entered promiscuous mode
[ 4548.956079] eth0: renamed from veth88f6e8f
[ 4548.956660] docker0: port 6(veth6c4eb8f) entered blocking state
[ 4548.956664] docker0: port 6(veth6c4eb8f) entered forwarding state
[ 4549.027786] docker0: port 6(veth6c4eb8f) entered disabled state
[ 4549.027862] veth88f6e8f: renamed from eth0
[ 4549.065043] docker0: port 6(veth6c4eb8f) entered disabled state
[ 4549.065355] veth6c4eb8f (unregistering): left allmulticast mode
[ 4549.065360] veth6c4eb8f (unregistering): left promiscuous mode
[ 4549.065365] docker0: port 6(veth6c4eb8f) entered disabled state
[ 4549.191166] docker0: port 6(veth5333972) entered blocking state
[ 4549.191179] docker0: port 6(veth5333972) entered disabled state
[ 4549.191186] veth5333972: entered allmulticast mode
[ 4549.191228] veth5333972: entered promiscuous mode
[ 4549.200466] eth0: renamed from vetha9b3f34
[ 4549.201955] docker0: port 6(veth5333972) entered blocking state
[ 4549.201961] docker0: port 6(veth5333972) entered forwarding state
[ 4550.410473] docker0: port 6(veth5333972) entered disabled state
[ 4550.410548] vetha9b3f34: renamed from eth0
[ 4550.449580] docker0: port 6(veth5333972) entered disabled state
[ 4550.449908] veth5333972 (unregistering): left allmulticast mode
[ 4550.449914] veth5333972 (unregistering): left promiscuous mode
[ 4550.449917] docker0: port 6(veth5333972) entered disabled state
[ 4550.826471] docker0: port 6(veth159e97f) entered blocking state
[ 4550.826476] docker0: port 6(veth159e97f) entered disabled state
[ 4550.826486] veth159e97f: entered allmulticast mode
[ 4550.826542] veth159e97f: entered promiscuous mode
[ 4550.835519] eth0: renamed from vethc41b2ed
[ 4550.836971] docker0: port 6(veth159e97f) entered blocking state
[ 4550.836975] docker0: port 6(veth159e97f) entered forwarding state
[ 4554.384350] docker0: port 6(veth159e97f) entered disabled state
[ 4554.384400] vethc41b2ed: renamed from eth0
[ 4554.425383] docker0: port 6(veth159e97f) entered disabled state
[ 4554.425702] veth159e97f (unregistering): left allmulticast mode
[ 4554.425708] veth159e97f (unregistering): left promiscuous mode
[ 4554.425710] docker0: port 6(veth159e97f) entered disabled state
[ 4554.727919] docker0: port 6(veth94db8fb) entered blocking state
[ 4554.727925] docker0: port 6(veth94db8fb) entered disabled state
[ 4554.727934] veth94db8fb: entered allmulticast mode
[ 4554.728017] veth94db8fb: entered promiscuous mode
[ 4554.737372] eth0: renamed from vetheb7657a
[ 4554.738162] docker0: port 6(veth94db8fb) entered blocking state
[ 4554.738168] docker0: port 6(veth94db8fb) entered forwarding state
[ 4558.600950] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=18986 DF PROTO=TCP SPT=60842 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4578.973859] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=9452 DF PROTO=UDP SPT=1900 DPT=60585 LEN=281
[ 4606.536137] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=16309 DF PROTO=TCP SPT=45094 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4618.760056] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=18859 DF PROTO=TCP SPT=58118 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4627.186021] docker0: port 6(veth94db8fb) entered disabled state
[ 4627.186098] vetheb7657a: renamed from eth0
[ 4627.242414] docker0: port 6(veth94db8fb) entered disabled state
[ 4627.242722] veth94db8fb (unregistering): left allmulticast mode
[ 4627.242728] veth94db8fb (unregistering): left promiscuous mode
[ 4627.242731] docker0: port 6(veth94db8fb) entered disabled state
[ 4627.544533] docker0: port 6(vethc7655ec) entered blocking state
[ 4627.544540] docker0: port 6(vethc7655ec) entered disabled state
[ 4627.544565] vethc7655ec: entered allmulticast mode
[ 4627.544650] vethc7655ec: entered promiscuous mode
[ 4627.554369] eth0: renamed from veth9d628c1
[ 4627.555026] docker0: port 6(vethc7655ec) entered blocking state
[ 4627.555032] docker0: port 6(vethc7655ec) entered forwarding state
[ 4628.654904] docker0: port 6(vethc7655ec) entered disabled state
[ 4628.654962] veth9d628c1: renamed from eth0
[ 4628.701493] docker0: port 6(vethc7655ec) entered disabled state
[ 4628.701790] vethc7655ec (unregistering): left allmulticast mode
[ 4628.701795] vethc7655ec (unregistering): left promiscuous mode
[ 4628.701797] docker0: port 6(vethc7655ec) entered disabled state
[ 4628.852526] docker0: port 6(veth6206c05) entered blocking state
[ 4628.852542] docker0: port 6(veth6206c05) entered disabled state
[ 4628.852553] veth6206c05: entered allmulticast mode
[ 4628.852617] veth6206c05: entered promiscuous mode
[ 4628.862055] eth0: renamed from veth90329a3
[ 4628.862791] docker0: port 6(veth6206c05) entered blocking state
[ 4628.862797] docker0: port 6(veth6206c05) entered forwarding state
[ 4628.952847] docker0: port 6(veth6206c05) entered disabled state
[ 4628.952928] veth90329a3: renamed from eth0
[ 4629.000439] docker0: port 6(veth6206c05) entered disabled state
[ 4629.000757] veth6206c05 (unregistering): left allmulticast mode
[ 4629.000762] veth6206c05 (unregistering): left promiscuous mode
[ 4629.000765] docker0: port 6(veth6206c05) entered disabled state
[ 4629.100150] docker0: port 4(vethee68a58) entered disabled state
[ 4629.100225] vethfacb6f7: renamed from eth0
[ 4629.127253] docker0: port 3(vethce4c73c) entered disabled state
[ 4629.127307] docker0: port 5(veth30a799b) entered disabled state
[ 4629.127334] veth2775809: renamed from eth0
[ 4629.127478] veth97260bc: renamed from eth0
[ 4629.186476] docker0: port 4(vethee68a58) entered disabled state
[ 4629.186756] vethee68a58 (unregistering): left allmulticast mode
[ 4629.186761] vethee68a58 (unregistering): left promiscuous mode
[ 4629.186764] docker0: port 4(vethee68a58) entered disabled state
[ 4629.208402] docker0: port 3(vethce4c73c) entered disabled state
[ 4629.212958] vethce4c73c (unregistering): left allmulticast mode
[ 4629.212962] vethce4c73c (unregistering): left promiscuous mode
[ 4629.212964] docker0: port 3(vethce4c73c) entered disabled state
[ 4629.227374] docker0: port 5(veth30a799b) entered disabled state
[ 4629.227644] veth30a799b (unregistering): left allmulticast mode
[ 4629.227649] veth30a799b (unregistering): left promiscuous mode
[ 4629.227651] docker0: port 5(veth30a799b) entered disabled state
[ 4643.490324] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=40458 DF PROTO=TCP SPT=45154 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4658.489749] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=2289 DF PROTO=TCP SPT=41212 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4668.987425] docker0: port 2(veth49ac7bd) entered disabled state
[ 4668.987495] vethe3d3c50: renamed from eth0
[ 4669.047707] docker0: port 2(veth49ac7bd) entered disabled state
[ 4669.048050] veth49ac7bd (unregistering): left allmulticast mode
[ 4669.048055] veth49ac7bd (unregistering): left promiscuous mode
[ 4669.048058] docker0: port 2(veth49ac7bd) entered disabled state
[ 4669.284057] docker0: port 2(veth67f5c36) entered blocking state
[ 4669.284072] docker0: port 2(veth67f5c36) entered disabled state
[ 4669.284083] veth67f5c36: entered allmulticast mode
[ 4669.284138] veth67f5c36: entered promiscuous mode
[ 4669.294723] eth0: renamed from veth82876a5
[ 4669.295399] docker0: port 2(veth67f5c36) entered blocking state
[ 4669.295404] docker0: port 2(veth67f5c36) entered forwarding state
[ 4678.599158] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=57664 DF PROTO=TCP SPT=33236 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4682.096489] docker0: port 2(veth67f5c36) entered disabled state
[ 4682.096571] veth82876a5: renamed from eth0
[ 4682.144566] docker0: port 2(veth67f5c36) entered disabled state
[ 4682.145645] veth67f5c36 (unregistering): left allmulticast mode
[ 4682.145648] veth67f5c36 (unregistering): left promiscuous mode
[ 4682.145651] docker0: port 2(veth67f5c36) entered disabled state
[ 4682.296548] docker0: port 2(veth95c67c2) entered blocking state
[ 4682.296560] docker0: port 2(veth95c67c2) entered disabled state
[ 4682.296567] veth95c67c2: entered allmulticast mode
[ 4682.296608] veth95c67c2: entered promiscuous mode
[ 4682.305711] eth0: renamed from veth7e09f17
[ 4682.306199] docker0: port 2(veth95c67c2) entered blocking state
[ 4682.306205] docker0: port 2(veth95c67c2) entered forwarding state
[ 4683.604603] docker0: port 2(veth95c67c2) entered disabled state
[ 4683.604670] veth7e09f17: renamed from eth0
[ 4683.652086] docker0: port 2(veth95c67c2) entered disabled state
[ 4683.652414] veth95c67c2 (unregistering): left allmulticast mode
[ 4683.652419] veth95c67c2 (unregistering): left promiscuous mode
[ 4683.652423] docker0: port 2(veth95c67c2) entered disabled state
[ 4683.804380] docker0: port 2(vethbfe10e3) entered blocking state
[ 4683.804398] docker0: port 2(vethbfe10e3) entered disabled state
[ 4683.804410] vethbfe10e3: entered allmulticast mode
[ 4683.804491] vethbfe10e3: entered promiscuous mode
[ 4683.813998] eth0: renamed from vethe573ea1
[ 4683.814707] docker0: port 2(vethbfe10e3) entered blocking state
[ 4683.814713] docker0: port 2(vethbfe10e3) entered forwarding state
[ 4683.910572] docker0: port 2(vethbfe10e3) entered disabled state
[ 4683.910649] vethe573ea1: renamed from eth0
[ 4683.960525] docker0: port 2(vethbfe10e3) entered disabled state
[ 4683.960812] vethbfe10e3 (unregistering): left allmulticast mode
[ 4683.960817] vethbfe10e3 (unregistering): left promiscuous mode
[ 4683.960820] docker0: port 2(vethbfe10e3) entered disabled state
[ 4703.489481] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=54563 DF PROTO=TCP SPT=44394 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4713.195859] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2001:4b98:0e00:0000:0000:0000:0000:0009 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=111 TC=0 HOPLIMIT=50 FLOWLBL=273517 PROTO=TCP SPT=993 DPT=52628 WINDOW=75 RES=0x00 ACK PSH URGP=0
[ 4716.823569] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2001:4b98:0e00:0000:0000:0000:0000:0009 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=111 TC=0 HOPLIMIT=50 FLOWLBL=273517 PROTO=TCP SPT=993 DPT=52628 WINDOW=75 RES=0x00 ACK PSH URGP=0
[ 4718.488756] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=33110 DF PROTO=TCP SPT=52230 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4732.179204] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2001:4b98:0e00:0000:0000:0000:0000:0009 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=111 TC=0 HOPLIMIT=50 FLOWLBL=364810 PROTO=TCP SPT=993 DPT=52628 WINDOW=75 RES=0x00 ACK PSH URGP=0
[ 4738.631235] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=19441 DF PROTO=TCP SPT=44756 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4759.696218] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=894 DF PROTO=UDP SPT=1900 DPT=50156 LEN=281
[ 4763.922790] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2001:4b98:0e00:0000:0000:0000:0000:0009 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=111 TC=0 HOPLIMIT=50 FLOWLBL=88352 PROTO=TCP SPT=993 DPT=52628 WINDOW=75 RES=0x00 ACK PSH URGP=0
[ 4778.486973] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=22270 DF PROTO=TCP SPT=57468 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4798.597320] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=50411 DF PROTO=TCP SPT=53810 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4823.487526] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=10755 DF PROTO=TCP SPT=50950 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4825.406461] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2001:4b98:0e00:0000:0000:0000:0000:0009 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=111 TC=0 HOPLIMIT=51 FLOWLBL=509915 PROTO=TCP SPT=993 DPT=52628 WINDOW=75 RES=0x00 ACK PSH URGP=0
[ 4838.486979] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=19712 DF PROTO=TCP SPT=33464 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4858.629411] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=57513 DF PROTO=TCP SPT=60612 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4883.486308] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=44473 DF PROTO=TCP SPT=60462 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4898.485697] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=31858 DF PROTO=TCP SPT=55428 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4918.596500] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=52197 DF PROTO=TCP SPT=34652 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4943.485317] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=54836 DF PROTO=TCP SPT=49450 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4946.192508] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2001:4b98:0e00:0000:0000:0000:0000:0009 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=111 TC=0 HOPLIMIT=50 FLOWLBL=281022 PROTO=TCP SPT=993 DPT=52628 WINDOW=75 RES=0x00 ACK PSH URGP=0
[ 4958.485186] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=3720 DF PROTO=TCP SPT=34548 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 4978.626608] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=18421 DF PROTO=TCP SPT=44964 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5003.484404] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=54353 DF PROTO=TCP SPT=34912 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5018.483752] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=62368 DF PROTO=TCP SPT=52032 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5038.593709] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=28169 DF PROTO=TCP SPT=50774 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5063.483525] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=57952 DF PROTO=TCP SPT=55002 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5067.092323] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2001:4b98:0e00:0000:0000:0000:0000:0009 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=111 TC=0 HOPLIMIT=51 FLOWLBL=816762 PROTO=TCP SPT=993 DPT=52628 WINDOW=75 RES=0x00 ACK PSH URGP=0
[ 5078.483366] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=13959 DF PROTO=TCP SPT=33110 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5098.624802] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=3971 DF PROTO=TCP SPT=50774 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5122.182559] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:08:00 SRC=85.217.140.10 DST=192.168.0.66 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=17465 PROTO=TCP SPT=34768 DPT=48936 WINDOW=65535 RES=0x00 SYN URGP=0
[ 5138.482473] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=12234 DF PROTO=TCP SPT=44590 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5158.591931] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=56358 DF PROTO=TCP SPT=52986 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5181.859253] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=54793 DF PROTO=UDP SPT=1900 DPT=47044 LEN=281
[ 5187.852979] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2001:4b98:0e00:0000:0000:0000:0000:0009 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=111 TC=0 HOPLIMIT=50 FLOWLBL=231232 PROTO=TCP SPT=993 DPT=52628 WINDOW=75 RES=0x00 ACK PSH URGP=0
[ 5198.481434] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=29168 DF PROTO=TCP SPT=43798 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5218.622978] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=32163 DF PROTO=TCP SPT=57358 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5243.480837] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=14732 DF PROTO=TCP SPT=48846 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5258.480725] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=19603 DF PROTO=TCP SPT=54558 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5278.590134] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=28299 DF PROTO=TCP SPT=55546 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5299.949041] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:10:7c:61:a4:64:d8:08:00 SRC=192.168.0.97 DST=192.168.0.66 LEN=301 TOS=0x00 PREC=0x00 TTL=64 ID=41479 DF PROTO=UDP SPT=1900 DPT=45743 LEN=281
[ 5308.683595] [UFW BLOCK] IN=wlan0 OUT= MAC=90:09:df:06:d3:a8:64:67:72:83:30:4c:86:dd SRC=2001:4b98:0e00:0000:0000:0000:0000:0009 DST=2a02:8071:a681:12a0:6d89:f45d:b22c:b5f4 LEN=111 TC=0 HOPLIMIT=51 FLOWLBL=50508 PROTO=TCP SPT=993 DPT=52628 WINDOW=75 RES=0x00 ACK PSH URGP=0
[ 5318.479775] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=43570 DF PROTO=TCP SPT=49126 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5338.621177] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=24674 DF PROTO=TCP SPT=33570 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5363.479780] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=28383 DF PROTO=TCP SPT=56004 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
[ 5378.478854] [UFW BLOCK] IN=br-f22c21d6e84a OUT= PHYSIN=veth117e833 MAC=86:7b:7a:c9:25:57:86:b9:1f:87:89:95:08:00 SRC=172.20.0.3 DST=172.17.0.1 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=44964 DF PROTO=TCP SPT=51088 DPT=8000 WINDOW=64240 RES=0x00 SYN URGP=0
^ permalink raw reply
* Re: [PATCH v3 2/2] dt-bindings: net: wireless: mt76: clarify backoff limit format
From: Ryder Lee @ 2026-02-11 9:19 UTC (permalink / raw)
To: krzk@kernel.org
Cc: robh@kernel.org, nbd@nbd.name, linux-mediatek@lists.infradead.org,
devicetree@vger.kernel.org, Allen Ye (葉芷勳),
linux-wireless@vger.kernel.org
In-Reply-To: <388e874d-d9ff-43f2-b010-ca7ac29aa065@kernel.org>
On Wed, 2026-02-11 at 10:08 +0100, Krzysztof Kozlowski wrote:
> On 11/02/2026 09:59, Ryder Lee wrote:
> > On Wed, 2026-02-11 at 09:41 +0100, Krzysztof Kozlowski wrote:
> > > On 11/02/2026 09:33, Ryder Lee wrote:
> > > > > > > Why this cannot be a schema?
> > > > > > >
> > > > > > >
> > > > > > Well, actually, it's already a schema. This is just an
> > > > > > expanded
> > > > >
> > > > > Where exactly?
> > > > >
> > > >
> > > > How 1T1ss is used across different generations is what my
> > > > example
> > > > above
> > > > was talking about.
> > >
> > > Where exactly it is already a schema? Please point me line
> > > encoding
> > > this.
> > >
> > >
> > line 243 paths-ru
> > line 261 paths-ru-bf
>
> I do not see there anything like you wrote here. You just list all of
> them, no device constraints.
>
> Best regards,
> Krzysztof
>
The original schema is a broad description. Now a reviewer want me to
describe the differences for various connected devices, but I don’t
know how to add a compatible string for PCIe, USB, or even SDIO devices
for their constraints. So I used the driver’s generation name... can I
just write “mt7996”? Or do I need a complete and meaningful compatible
string?
Or maybe there’s no need to change the documentation at all and just
let the driver handle it, so we don’t have to discuss these details.
Ryder
^ permalink raw reply
* Re: [PATCH v3 2/2] dt-bindings: net: wireless: mt76: clarify backoff limit format
From: Krzysztof Kozlowski @ 2026-02-11 9:08 UTC (permalink / raw)
To: Ryder Lee
Cc: robh@kernel.org, nbd@nbd.name, linux-mediatek@lists.infradead.org,
devicetree@vger.kernel.org, Allen Ye (葉芷勳),
linux-wireless@vger.kernel.org
In-Reply-To: <0572bd6e56ca872e285729ccd4c2201517b66e18.camel@mediatek.com>
On 11/02/2026 09:59, Ryder Lee wrote:
> On Wed, 2026-02-11 at 09:41 +0100, Krzysztof Kozlowski wrote:
>> On 11/02/2026 09:33, Ryder Lee wrote:
>>>>>> Why this cannot be a schema?
>>>>>>
>>>>>>
>>>>> Well, actually, it's already a schema. This is just an expanded
>>>>
>>>> Where exactly?
>>>>
>>>
>>> How 1T1ss is used across different generations is what my example
>>> above
>>> was talking about.
>>
>> Where exactly it is already a schema? Please point me line encoding
>> this.
>>
>>
> line 243 paths-ru
> line 261 paths-ru-bf
I do not see there anything like you wrote here. You just list all of
them, no device constraints.
Best regards,
Krzysztof
^ permalink raw reply
* Re: [PATCH v3 2/2] dt-bindings: net: wireless: mt76: clarify backoff limit format
From: Ryder Lee @ 2026-02-11 9:07 UTC (permalink / raw)
To: wenst@chromium.org
Cc: robh@kernel.org, nbd@nbd.name, linux-mediatek@lists.infradead.org,
devicetree@vger.kernel.org, Allen Ye (葉芷勳),
krzk@kernel.org, linux-wireless@vger.kernel.org
In-Reply-To: <CAGXv+5EY=8Xta4OdnS9Skjx3Ls3ZnW7oNS38cK1Ch=wL6JJJ0g@mail.gmail.com>
On Wed, 2026-02-11 at 17:01 +0800, Chen-Yu Tsai wrote:
> On Wed, Feb 11, 2026 at 4:41 PM Krzysztof Kozlowski <krzk@kernel.org>
> wrote:
> >
> > On 11/02/2026 09:33, Ryder Lee wrote:
> > > > > > Why this cannot be a schema?
> > > > > >
> > > > > >
> > > > > Well, actually, it's already a schema. This is just an
> > > > > expanded
> > > >
> > > > Where exactly?
> > > >
> > >
> > > How 1T1ss is used across different generations is what my example
> > > above
> > > was talking about.
> >
> > Where exactly it is already a schema? Please point me line encoding
> > this.
>
> I think what Krzysztof is asking is why can't you have different
> compatible
> strings for each generation (connac, connac2, connac3), and then have
> conditionals in this document to describe in proper DT schema, not
> text,
> the length requirements of each property for each generation.
>
>
> ChenYu
>
Oh, so this is exactly my original question: how do I describe a PCIe
device in the platform binding when there is no compatible string for
it (a NIC card)?
Ryder
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox