* [igt-dev] [PATCH i-g-t] lib: Update selftests to use dynamic subtests
From: Chris Wilson @ 2020-02-14 21:48 UTC (permalink / raw)
To: igt-dev; +Cc: Tomi Sarvela, Petri Latvala
Use the new igt_subtest_with_dynamic to nicely group the dynamic
subtests together.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Petri Latvala <petri.latvala@intel.com>
Cc: Tomi Sarvela <tomi.p.sarvela@intel.com>
---
lib/igt_kmod.c | 23 +++++++++++++++++++----
1 file changed, 19 insertions(+), 4 deletions(-)
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c
index 05019c24c..e701545d3 100644
--- a/lib/igt_kmod.c
+++ b/lib/igt_kmod.c
@@ -21,6 +21,7 @@
* IN THE SOFTWARE.
*/
+#include <ctype.h>
#include <signal.h>
#include <errno.h>
@@ -602,6 +603,18 @@ void igt_kselftest_fini(struct igt_kselftest *tst)
kmod_module_unref(tst->kmod);
}
+static const char *unfilter(const char *filter, const char *name)
+{
+ if (!filter)
+ return name;
+
+ name += strlen(filter);
+ if (!isalpha(*name))
+ name++;
+
+ return name;
+}
+
void igt_kselftests(const char *module_name,
const char *options,
const char *result,
@@ -618,10 +631,12 @@ void igt_kselftests(const char *module_name,
igt_require(igt_kselftest_begin(&tst) == 0);
igt_kselftest_get_tests(tst.kmod, filter, &tests);
- igt_list_for_each_entry_safe(tl, tn, &tests, link) {
- igt_subtest_f("%s", tl->name)
- igt_kselftest_execute(&tst, tl, options, result);
- free(tl);
+ igt_subtest_with_dynamic(filter ?: "all") {
+ igt_list_for_each_entry_safe(tl, tn, &tests, link) {
+ igt_dynamic_f("%s", unfilter(filter, tl->name))
+ igt_kselftest_execute(&tst, tl, options, result);
+ free(tl);
+ }
}
igt_fixture {
--
2.25.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related
* [PATCH v2] net: phy: restore mdio regs in the iproc mdio driver
From: Scott Branden @ 2020-02-14 21:47 UTC (permalink / raw)
To: Andrew Lunn, Florian Fainelli, Heiner Kallweit
Cc: Scott Branden, Ray Jui, Arun Parameswaran, Russell King,
linux-kernel, bcm-kernel-feedback-list, netdev, David S . Miller,
linux-arm-kernel
From: Arun Parameswaran <arun.parameswaran@broadcom.com>
The mii management register in iproc mdio block
does not have a retention register so it is lost on suspend.
Save and restore value of register while resuming from suspend.
Fixes: bb1a619735b4 ("net: phy: Initialize mdio clock at probe function")
Signed-off-by: Arun Parameswaran <arun.parameswaran@broadcom.com>
Signed-off-by: Scott Branden <scott.branden@broadcom.com>
---
drivers/net/phy/mdio-bcm-iproc.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/drivers/net/phy/mdio-bcm-iproc.c b/drivers/net/phy/mdio-bcm-iproc.c
index 7e9975d25066..f1ded03f0229 100644
--- a/drivers/net/phy/mdio-bcm-iproc.c
+++ b/drivers/net/phy/mdio-bcm-iproc.c
@@ -178,6 +178,23 @@ static int iproc_mdio_remove(struct platform_device *pdev)
return 0;
}
+#ifdef CONFIG_PM_SLEEP
+int iproc_mdio_resume(struct device *dev)
+{
+ struct platform_device *pdev = to_platform_device(dev);
+ struct iproc_mdio_priv *priv = platform_get_drvdata(pdev);
+
+ /* restore the mii clock configuration */
+ iproc_mdio_config_clk(priv->base);
+
+ return 0;
+}
+
+static const struct dev_pm_ops iproc_mdio_pm_ops = {
+ .resume = iproc_mdio_resume
+};
+#endif /* CONFIG_PM_SLEEP */
+
static const struct of_device_id iproc_mdio_of_match[] = {
{ .compatible = "brcm,iproc-mdio", },
{ /* sentinel */ },
@@ -188,6 +205,9 @@ static struct platform_driver iproc_mdio_driver = {
.driver = {
.name = "iproc-mdio",
.of_match_table = iproc_mdio_of_match,
+#ifdef CONFIG_PM_SLEEP
+ .pm = &iproc_mdio_pm_ops,
+#endif
},
.probe = iproc_mdio_probe,
.remove = iproc_mdio_remove,
--
2.17.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related
* [PATCH v2] net: phy: restore mdio regs in the iproc mdio driver
From: Scott Branden @ 2020-02-14 21:47 UTC (permalink / raw)
To: Andrew Lunn, Florian Fainelli, Heiner Kallweit
Cc: Russell King, David S . Miller, Ray Jui, bcm-kernel-feedback-list,
netdev, linux-arm-kernel, linux-kernel, Arun Parameswaran,
Scott Branden
From: Arun Parameswaran <arun.parameswaran@broadcom.com>
The mii management register in iproc mdio block
does not have a retention register so it is lost on suspend.
Save and restore value of register while resuming from suspend.
Fixes: bb1a619735b4 ("net: phy: Initialize mdio clock at probe function")
Signed-off-by: Arun Parameswaran <arun.parameswaran@broadcom.com>
Signed-off-by: Scott Branden <scott.branden@broadcom.com>
---
drivers/net/phy/mdio-bcm-iproc.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/drivers/net/phy/mdio-bcm-iproc.c b/drivers/net/phy/mdio-bcm-iproc.c
index 7e9975d25066..f1ded03f0229 100644
--- a/drivers/net/phy/mdio-bcm-iproc.c
+++ b/drivers/net/phy/mdio-bcm-iproc.c
@@ -178,6 +178,23 @@ static int iproc_mdio_remove(struct platform_device *pdev)
return 0;
}
+#ifdef CONFIG_PM_SLEEP
+int iproc_mdio_resume(struct device *dev)
+{
+ struct platform_device *pdev = to_platform_device(dev);
+ struct iproc_mdio_priv *priv = platform_get_drvdata(pdev);
+
+ /* restore the mii clock configuration */
+ iproc_mdio_config_clk(priv->base);
+
+ return 0;
+}
+
+static const struct dev_pm_ops iproc_mdio_pm_ops = {
+ .resume = iproc_mdio_resume
+};
+#endif /* CONFIG_PM_SLEEP */
+
static const struct of_device_id iproc_mdio_of_match[] = {
{ .compatible = "brcm,iproc-mdio", },
{ /* sentinel */ },
@@ -188,6 +205,9 @@ static struct platform_driver iproc_mdio_driver = {
.driver = {
.name = "iproc-mdio",
.of_match_table = iproc_mdio_of_match,
+#ifdef CONFIG_PM_SLEEP
+ .pm = &iproc_mdio_pm_ops,
+#endif
},
.probe = iproc_mdio_probe,
.remove = iproc_mdio_remove,
--
2.17.1
^ permalink raw reply related
* Re: [PATCH v7 1/8] unicode: Add utf8_casefold_iter
From: Daniel Rosenberg @ 2020-02-14 21:47 UTC (permalink / raw)
To: Eric Biggers, Gabriel Krisman Bertazi
Cc: Theodore Ts'o, Jonathan Corbet, Richard Weinberger,
Andreas Dilger, Chao Yu, linux-doc, linux-kernel,
linux-f2fs-devel, linux-fscrypt, linux-mtd, Alexander Viro,
linux-fsdevel, Jaegeuk Kim, linux-ext4, kernel-team
In-Reply-To: <20200212033800.GC870@sol.localdomain>
On Tue, Feb 11, 2020 at 7:38 PM Eric Biggers <ebiggers@kernel.org> wrote:
>
> Indirect function calls are expensive these days for various reasons, including
> Spectre mitigations and CFI. Are you sure it's okay from a performance
> perspective to make an indirect call for every byte of the pathname?
>
> > +typedef int (*utf8_itr_actor_t)(struct utf8_itr_context *, int byte, int pos);
>
> The byte argument probably should be 'u8', to avoid confusion about whether it's
> a byte or a Unicode codepoint.
>
> - Eric
Gabriel, what do you think here? I could change it to either exposing
the things necessary to do the hashing in libfs, or instead of the
general purpose iterator, just have a hash function inside of unicode
that will compute the hash given a seed value.
-Daniel
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply
* Re: [f2fs-dev] [PATCH v7 1/8] unicode: Add utf8_casefold_iter
From: Daniel Rosenberg via Linux-f2fs-devel @ 2020-02-14 21:47 UTC (permalink / raw)
To: Eric Biggers, Gabriel Krisman Bertazi
Cc: Theodore Ts'o, Jonathan Corbet, Richard Weinberger,
Andreas Dilger, linux-doc, linux-kernel, linux-f2fs-devel,
linux-fscrypt, linux-mtd, Alexander Viro, linux-fsdevel,
Jaegeuk Kim, linux-ext4, kernel-team
In-Reply-To: <20200212033800.GC870@sol.localdomain>
On Tue, Feb 11, 2020 at 7:38 PM Eric Biggers <ebiggers@kernel.org> wrote:
>
> Indirect function calls are expensive these days for various reasons, including
> Spectre mitigations and CFI. Are you sure it's okay from a performance
> perspective to make an indirect call for every byte of the pathname?
>
> > +typedef int (*utf8_itr_actor_t)(struct utf8_itr_context *, int byte, int pos);
>
> The byte argument probably should be 'u8', to avoid confusion about whether it's
> a byte or a Unicode codepoint.
>
> - Eric
Gabriel, what do you think here? I could change it to either exposing
the things necessary to do the hashing in libfs, or instead of the
general purpose iterator, just have a hash function inside of unicode
that will compute the hash given a seed value.
-Daniel
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply
* Re: [PATCH v7 1/8] unicode: Add utf8_casefold_iter
From: Daniel Rosenberg @ 2020-02-14 21:47 UTC (permalink / raw)
To: Eric Biggers, Gabriel Krisman Bertazi
Cc: Theodore Ts'o, linux-ext4, Jaegeuk Kim, Chao Yu,
linux-f2fs-devel, linux-fscrypt, Alexander Viro,
Richard Weinberger, linux-mtd, Andreas Dilger, Jonathan Corbet,
linux-doc, linux-kernel, linux-fsdevel, kernel-team
In-Reply-To: <20200212033800.GC870@sol.localdomain>
On Tue, Feb 11, 2020 at 7:38 PM Eric Biggers <ebiggers@kernel.org> wrote:
>
> Indirect function calls are expensive these days for various reasons, including
> Spectre mitigations and CFI. Are you sure it's okay from a performance
> perspective to make an indirect call for every byte of the pathname?
>
> > +typedef int (*utf8_itr_actor_t)(struct utf8_itr_context *, int byte, int pos);
>
> The byte argument probably should be 'u8', to avoid confusion about whether it's
> a byte or a Unicode codepoint.
>
> - Eric
Gabriel, what do you think here? I could change it to either exposing
the things necessary to do the hashing in libfs, or instead of the
general purpose iterator, just have a hash function inside of unicode
that will compute the hash given a seed value.
-Daniel
^ permalink raw reply
* Re: [PATCH] memcg: net: do not associate sock with unrelated memcg
From: Roman Gushchin @ 2020-02-14 21:47 UTC (permalink / raw)
To: Shakeel Butt
Cc: Johannes Weiner, Eric Dumazet, Greg Thelen, Michal Hocko,
Vladimir Davydov, Andrew Morton, cgroups, linux-mm, linux-kernel
In-Reply-To: <20200214071233.100682-1-shakeelb@google.com>
Hello, Shakeel!
On Thu, Feb 13, 2020 at 11:12:33PM -0800, Shakeel Butt wrote:
> We are testing network memory accounting in our setup and noticed
> inconsistent network memory usage and often unrelated memcgs network
> usage correlates with testing workload. On further inspection, it seems
> like mem_cgroup_sk_alloc() is broken in irq context specially for
> cgroup v1.
A great catch!
>
> mem_cgroup_sk_alloc() can be called in irq context and kind
> of assumes that it can only happen from sk_clone_lock() and the source
> sock object has already associated memcg. However in cgroup v1, where
> network memory accounting is opt-in, the source sock can be not
> associated with any memcg and the new cloned sock can get associated
> with unrelated interrupted memcg.
>
> Cgroup v2 can also suffer if the source sock object was created by
> process in the root memcg or if sk_alloc() is called in irq context.
Do you mind sharing a call trace?
Also, shouldn't cgroup_sk_alloc() be changed in a similar way?
Thanks!
Roman
^ permalink raw reply
* Re: [PATCH] memcg: net: do not associate sock with unrelated memcg
From: Roman Gushchin @ 2020-02-14 21:47 UTC (permalink / raw)
To: Shakeel Butt
Cc: Johannes Weiner, Eric Dumazet, Greg Thelen, Michal Hocko,
Vladimir Davydov, Andrew Morton, cgroups-u79uwXL29TY76Z2rM5mHXA,
linux-mm-Bw31MaZKKs3YtjvyW6yDsg,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
In-Reply-To: <20200214071233.100682-1-shakeelb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
Hello, Shakeel!
On Thu, Feb 13, 2020 at 11:12:33PM -0800, Shakeel Butt wrote:
> We are testing network memory accounting in our setup and noticed
> inconsistent network memory usage and often unrelated memcgs network
> usage correlates with testing workload. On further inspection, it seems
> like mem_cgroup_sk_alloc() is broken in irq context specially for
> cgroup v1.
A great catch!
>
> mem_cgroup_sk_alloc() can be called in irq context and kind
> of assumes that it can only happen from sk_clone_lock() and the source
> sock object has already associated memcg. However in cgroup v1, where
> network memory accounting is opt-in, the source sock can be not
> associated with any memcg and the new cloned sock can get associated
> with unrelated interrupted memcg.
>
> Cgroup v2 can also suffer if the source sock object was created by
> process in the root memcg or if sk_alloc() is called in irq context.
Do you mind sharing a call trace?
Also, shouldn't cgroup_sk_alloc() be changed in a similar way?
Thanks!
Roman
^ permalink raw reply
* Re: [RFC PATCH 0/3] KVM: x86: honor guest memory type
From: Chia-I Wu @ 2020-02-14 21:47 UTC (permalink / raw)
To: Sean Christopherson
Cc: Paolo Bonzini, kvm, vkuznets, wanpengli, jmattson, joro,
Gurchetan Singh, Gerd Hoffmann, ML dri-devel
In-Reply-To: <20200214195229.GF20690@linux.intel.com>
On Fri, Feb 14, 2020 at 11:52 AM Sean Christopherson
<sean.j.christopherson@intel.com> wrote:
>
> On Fri, Feb 14, 2020 at 11:26:06AM +0100, Paolo Bonzini wrote:
> > On 13/02/20 23:18, Chia-I Wu wrote:
> > >
> > > The bug you mentioned was probably this one
> > >
> > > https://bugzilla.kernel.org/show_bug.cgi?id=104091
> >
> > Yes, indeed.
> >
> > > From what I can tell, the commit allowed the guests to create cached
> > > mappings to MMIO regions and caused MCEs. That is different than what
> > > I need, which is to allow guests to create uncached mappings to system
> > > ram (i.e., !kvm_is_mmio_pfn) when the host userspace also has uncached
> > > mappings. But it is true that this still allows the userspace & guest
> > > kernel to create conflicting memory types.
>
> This is ok.
>
> > Right, the question is whether the MCEs were tied to MMIO regions
> > specifically and if so why.
>
> 99.99999% likelihood the answer is "yes". Cacheable accesses to non-existent
> memory and most (all?) MMIO regions will cause a #MC. This includes
> speculative accesses.
>
> Commit fd717f11015f ("KVM: x86: apply guest MTRR virtualization on host
> reserved pages") explicitly had a comment "1. MMIO: trust guest MTRR",
> which is basically a direct avenue to generating #MCs.
>
> IIRC, WC accesses to non-existent memory will also cause #MC, but KVM has
> bigger problems if it has PRESENT EPTEs pointing at garbage.
>
> > An interesting remark is in the footnote of table 11-7 in the SDM.
> > There, for the MTRR (EPT for us) memory type UC you can read:
> >
> > The UC attribute comes from the MTRRs and the processors are not
> > required to snoop their caches since the data could never have
> > been cached. This attribute is preferred for performance reasons.
> >
> > There are two possibilities:
> >
> > 1) the footnote doesn't apply to UC mode coming from EPT page tables.
> > That would make your change safe.
> >
> > 2) the footnote also applies when the UC attribute comes from the EPT
> > page tables rather than the MTRRs. In that case, the host should use
> > UC as the EPT page attribute if and only if it's consistent with the host
> > MTRRs; it would be more or less impossible to honor UC in the guest MTRRs.
> > In that case, something like the patch below would be needed.
>
> (2), the EPTs effectively replace the MTRRs. The expectation being that
> the VMM will use always use EPT memtypes consistent with the MTRRs.
This is my understanding as well.
> > It is not clear from the manual why the footnote would not apply to WC; that
> > is, the manual doesn't say explicitly that the processor does not do snooping
> > for accesses to WC memory. But I guess that must be the case, which is why I
> > used MTRR_TYPE_WRCOMB in the patch below.
>
> A few paragraphs below table 11-12 states:
>
> In particular, a WC page must never be aliased to a cacheable page because
> WC writes may not check the processor caches.
>
> > Either way, we would have an explanation of why creating cached mapping to
> > MMIO regions would, and why in practice we're not seeing MCEs for guest RAM
> > (the guest would have set WB for that memory in its MTRRs, not UC).
>
> Aliasing (physical) RAM with different memtypes won't cause #MC, just
> memory corruption.
What we need potentially gives the userspace (the guest kernel, to be
exact) the ability to create conflicting memory types. If we can be
sure that the worst scenario is for a guest to corrupt its own memory,
by only allowing aliases on physical ram, that seems alright.
AFAICT, it is currently allowed on ARM (verified) and AMD (not
verified, but svm_get_mt_mask returns 0 which supposedly means the NPT
does not restrict what the guest PAT can do). This diff would do the
trick for Intel without needing any uapi change:
diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c
index e3394c839dea..88af11cc551a 100644
--- a/arch/x86/kvm/vmx/vmx.c
+++ b/arch/x86/kvm/vmx/vmx.c
@@ -6905,12 +6905,6 @@ static u64 vmx_get_mt_mask(struct kvm_vcpu
*vcpu, gfn_t gfn, bool is_mmio)
goto exit;
}
- if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
- ipat = VMX_EPT_IPAT_BIT;
- cache = MTRR_TYPE_WRBACK;
- goto exit;
- }
-
if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
ipat = VMX_EPT_IPAT_BIT;
if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
> > One thing you didn't say: how would userspace use KVM_MEM_DMA? On which
> > regions would it be set?
> >
> > Thanks,
> >
> > Paolo
> >
> > diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c
> > index dc331fb06495..2be6f7effa1d 100644
> > --- a/arch/x86/kvm/vmx/vmx.c
> > +++ b/arch/x86/kvm/vmx/vmx.c
> > @@ -6920,8 +6920,16 @@ static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
> > }
> >
> > cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
> > -
> > exit:
> > + if (cache == MTRR_TYPE_UNCACHABLE && !is_mmio) {
> > + /*
> > + * We cannot set UC in the EPT page tables as it can cause
> > + * machine check exceptions (??). Hopefully the guest is
> > + * using PAT.
> > + */
> > + cache = MTRR_TYPE_WRCOMB;
>
> This is unnecessary. Setting UC in the EPT tables will never directly lead
> to #MC. Forcing WC is likely more dangerous.
>
> > + }
> > +
> > return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
> > }
> >
> >
^ permalink raw reply related
* Re: [RFC PATCH 0/3] KVM: x86: honor guest memory type
From: Chia-I Wu @ 2020-02-14 21:47 UTC (permalink / raw)
To: Sean Christopherson
Cc: wanpengli, kvm, joro, ML dri-devel, Gurchetan Singh,
Gerd Hoffmann, Paolo Bonzini, vkuznets, jmattson
In-Reply-To: <20200214195229.GF20690@linux.intel.com>
On Fri, Feb 14, 2020 at 11:52 AM Sean Christopherson
<sean.j.christopherson@intel.com> wrote:
>
> On Fri, Feb 14, 2020 at 11:26:06AM +0100, Paolo Bonzini wrote:
> > On 13/02/20 23:18, Chia-I Wu wrote:
> > >
> > > The bug you mentioned was probably this one
> > >
> > > https://bugzilla.kernel.org/show_bug.cgi?id=104091
> >
> > Yes, indeed.
> >
> > > From what I can tell, the commit allowed the guests to create cached
> > > mappings to MMIO regions and caused MCEs. That is different than what
> > > I need, which is to allow guests to create uncached mappings to system
> > > ram (i.e., !kvm_is_mmio_pfn) when the host userspace also has uncached
> > > mappings. But it is true that this still allows the userspace & guest
> > > kernel to create conflicting memory types.
>
> This is ok.
>
> > Right, the question is whether the MCEs were tied to MMIO regions
> > specifically and if so why.
>
> 99.99999% likelihood the answer is "yes". Cacheable accesses to non-existent
> memory and most (all?) MMIO regions will cause a #MC. This includes
> speculative accesses.
>
> Commit fd717f11015f ("KVM: x86: apply guest MTRR virtualization on host
> reserved pages") explicitly had a comment "1. MMIO: trust guest MTRR",
> which is basically a direct avenue to generating #MCs.
>
> IIRC, WC accesses to non-existent memory will also cause #MC, but KVM has
> bigger problems if it has PRESENT EPTEs pointing at garbage.
>
> > An interesting remark is in the footnote of table 11-7 in the SDM.
> > There, for the MTRR (EPT for us) memory type UC you can read:
> >
> > The UC attribute comes from the MTRRs and the processors are not
> > required to snoop their caches since the data could never have
> > been cached. This attribute is preferred for performance reasons.
> >
> > There are two possibilities:
> >
> > 1) the footnote doesn't apply to UC mode coming from EPT page tables.
> > That would make your change safe.
> >
> > 2) the footnote also applies when the UC attribute comes from the EPT
> > page tables rather than the MTRRs. In that case, the host should use
> > UC as the EPT page attribute if and only if it's consistent with the host
> > MTRRs; it would be more or less impossible to honor UC in the guest MTRRs.
> > In that case, something like the patch below would be needed.
>
> (2), the EPTs effectively replace the MTRRs. The expectation being that
> the VMM will use always use EPT memtypes consistent with the MTRRs.
This is my understanding as well.
> > It is not clear from the manual why the footnote would not apply to WC; that
> > is, the manual doesn't say explicitly that the processor does not do snooping
> > for accesses to WC memory. But I guess that must be the case, which is why I
> > used MTRR_TYPE_WRCOMB in the patch below.
>
> A few paragraphs below table 11-12 states:
>
> In particular, a WC page must never be aliased to a cacheable page because
> WC writes may not check the processor caches.
>
> > Either way, we would have an explanation of why creating cached mapping to
> > MMIO regions would, and why in practice we're not seeing MCEs for guest RAM
> > (the guest would have set WB for that memory in its MTRRs, not UC).
>
> Aliasing (physical) RAM with different memtypes won't cause #MC, just
> memory corruption.
What we need potentially gives the userspace (the guest kernel, to be
exact) the ability to create conflicting memory types. If we can be
sure that the worst scenario is for a guest to corrupt its own memory,
by only allowing aliases on physical ram, that seems alright.
AFAICT, it is currently allowed on ARM (verified) and AMD (not
verified, but svm_get_mt_mask returns 0 which supposedly means the NPT
does not restrict what the guest PAT can do). This diff would do the
trick for Intel without needing any uapi change:
diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c
index e3394c839dea..88af11cc551a 100644
--- a/arch/x86/kvm/vmx/vmx.c
+++ b/arch/x86/kvm/vmx/vmx.c
@@ -6905,12 +6905,6 @@ static u64 vmx_get_mt_mask(struct kvm_vcpu
*vcpu, gfn_t gfn, bool is_mmio)
goto exit;
}
- if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
- ipat = VMX_EPT_IPAT_BIT;
- cache = MTRR_TYPE_WRBACK;
- goto exit;
- }
-
if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
ipat = VMX_EPT_IPAT_BIT;
if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
> > One thing you didn't say: how would userspace use KVM_MEM_DMA? On which
> > regions would it be set?
> >
> > Thanks,
> >
> > Paolo
> >
> > diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c
> > index dc331fb06495..2be6f7effa1d 100644
> > --- a/arch/x86/kvm/vmx/vmx.c
> > +++ b/arch/x86/kvm/vmx/vmx.c
> > @@ -6920,8 +6920,16 @@ static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
> > }
> >
> > cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
> > -
> > exit:
> > + if (cache == MTRR_TYPE_UNCACHABLE && !is_mmio) {
> > + /*
> > + * We cannot set UC in the EPT page tables as it can cause
> > + * machine check exceptions (??). Hopefully the guest is
> > + * using PAT.
> > + */
> > + cache = MTRR_TYPE_WRCOMB;
>
> This is unnecessary. Setting UC in the EPT tables will never directly lead
> to #MC. Forcing WC is likely more dangerous.
>
> > + }
> > +
> > return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
> > }
> >
> >
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related
* Re: [PATCH] net: phy: restore mdio regs in the iproc mdio driver
From: Scott Branden @ 2020-02-14 21:45 UTC (permalink / raw)
To: Florian Fainelli, Andrew Lunn
Cc: Ray Jui, Arun Parameswaran, Russell King, linux-kernel,
bcm-kernel-feedback-list, netdev, David S . Miller,
linux-arm-kernel, Heiner Kallweit
In-Reply-To: <2b0ef4fc-c3a1-9aeb-2e86-31e9de7a19eb@gmail.com>
On 2020-02-14 12:37 p.m., Florian Fainelli wrote:
> On 2/14/20 12:33 PM, Andrew Lunn wrote:
>> On Fri, Feb 14, 2020 at 11:48:58AM -0800, Scott Branden wrote:
>>> From: Arun Parameswaran <arun.parameswaran@broadcom.com>
>>>
>>> The mii management register in iproc mdio block
>>> does not have a reention register so it is lost on suspend.
>> reention?
> Retention presumably.
Yes, typo. Will fix commit message.
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply
* Re: [PATCH] net: phy: restore mdio regs in the iproc mdio driver
From: Scott Branden @ 2020-02-14 21:45 UTC (permalink / raw)
To: Florian Fainelli, Andrew Lunn
Cc: Heiner Kallweit, Ray Jui, Arun Parameswaran, Russell King,
linux-kernel, bcm-kernel-feedback-list, netdev, David S . Miller,
linux-arm-kernel
In-Reply-To: <2b0ef4fc-c3a1-9aeb-2e86-31e9de7a19eb@gmail.com>
On 2020-02-14 12:37 p.m., Florian Fainelli wrote:
> On 2/14/20 12:33 PM, Andrew Lunn wrote:
>> On Fri, Feb 14, 2020 at 11:48:58AM -0800, Scott Branden wrote:
>>> From: Arun Parameswaran <arun.parameswaran@broadcom.com>
>>>
>>> The mii management register in iproc mdio block
>>> does not have a reention register so it is lost on suspend.
>> reention?
> Retention presumably.
Yes, typo. Will fix commit message.
^ permalink raw reply
* Linux kernel 4.9.214 released
From: Linux Kernel Distribution System @ 2020-02-14 21:45 UTC (permalink / raw)
To: linux-kernel-announce
Linux kernel version 4.9.214 is now available:
Full source: https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.9.214.tar.xz
Patch: https://cdn.kernel.org/pub/linux/kernel/v4.x/patch-4.9.214.xz
PGP Signature: https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.9.214.tar.sign
You can view the summary of the changes at the following URL:
https://git.kernel.org/stable/ds/v4.9.214/v4.9.213
^ permalink raw reply
* Linux kernel 4.14.171 released
From: Linux Kernel Distribution System @ 2020-02-14 21:45 UTC (permalink / raw)
To: linux-kernel-announce
Linux kernel version 4.14.171 is now available:
Full source: https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.171.tar.xz
Patch: https://cdn.kernel.org/pub/linux/kernel/v4.x/patch-4.14.171.xz
PGP Signature: https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.171.tar.sign
You can view the summary of the changes at the following URL:
https://git.kernel.org/stable/ds/v4.14.171/v4.14.170
^ permalink raw reply
* [rtw88] Linux 5.6-rc1 / RTL8822BE WiFi adapter
From: Tobias Predel @ 2020-02-14 21:41 UTC (permalink / raw)
To: linux-wireless
Hello,
I use linux-mainline (5.6.0-rc1, Arch Linux config) in order to check for
improvements for the rtw88 driver because I have been experiencing a lot of
connection losses so far for my Realtek Semiconductor Co., Ltd. RTL8822BE
802.11a/b/g/n/ac WiFi adapter (Hewlett-Packard Company Realtek RTL8822BE
802.11ac 2 × 2 Wi-Fi + Bluetooth 4.2 Combo Adapter (MU-MIMO supported))
So far multiple warnings and errors are reported while being connected with
a wireless network - I tested also another network and get similiar
behavior.
In short, I get several "timed out to flush queue 1" and sometimes
"failed to send h2c command" warning messages leading sometimes to
connection losses or throttling.
Is the provided firmware file in the linux-firmware tree still
compatible with the driver code?
I would be very glad if someone could look into this.
Feb 14 20:54:29 t2b3 kernel: rtw_pci 0000:02:00.0: failed to send h2c command
Feb 14 20:58:37 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-92 noise=9999 txrate=270000
Feb 14 20:58:46 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 20:58:48 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 20:58:48 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-67 noise=9999 txrate=270000
Feb 14 20:59:42 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-74 noise=9999 txrate=270000
Feb 14 20:59:53 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 20:59:54 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:00:02 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-66 noise=9999 txrate=243000
Feb 14 21:00:02 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-85 noise=9999 txrate=243000
Feb 14 21:00:07 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Feb 14 21:00:12 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:00:14 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:00:14 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-71 noise=9999 txrate=243000
Feb 14 21:00:49 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-74 noise=9999 txrate=270000
Feb 14 21:00:56 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:00:57 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:00:57 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:00:58 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:01:00 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:01:00 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=270000
Feb 14 21:01:00 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=270000
Feb 14 21:03:21 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-79 noise=9999 txrate=243000
Feb 14 21:03:29 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:03:33 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:03:43 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-66 noise=9999 txrate=300000
Feb 14 21:04:42 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-90 noise=9999 txrate=300000
Feb 14 21:04:48 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:04:49 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:04:54 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:04:54 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-68 noise=9999 txrate=243000
Feb 14 21:08:55 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-63 noise=9999 txrate=243000
Feb 14 21:10:36 t2b3 mutt[8832]: DIGEST-MD5 common mech free
Feb 14 21:11:29 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-95 noise=9999 txrate=243000
Feb 14 21:11:41 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:11:41 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=270000
Feb 14 21:14:12 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-62 noise=9999 txrate=300000
Feb 14 21:15:08 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 21:15:32 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-72 noise=9999 txrate=243000
Feb 14 21:15:44 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:16:21 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:16:21 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:16:25 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:17:05 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:17:48 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:18:07 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-66 noise=9999 txrate=300000
Feb 14 21:18:46 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-72 noise=9999 txrate=300000
Feb 14 21:18:48 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:49 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:49 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:56 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:56 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:58 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:58 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:58 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:58 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:59 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:59 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:18:59 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:19:00 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-81 noise=9999 txrate=162000
Feb 14 21:19:01 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:19:03 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:19:05 t2b3 upowerd[1175]: energy 43.605000 bigger than full 43.513800
Feb 14 21:19:06 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:19:08 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:19:09 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:19:09 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:19:13 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:19:13 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:19:13 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-70 noise=9999 txrate=162000
Feb 14 21:22:47 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-62 noise=9999 txrate=243000
Feb 14 21:22:55 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-72 noise=9999 txrate=300000
Feb 14 21:23:06 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:23:11 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-66 noise=9999 txrate=243000
Feb 14 21:24:06 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-83 noise=9999 txrate=243000
Feb 14 21:24:13 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:24:18 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-67 noise=9999 txrate=270000
Feb 14 21:25:50 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-73 noise=9999 txrate=300000
Feb 14 21:26:01 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:26:03 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-65 noise=9999 txrate=243000
Feb 14 21:26:12 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-95 noise=9999 txrate=270000
Feb 14 21:26:23 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Feb 14 21:26:23 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-64 noise=9999 txrate=243000
Feb 14 21:26:58 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-76 noise=9999 txrate=216000
Feb 14 21:27:09 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:27:10 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:27:10 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:27:10 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-69 noise=9999 txrate=216000
Feb 14 21:27:17 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-63 noise=9999 txrate=270000
Feb 14 21:27:40 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-103 noise=9999 txrate=243000
Feb 14 21:27:51 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:27:51 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-66 noise=9999 txrate=270000
Feb 14 21:28:09 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-64 noise=9999 txrate=162000
Feb 14 21:30:47 t2b3 kernel: perf: interrupt took too long (2547 > 2500), lowering kernel.perf_event_max_sample_rate t>
Feb 14 21:31:52 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 21:32:17 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-72 noise=9999 txrate=270000
Feb 14 21:32:21 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:32:27 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:32:27 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:27 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:27 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:27 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:29 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000000, rcr=0xf400408e
Feb 14 21:32:29 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x1b, len=18
Feb 14 21:32:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 21:32:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 21:32:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 23000042 00000000
Feb 14 21:32:32 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-64 noise=9999 txrate=270000
Feb 14 21:32:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:34 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 21:32:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:34 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:32:35 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x13, len=7
Feb 14 21:32:35 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x14, len=7
Feb 14 21:32:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:32:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:32:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 27000042 00000000
Feb 14 21:32:36 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x15, len=7
Feb 14 21:32:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 27000042 00000000
Feb 14 21:32:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 21:32:40 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-75 noise=9999 txrate=216000
Feb 14 21:32:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:40 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:40 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000010, rcr=0xf400400e
Feb 14 21:32:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:40 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:45 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:45 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:45 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:45 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:45 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:45 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:45 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
[...]
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:50 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:51 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:51 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:51 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:32:51 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-69 noise=9999 txrate=216000
Feb 14 21:32:51 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-69 noise=9999 txrate=216000
Feb 14 21:32:51 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:51 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:51 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000000, rcr=0xf400408e
Feb 14 21:32:51 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x1c, len=18
Feb 14 21:32:51 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000010, rcr=0xf400400e
Feb 14 21:32:52 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:52 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:54 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:55 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:57 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x16, len=7
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:58 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:32:59 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x17, len=7
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:33:00 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:33:01 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:33:01 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:33:01 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:33:01 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:33:01 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:33:01 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:33:01 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:33:01 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
[...]
Feb 14 21:34:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:12 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1f000042 00000000
Feb 14 21:34:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:12 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:34:14 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x32, len=7
Feb 14 21:34:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:34:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:34:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:14 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:14 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000010, rcr=0xf400400e
Feb 14 21:34:14 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x33, len=7
Feb 14 21:34:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:34:14 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:34:18 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:34:18 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:34:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:18 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:34:18 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:34:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:18 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:19 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:20 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:21 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:22 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
[...]
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x34, len=7
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
geb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x35, len=7
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:34:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:34:27 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:27 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:27 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:34:27 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:34:27 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:34:27 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000000, rcr=0xf400408e
Feb 14 21:34:27 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x1f, len=18
Feb 14 21:34:27 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x36, len=7
Feb 14 21:34:28 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x37, len=7
Feb 14 21:34:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1c000042 00000000
Feb 14 21:34:29 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x38, len=7
Feb 14 21:34:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1c000042 00000000
Feb 14 21:34:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 21:34:32 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x39, len=7
Feb 14 21:34:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 21:34:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:34:34 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:34:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 22000042 00000000
Feb 14 21:34:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1e000042 00000000
Feb 14 21:34:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:34:36 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:34:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:34:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:34:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:34:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1d000042 00000000
Feb 14 21:34:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 21:34:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:34:38 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x3a, len=7
Feb 14 21:34:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:34:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:34:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1d000042 00000000
Feb 14 21:34:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:34:40 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x3b, len=7
Feb 14 21:34:42 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:34:42 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:34:42 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1c000042 00000000
Feb 14 21:34:42 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:34:42 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x3c, len=7
Feb 14 21:34:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:34:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:34:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1d000042 00000000
Feb 14 21:34:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:34:44 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x3d, len=7
Feb 14 21:34:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:34:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:34:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1d000042 00000000
Feb 14 21:34:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 21:34:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:34:46 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x3e, len=7
Feb 14 21:34:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:34:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:34:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1d000042 00000000
Feb 14 21:34:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:34:48 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x3f, len=7
Feb 14 21:34:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:34:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:34:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1c000042 00000000
Feb 14 21:34:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:34:50 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x40, len=7
[...]
Feb 14 21:36:04 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 21:36:04 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 21:36:06 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 21000042 00000000
Feb 14 21:36:08 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 21:36:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:10 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 23000042 00000000
Feb 14 21:36:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:10 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:36:12 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x5c, len=7
Feb 14 21:36:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:36:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:36:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 23000042 00000000
Feb 14 21:36:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 21:36:12 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x5d, len=7
Feb 14 21:36:12 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x5e, len=7
Feb 14 21:36:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 21:36:16 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 20000042 00000000
Feb 14 21:36:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 21:36:19 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:36:19 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:36:19 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000010, rcr=0xf400400e
Feb 14 21:36:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:20 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:36:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:36:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:27 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:29 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:36:30 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:36:31 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:36:31 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:31 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:31 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000000, rcr=0xf400408e
Feb 14 21:36:31 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x22, len=18
Feb 14 21:36:31 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x5f, len=7
Feb 14 21:36:32 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x60, len=7
Feb 14 21:36:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:36:32 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:36:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 21:36:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 21:36:32 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x61, len=7
Feb 14 21:36:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 21000042 00000000
Feb 14 21:36:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:36:36 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:36:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 20000042 00000000
[...]
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x73, len=7
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:49:22 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x74, len=7
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:49:23 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:49:24 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:49:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:49:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:49:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:49:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 1
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:49:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:26 t2b3 wpa_supplicant[615]: nl80211: send_and_recv->nl_recvmsgs failed: -33
Feb 14 21:49:26 t2b3 wpa_supplicant[615]: wlp2s0: SME: Trying to authenticate with a4:2b:b0:c1:6f:44 (SSID='TP-Link_3F>
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000000, rcr=0xf400408e
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x2c, len=18
Feb 14 21:49:26 t2b3 kernel: wlp2s0: disconnect from AP 98:da:c4:5c:3f:b8 for new auth to a4:2b:b0:c1:6f:44
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000001 00000000
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: sta 98:da:c4:5c:3f:b8 with macid 0 left
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: this vif is not mu bfee
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:26 t2b3 kernel: wlp2s0: authenticate with a4:2b:b0:c1:6f:44
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x00, len=7
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: coex: bt status(0)
Feb 14 21:49:26 t2b3 kernel: wlp2s0: send auth to a4:2b:b0:c1:6f:44 (try 1/3)
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x01, len=7
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: get alpha2 00 from initiator 0, mapping to chplan 0x7f, txregd 9
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x00, len=18
Feb 14 21:49:26 t2b3 NetworkManager[517]: <info> [1581713366.8172] device (wlp2s0): supplicant interface state: compl>
Feb 14 21:49:26 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
Feb 14 21:49:26 t2b3 kernel: wlp2s0: send auth to a4:2b:b0:c1:6f:44 (try 2/3)
Feb 14 21:49:26 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x01, len=18
Feb 14 21:49:27 t2b3 kernel: wlp2s0: send auth to a4:2b:b0:c1:6f:44 (try 3/3)
Feb 14 21:49:27 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x02, len=18
Feb 14 21:49:27 t2b3 kernel: wlp2s0: authentication with a4:2b:b0:c1:6f:44 timed out
[...]
eb 14 21:52:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:52:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:52:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 21000042 00000000
Feb 14 21:52:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 21:52:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:52:36 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x62, len=7
Feb 14 21:52:37 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x63, len=7
Feb 14 21:52:37 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x64, len=7
Feb 14 21:52:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:52:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:52:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 21000042 00000000
Feb 14 21:52:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:52:38 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x65, len=7
Feb 14 21:52:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:52:40 t2b3 kernel: rtw_pci 0000:02:00.0: firmware failed to restore hardware setting
Feb 14 21:52:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:52:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 22000042 00000000
Feb 14 21:52:40 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x66, len=7
Feb 14 21:52:42 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 21000042 00000000
Feb 14 21:52:42 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:52:42 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x67, len=7
Feb 14 21:52:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:52:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:52:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 23000042 00000000
Feb 14 21:52:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 21:52:44 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x68, len=7
Feb 14 21:52:44 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x69, len=7
Feb 14 21:52:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 21:52:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:52:48 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:52:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 21000042 00000000
Feb 14 21:52:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:52:48 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:52:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:52:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:52:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:52:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 1f000042 00000000
Feb 14 21:52:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:52:50 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x6a, len=7
Feb 14 21:52:52 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:52:52 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:52:52 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 21:52:52 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 21:52:52 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x6b, len=7
Feb 14 21:52:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:52:54 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:52:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 23000042 00000000
Feb 14 21:52:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:52:54 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:58:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:58:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:58:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 22000042 00000000
Feb 14 21:58:22 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0xe3, len=7
Feb 14 21:58:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:58:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:58:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 20000042 00000000
Feb 14 21:58:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:58:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:58:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:58:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:58:26 t2b3 kernel: rtw_pci 0000:02:00.0: firmware failed to restore hardware setting
Feb 14 21:58:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:58:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 21:58:26 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0xe4, len=7
Feb 14 21:58:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:58:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:58:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 20000042 00000000
Feb 14 21:58:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 21:58:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:58:28 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:58:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:58:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:58:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:58:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 20000042 00000000
Feb 14 21:58:30 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0xe5, len=7
Feb 14 21:59:21 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0xff, len=7
Feb 14 21:59:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:59:22 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:59:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 24000042 00000000
Feb 14 21:59:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:59:22 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:59:22 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:59:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:59:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:59:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 23000042 00000000
Feb 14 21:59:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 21:59:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:59:24 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x00, len=7
Feb 14 21:59:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:59:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:59:26 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 22000042 00000000
Feb 14 21:59:26 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x01, len=7
Feb 14 21:59:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 24000042 00000000
Feb 14 21:59:30 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x02, len=7
Feb 14 21:59:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 21:59:32 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 21:59:32 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x04, len=18
Feb 14 21:59:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:59:32 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:59:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 23000042 00000000
Feb 14 21:59:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 21:59:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:59:32 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:59:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:59:32 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x03, len=7
Feb 14 21:59:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:59:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:59:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 24000042 00000000
Feb 14 21:59:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:59:34 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x04, len=7
Feb 14 21:59:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:59:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:59:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 24000042 00000000
Feb 14 21:59:36 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x05, len=7
Feb 14 21:59:38 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 21:59:38 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x05, len=18
Feb 14 21:59:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:59:38 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:59:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 24000042 00000000
Feb 14 21:59:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:59:38 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:59:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:59:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:59:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:59:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 24000042 00000000
Feb 14 21:59:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 21:59:40 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x06, len=7
Feb 14 21:59:42 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 22000042 00000000
Feb 14 21:59:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 21:59:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 21:59:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 20000042 00000000
Feb 14 21:59:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 21:59:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 21:59:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 21:59:45 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x07, len=7
Feb 14 21:59:46 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x08, len=7
Feb 14 21:59:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 21:59:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 21:59:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 24000042 00000000
Feb 14 21:59:46 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x09, len=7
[...]
Feb 14 22:00:02 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:00:02 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:00:02 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 20000042 00000000
Feb 14 22:00:02 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:00:02 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x10, len=7
Feb 14 22:00:02 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x11, len=7
Feb 14 22:00:04 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:00:04 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:00:04 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 20000042 00000000
Feb 14 22:00:04 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 22:00:04 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x12, len=7
Feb 14 22:00:04 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x13, len=7
Feb 14 22:00:06 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 22000042 00000000
Feb 14 22:00:08 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 22:00:09 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:00:09 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x06, len=18
Feb 14 22:00:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:00:10 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:00:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:00:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:00:10 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:00:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:00:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:00:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:00:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 23000042 00000000
Feb 14 22:00:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 22:00:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:00:12 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x14, len=7
Feb 14 22:00:12 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x15, len=7
Feb 14 22:00:13 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x16, len=7
Feb 14 22:00:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:00:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:00:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 22000042 00000000
Feb 14 22:00:14 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x17, len=7
Feb 14 22:00:16 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:00:16 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:00:16 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 21000042 00000000
Feb 14 22:00:16 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:00:16 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:00:16 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:00:18 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x18, len=7
Feb 14 22:00:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:00:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:00:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 22:00:18 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x19, len=7
Feb 14 22:00:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:00:20 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:00:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 21000042 00000000
Feb 14 22:00:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 22:00:20 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:00:20 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
[...]
Feb 14 22:02:06 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x48, len=7
Feb 14 22:02:06 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:02:06 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:02:06 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 24000042 00000000
Feb 14 22:02:06 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 22:02:06 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x49, len=7
Feb 14 22:02:06 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x4a, len=7
Feb 14 22:02:08 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:02:08 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:02:08 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 22000042 00000000
Feb 14 22:02:08 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:02:08 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:02:08 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:02:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:02:10 t2b3 kernel: rtw_pci 0000:02:00.0: firmware failed to restore hardware setting
Feb 14 22:02:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:02:10 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:02:10 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x4b, len=7
Feb 14 22:02:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:02:12 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:02:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 23000042 00000000
Feb 14 22:02:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:02:12 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:02:12 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:02:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:02:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:02:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 20000042 00000000
Feb 14 22:02:14 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0ffff010
Feb 14 22:02:14 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x4c, len=7
Feb 14 22:02:16 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 22:02:16 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 22:02:16 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 22000042 00000000
Feb 14 22:02:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:02:18 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:02:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 21000042 00000000
Feb 14 22:02:18 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:02:18 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
[...]
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000000, rcr=0xf400408e
Feb 14 22:04:24 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x07, len=18
Feb 14 22:04:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 22:04:25 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 22:04:25 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 27000042 00000000
Feb 14 22:04:26 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:26 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x08, len=18
Feb 14 22:04:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:28 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 22:04:29 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x85, len=7
Feb 14 22:04:29 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x86, len=7
Feb 14 22:04:30 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:31 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:31 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x09, len=18
Feb 14 22:04:32 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:33 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:33 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x0a, len=18
Feb 14 22:04:34 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 27000042 00000000
Feb 14 22:04:35 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:35 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x0b, len=18
Feb 14 22:04:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:04:36 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:04:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 22:04:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:36 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:36 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:04:36 t2b3 kernel: rtw_pci 0000:02:00.0: failed to send h2c command
Feb 14 22:04:37 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:37 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:04:37 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:04:37 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x87, len=7
Feb 14 22:04:37 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x0c, len=18
Feb 14 22:04:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 22:04:38 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 22:04:38 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:39 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x0c, seq=0x88, len=7
Feb 14 22:04:39 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:39 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x0d, len=18
Feb 14 22:04:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:04:40 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:04:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:40 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:40 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:04:41 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:41 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:04:41 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:04:41 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x89, len=7
Feb 14 22:04:41 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x0e, len=18
Feb 14 22:04:42 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:42 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:04:43 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:43 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:04:43 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:04:43 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x0f, len=18
Feb 14 22:04:43 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x8a, len=7
Feb 14 22:04:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 22:04:44 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 22:04:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 27000042 00000000
Feb 14 22:04:44 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 22:04:45 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:45 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x10, len=18
Feb 14 22:04:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:04:46 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:04:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:46 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:46 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:04:47 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:47 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:04:47 t2b3 kernel: rtw_pci 0000:02:00.0: firmware failed to restore hardware setting
Feb 14 22:04:47 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:04:47 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x8b, len=7
[...]
Feb 14 22:04:48 t2b3 kernel: ------------[ cut here ]------------
Feb 14 22:04:48 t2b3 kernel: purge skb(s) not reported by firmware
Feb 14 22:04:48 t2b3 kernel: WARNING: CPU: 4 PID: 0 at drivers/net/wireless/realtek/rtw88/tx.c:155 rtw_tx_report_purge>
Feb 14 22:04:48 t2b3 kernel: Modules linked in: ccm rfcomm fuse ebtable_filter ebtables ip6table_filter ip6_tables ipt>
Feb 14 22:04:48 t2b3 kernel: intel_pch_thermal videodev intel_gtt agpgart ecdh_generic rfkill syscopyarea sysfillrect>
Feb 14 22:04:48 t2b3 kernel: CPU: 4 PID: 0 Comm: swapper/4 Not tainted 5.6.0-rc1-1-mainline #1
Feb 14 22:04:48 t2b3 kernel: Hardware name: HP HP ProBook 430 G5/8377, BIOS Q85 Ver. 01.09.01 10/15/2019
Feb 14 22:04:48 t2b3 kernel: RIP: 0010:rtw_tx_report_purge_timer+0x20/0x50 [rtw88]
Feb 14 22:04:48 t2b3 kernel: Code: 84 00 00 00 00 00 0f 1f 40 00 0f 1f 44 00 00 8b 47 f0 85 c0 75 01 c3 41 54 55 53 48>
Feb 14 22:04:48 t2b3 kernel: RSP: 0018:ffff9986c0230e78 EFLAGS: 00010286
Feb 14 22:04:48 t2b3 kernel: RAX: 0000000000000000 RBX: ffff8fa986325cf8 RCX: 0000000000000000
Feb 14 22:04:48 t2b3 kernel: RDX: 0000000000000102 RSI: 0000000000000086 RDI: 00000000ffffffff
Feb 14 22:04:48 t2b3 kernel: RBP: 0000000000000000 R08: 0000000000001cef R09: 0000000000000001
Feb 14 22:04:48 t2b3 kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff8fa986325cf8
Feb 14 22:04:48 t2b3 kernel: R13: ffffffffc1572960 R14: ffff8fa99831dd80 R15: ffff8fa986325cf8
Feb 14 22:04:48 t2b3 kernel: FS: 0000000000000000(0000) GS:ffff8fa998300000(0000) knlGS:0000000000000000
Feb 14 22:04:48 t2b3 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Feb 14 22:04:48 t2b3 kernel: CR2: 0000033af9588148 CR3: 000000010440a003 CR4: 00000000003606e0
Feb 14 22:04:48 t2b3 kernel: Call Trace:
Feb 14 22:04:48 t2b3 kernel: <IRQ>
Feb 14 22:04:48 t2b3 kernel: call_timer_fn+0x2d/0x160
Feb 14 22:04:48 t2b3 kernel: run_timer_softirq+0x1ad/0x510
Feb 14 22:04:48 t2b3 kernel: ? rtw_tx_report_enqueue+0x80/0x80 [rtw88]
Feb 14 22:04:48 t2b3 kernel: __do_softirq+0x111/0x34d
Feb 14 22:04:48 t2b3 kernel: irq_exit+0xac/0xd0
Feb 14 22:04:48 t2b3 kernel: smp_apic_timer_interrupt+0xa6/0x1b0
Feb 14 22:04:48 t2b3 kernel: apic_timer_interrupt+0xf/0x20
Feb 14 22:04:48 t2b3 kernel: </IRQ>
Feb 14 22:04:48 t2b3 kernel: RIP: 0010:cpuidle_enter_state+0xc9/0x410
Feb 14 22:04:48 t2b3 kernel: Code: e8 ac 0d 98 ff 80 7c 24 0f 00 74 17 9c 58 0f 1f 44 00 00 f6 c4 02 0f 85 1c 03 00 00>
Feb 14 22:04:48 t2b3 kernel: RSP: 0018:ffff9986c011fe68 EFLAGS: 00000246 ORIG_RAX: ffffffffffffff13
Feb 14 22:04:48 t2b3 kernel: RAX: ffff8fa998300000 RBX: ffff8fa998337600 RCX: 000000000000001f
Feb 14 22:04:48 t2b3 kernel: RDX: 0000000000000000 RSI: 00000000471c71c7 RDI: 0000000000000000
Feb 14 22:04:48 t2b3 kernel: RBP: ffffffffb92c9f20 R08: 000004deb749b76f R09: 0000000000001c78
Feb 14 22:04:48 t2b3 kernel: R10: 0000000000000800 R11: ffff8fa99832bd64 R12: 000004deb749b76f
Feb 14 22:04:48 t2b3 kernel: R13: 0000000000000006 R14: 0000000000000006 R15: ffff8fa995ee0000
Feb 14 22:04:48 t2b3 kernel: ? cpuidle_enter_state+0xa4/0x410
Feb 14 22:04:48 t2b3 kernel: cpuidle_enter+0x29/0x40
Feb 14 22:04:48 t2b3 kernel: do_idle+0x1e6/0x270
Feb 14 22:04:48 t2b3 kernel: cpu_startup_entry+0x19/0x20
Feb 14 22:04:48 t2b3 kernel: start_secondary+0x186/0x1d0
Feb 14 22:04:48 t2b3 kernel: secondary_startup_64+0xb6/0xc0
Feb 14 22:04:48 t2b3 kernel: ---[ end trace f47b25d3e719c265 ]---
Feb 14 22:04:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 22:04:48 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:04:48 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x11, len=18
Feb 14 22:04:49 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:49 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:04:49 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:04:49 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x8c, len=7
Feb 14 22:04:49 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x12, len=18
Feb 14 22:04:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 22:04:50 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 22:04:50 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:51 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:51 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x13, len=18
Feb 14 22:04:52 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 26000042 00000000
Feb 14 22:04:52 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 49800040 0fffe000
Feb 14 22:04:53 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:53 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x14, len=18
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 03306160 00001111
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (3)
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 25000042 00000000
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01210120 00000000
Feb 14 22:04:54 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-BEACON-LOSS
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 01000020 00000c00
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: firmware failed to restore hardware setting
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:04:54 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x8d, len=7
Feb 14 22:04:55 t2b3 kernel: ------------[ cut here ]------------
Feb 14 22:04:55 t2b3 kernel: purge skb(s) not reported by firmware
Feb 14 22:04:55 t2b3 kernel: WARNING: CPU: 4 PID: 0 at drivers/net/wireless/realtek/rtw88/tx.c:155 rtw_tx_report_purge>
Feb 14 22:04:55 t2b3 kernel: Modules linked in: ccm rfcomm fuse ebtable_filter ebtables ip6table_filter ip6_tables ipt>
Feb 14 22:04:55 t2b3 kernel: intel_pch_thermal videodev intel_gtt agpgart ecdh_generic rfkill syscopyarea sysfillrect>
Feb 14 22:04:55 t2b3 kernel: CPU: 4 PID: 0 Comm: swapper/4 Tainted: G W 5.6.0-rc1-1-mainline #1
Feb 14 22:04:55 t2b3 kernel: Hardware name: HP HP ProBook 430 G5/8377, BIOS Q85 Ver. 01.09.01 10/15/2019
Feb 14 22:04:55 t2b3 kernel: RIP: 0010:rtw_tx_report_purge_timer+0x20/0x50 [rtw88]
Feb 14 22:04:55 t2b3 kernel: Code: 84 00 00 00 00 00 0f 1f 40 00 0f 1f 44 00 00 8b 47 f0 85 c0 75 01 c3 41 54 55 53 48>
Feb 14 22:04:55 t2b3 kernel: RSP: 0018:ffff9986c0230e78 EFLAGS: 00010286
Feb 14 22:04:55 t2b3 kernel: RAX: 0000000000000000 RBX: ffff8fa986325cf8 RCX: 0000000000000000
Feb 14 22:04:55 t2b3 kernel: RDX: 0000000000000102 RSI: 0000000000000086 RDI: 00000000ffffffff
Feb 14 22:04:55 t2b3 kernel: RBP: 0000000000000000 R08: 0000000000001d32 R09: 0000000000000001
Feb 14 22:04:55 t2b3 kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff8fa986325cf8
Feb 14 22:04:55 t2b3 kernel: R13: ffffffffc1572960 R14: ffff8fa99831dd80 R15: ffff8fa986325cf8
Feb 14 22:04:55 t2b3 kernel: FS: 0000000000000000(0000) GS:ffff8fa998300000(0000) knlGS:0000000000000000
Feb 14 22:04:55 t2b3 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Feb 14 22:04:55 t2b3 kernel: CR2: 00000265bd18c000 CR3: 000000010440a002 CR4: 00000000003606e0
Feb 14 22:04:55 t2b3 kernel: Call Trace:
Feb 14 22:04:55 t2b3 kernel: <IRQ>
Feb 14 22:04:55 t2b3 kernel: call_timer_fn+0x2d/0x160
Feb 14 22:04:55 t2b3 kernel: run_timer_softirq+0x1ad/0x510
Feb 14 22:04:55 t2b3 kernel: ? rtw_tx_report_enqueue+0x80/0x80 [rtw88]
Feb 14 22:04:55 t2b3 kernel: __do_softirq+0x111/0x34d
Feb 14 22:04:55 t2b3 kernel: irq_exit+0xac/0xd0
Feb 14 22:04:55 t2b3 kernel: smp_apic_timer_interrupt+0xa6/0x1b0
Feb 14 22:04:55 t2b3 kernel: apic_timer_interrupt+0xf/0x20
Feb 14 22:04:55 t2b3 kernel: </IRQ>
Feb 14 22:04:55 t2b3 kernel: RIP: 0010:cpuidle_enter_state+0xc9/0x410
Feb 14 22:04:55 t2b3 kernel: Code: e8 ac 0d 98 ff 80 7c 24 0f 00 74 17 9c 58 0f 1f 44 00 00 f6 c4 02 0f 85 1c 03 00 00>
Feb 14 22:04:55 t2b3 kernel: RSP: 0018:ffff9986c011fe68 EFLAGS: 00000246 ORIG_RAX: ffffffffffffff13
Feb 14 22:04:55 t2b3 kernel: RAX: ffff8fa998300000 RBX: ffff8fa998337600 RCX: 000000000000001f
Feb 14 22:04:55 t2b3 kernel: RDX: 0000000000000000 RSI: 00000000471c71c7 RDI: 0000000000000000
Feb 14 22:04:55 t2b3 kernel: RBP: ffffffffb92c9f20 R08: 000004e05c804ff2 R09: 00000000000018a2
Feb 14 22:04:55 t2b3 kernel: R10: 0000000000000230 R11: ffff8fa99832bd64 R12: 000004e05c804ff2
Feb 14 22:04:55 t2b3 kernel: R13: 0000000000000004 R14: 0000000000000004 R15: ffff8fa995ee0000
Feb 14 22:04:55 t2b3 kernel: ? cpuidle_enter_state+0xa4/0x410
Feb 14 22:04:55 t2b3 kernel: cpuidle_enter+0x29/0x40
Feb 14 22:04:55 t2b3 kernel: do_idle+0x1e6/0x270
Feb 14 22:04:55 t2b3 kernel: cpu_startup_entry+0x19/0x20
Feb 14 22:04:55 t2b3 kernel: start_secondary+0x186/0x1d0
Feb 14 22:04:55 t2b3 kernel: secondary_startup_64+0xb6/0xc0
Feb 14 22:04:55 t2b3 kernel: ---[ end trace f47b25d3e719c266 ]---
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: timed out to flush queue 2
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000001 00000000
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: sta 98:da:c4:5c:3f:b8 with macid 0 left
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: this vif is not mu bfee
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0xff, seq=0x15, len=18
Feb 14 22:04:55 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-DISCONNECTED bssid=98:da:c4:5c:3f:b8 reason=4 locally_gen>
Feb 14 22:04:55 t2b3 NetworkManager[517]: <warn> [1581714295.5704] sup-iface[0x557f983ab120,wlp2s0]: connection disco>
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:55 t2b3 wpa_supplicant[615]: dbus: wpa_dbus_property_changed: no property SessionLength in object /fi/w1/>
Feb 14 22:04:55 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
Feb 14 22:04:55 t2b3 kernel: rtw_pci 0000:02:00.0: get alpha2 00 from initiator 0, mapping to chplan 0x7f, txregd 9
Feb 14 22:04:55 t2b3 NetworkManager[517]: <info> [1581714295.5928] device (wlp2s0): supplicant interface state: compl>
Feb 14 22:04:55 t2b3 wpa_supplicant[615]: wlp2s0: Reject scan trigger since one is already pending
Feb 14 22:04:55 t2b3 wpa_supplicant[615]: wlp2s0: Failed to initiate AP scan
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000161 00000000
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 033a6160 00001011
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (7)
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: config rx filter, changed=0x00000010, new=0x00000010, rcr=0xf400400e
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x00, len=7
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: coex: bt status(0)
Feb 14 22:04:56 t2b3 kernel: rtw_pci 0000:02:00.0: recv C2H, id=0x09, seq=0x01, len=7
Feb 14 22:04:56 t2b3 wpa_supplicant[615]: wlp2s0: Reject scan trigger since one is already pending
Feb 14 22:04:56 t2b3 wpa_supplicant[615]: wlp2s0: Failed to initiate AP scan
Feb 14 22:04:56 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Feb 14 22:04:57 t2b3 kernel: rtw_pci 0000:02:00.0: send H2C content 00000060 00000000
Feb 14 22:04:57 t2b3 kernel: rtw_pci 0000:02:00.0: coex: coex tdma type (0)
Feb 14 22:04:57 t2b3 wpa_supplicant[615]: wlp2s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Feb 14 22:04:57 t2b3 wpa_supplicant[615]: wlp2s0: Reject scan trigger since one is already pending
Feb 14 22:04:57 t2b3 wpa_supplicant[615]: wlp2s0: Failed to initiate AP scan
Feb 14 22:04:58 t2b3 wpa_supplicant[615]: wlp2s0: Reject scan trigger since one is already pending
Feb 14 22:04:58 t2b3 wpa_supplicant[615]: wlp2s0: Failed to initiate AP scan
Feb 14 22:04:59 t2b3 wpa_supplicant[615]: wlp2s0: Reject scan trigger since one is already pending
Feb 14 22:04:59 t2b3 wpa_supplicant[615]: wlp2s0: Failed to initiate AP scan
[...]
Regards,
Tobias Predel
--
Bitte denken Sie an die Umwelt, bevor Sie diese E-Mail ausdrucken.
^ permalink raw reply
* Re: [PATCH v2 0/8] serial: Disable DMA and PM on kernel console
From: Tony Lindgren @ 2020-02-14 21:41 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Andy Shevchenko, Jiri Slaby, linux-serial,
Sebastian Andrzej Siewior
In-Reply-To: <20200214163325.GA3992427@kroah.com>
* Greg Kroah-Hartman <gregkh@linuxfoundation.org> [200214 20:03]:
> On Fri, Feb 14, 2020 at 01:43:31PM +0200, Andy Shevchenko wrote:
> > This is second attempt [1] to get rid of problematic DMA and PM calls
> > in the serial kernel console code.
> >
> > Kernel console is sensitive to any kind of complex work needed to print
> > out anything on it. One such case is emergency print during Oops.
> >
> > Patches 1-3 are preparatory ones.
>
> I've applied these first 3, as they are "obvious" :)
>
> I'll let others weigh in on the other patches here, as I'd like to see
> if Tony and others feel it solves their issues or not.
Yes with the pm_runtime_get_sync/pm_runtime_put_sync change for
patch 5/8 things work nicely for me. But as it looks like there will
be another revision of the patches so I'll wait for that before
acking.
Regards,
Tony
^ permalink raw reply
* Re: [PATCH] gssd: Closed a memory leak in find_keytab_entry()
From: Steve Dickson @ 2020-02-14 21:41 UTC (permalink / raw)
To: Linux NFS Mailing list
In-Reply-To: <20200212190515.7443-1-steved@redhat.com>
On 2/12/20 2:05 PM, Steve Dickson wrote:
> When 'adhostoverride' is "not set", which
> is most of the time, adhostoverride is not freed.
>
> Signed-off-by: Steve Dickson <steved@redhat.com>
Committed...
stesved
> ---
> utils/gssd/krb5_util.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/utils/gssd/krb5_util.c b/utils/gssd/krb5_util.c
> index a1c43d2..85f60ae 100644
> --- a/utils/gssd/krb5_util.c
> +++ b/utils/gssd/krb5_util.c
> @@ -799,7 +799,7 @@ find_keytab_entry(krb5_context context, krb5_keytab kt,
> int tried_all = 0, tried_default = 0, tried_upper = 0;
> krb5_principal princ;
> const char *notsetstr = "not set";
> - char *adhostoverride;
> + char *adhostoverride = NULL;
>
>
> /* Get full target hostname */
> @@ -827,7 +827,6 @@ find_keytab_entry(krb5_context context, krb5_keytab kt,
> adhostoverride);
> /* No overflow: Windows cannot handle strings longer than 19 chars */
> strcpy(myhostad, adhostoverride);
> - free(adhostoverride);
> } else {
> strcpy(myhostad, myhostname);
> for (i = 0; myhostad[i] != 0; ++i) {
> @@ -836,6 +835,8 @@ find_keytab_entry(krb5_context context, krb5_keytab kt,
> myhostad[i] = '$';
> myhostad[i+1] = 0;
> }
> + if (adhostoverride)
> + krb5_free_string(context, adhostoverride);
>
> if (!srchost) {
> retval = get_full_hostname(myhostname, myhostname, sizeof(myhostname));
>
^ permalink raw reply
* Re: [GIT PULL] Power management fixes for v5.6-rc2
From: pr-tracker-bot @ 2020-02-14 21:40 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Linus Torvalds, Linux PM, ACPI Devel Maling List,
Linux Kernel Mailing List
In-Reply-To: <CAJZ5v0hpEebbSFUFdtRnLWvXhyruzNgNaL9o-Od1a3jkgYRQKg@mail.gmail.com>
The pull request you sent on Fri, 14 Feb 2020 11:24:55 +0100:
> git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git pm-5.6-rc2
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/4e03e4e6d2a03a9f2edeefaec12d4f336dee824d
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker
^ permalink raw reply
* Re: [GIT PULL] sound fixes for 5.6-rc2
From: pr-tracker-bot @ 2020-02-14 21:40 UTC (permalink / raw)
To: Takashi Iwai; +Cc: Linus Torvalds, Linux Kernel Mailing List
In-Reply-To: <s5heeuxjuy1.wl-tiwai@suse.de>
The pull request you sent on Fri, 14 Feb 2020 11:59:34 +0100:
> git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-5.6-rc2
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/81f3011cbf501fef3a954821dbc362084f6b686b
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker
^ permalink raw reply
* Re: [GIT] Networking
From: pr-tracker-bot @ 2020-02-14 21:40 UTC (permalink / raw)
To: David Miller; +Cc: torvalds, akpm, netdev, linux-kernel
In-Reply-To: <20200214.075409.535471157405842746.davem@davemloft.net>
The pull request you sent on Fri, 14 Feb 2020 07:54:09 -0800 (PST):
> git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git refs/heads/master
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/2019fc96af228b412bdb2e8e0ad4b1fc12046a51
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker
^ permalink raw reply
* Linux kernel 4.4.214 released
From: Linux Kernel Distribution System @ 2020-02-14 21:40 UTC (permalink / raw)
To: linux-kernel-announce
Linux kernel version 4.4.214 is now available:
Full source: https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.4.214.tar.xz
Patch: https://cdn.kernel.org/pub/linux/kernel/v4.x/patch-4.4.214.xz
PGP Signature: https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.4.214.tar.sign
You can view the summary of the changes at the following URL:
https://git.kernel.org/stable/ds/v4.4.214/v4.4.213
^ permalink raw reply
* Re: [git pull] drm fixes for 5.6-rc2
From: pr-tracker-bot @ 2020-02-14 21:40 UTC (permalink / raw)
To: Dave Airlie; +Cc: Daniel Vetter, Linus Torvalds, LKML, dri-devel
In-Reply-To: <CAPM=9tzpGGiPB7oOkhjEn9MifjjVQ4TdH4GTtJeBf74SBn-NKg@mail.gmail.com>
The pull request you sent on Fri, 14 Feb 2020 14:15:53 +1000:
> git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2020-02-14
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/3f0d329371c08dfa3227f1716e522f3a8a081155
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply
* Re: [git pull] drm fixes for 5.6-rc2
From: pr-tracker-bot @ 2020-02-14 21:40 UTC (permalink / raw)
To: Dave Airlie; +Cc: Linus Torvalds, Daniel Vetter, dri-devel, LKML
In-Reply-To: <CAPM=9tzpGGiPB7oOkhjEn9MifjjVQ4TdH4GTtJeBf74SBn-NKg@mail.gmail.com>
The pull request you sent on Fri, 14 Feb 2020 14:15:53 +1000:
> git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2020-02-14
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/3f0d329371c08dfa3227f1716e522f3a8a081155
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker
^ permalink raw reply
* Re: [PATCH 3/3] drm/panel: simple: fix osd070t1718_19ts sync drive edge
From: Sam Ravnborg @ 2020-02-14 21:39 UTC (permalink / raw)
To: Tomi Valkeinen
Cc: devicetree, Tony Lindgren, Jyri Sarha, Peter Ujfalusi,
Thierry Reding, dri-devel, Laurent Pinchart
In-Reply-To: <a9cf515c-dbdd-e70d-5a89-1211c1049d16@ti.com>
Hi Tomi.
On Mon, Feb 10, 2020 at 10:15:33AM +0200, Tomi Valkeinen wrote:
> Hi Thierry,
>
> On 02/12/2019 15:07, Laurent Pinchart wrote:
> > Hi Tomi,
> >
> > Thank you for the patch.
> >
> > On Thu, Nov 14, 2019 at 11:39:50AM +0200, Tomi Valkeinen wrote:
> > > The panel datasheet says that the panel samples at falling edge, but
> > > does not say anything about h/v sync signals. Testing shows that if the
> > > sync signals are driven on falling edge, the picture on the panel will
> > > be slightly shifted right.
> > >
> > > Setting sync drive edge to the same as data drive edge fixes this issue.
> > >
> > > Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
> >
> > I don't have access to the documentation, but this makes sense, so
> >
> > Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> >
> > > ---
> > > drivers/gpu/drm/panel/panel-simple.c | 3 ++-
> > > 1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> > > index 5d487686d25c..0784536ae6af 100644
> > > --- a/drivers/gpu/drm/panel/panel-simple.c
> > > +++ b/drivers/gpu/drm/panel/panel-simple.c
> > > @@ -2397,7 +2397,8 @@ static const struct panel_desc osddisplays_osd070t1718_19ts = {
> > > .height = 91,
> > > },
> > > .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
> > > - .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
> > > + .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
> > > + DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
> > > .connector_type = DRM_MODE_CONNECTOR_DPI,
> > > };
>
> Can this be merged?
I have lost the original mail.
Can you re-send or provide a patchwork pointer or similar.
Then I will apply.
PS. Mail had been stuck in my spam quarantine so did not get it until
now.
Sam
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply
* Re: [PATCH 3/3] drm/panel: simple: fix osd070t1718_19ts sync drive edge
From: Sam Ravnborg @ 2020-02-14 21:39 UTC (permalink / raw)
To: Tomi Valkeinen
Cc: Thierry Reding, devicetree, Tony Lindgren, dri-devel, Jyri Sarha,
Peter Ujfalusi, Laurent Pinchart
In-Reply-To: <a9cf515c-dbdd-e70d-5a89-1211c1049d16@ti.com>
Hi Tomi.
On Mon, Feb 10, 2020 at 10:15:33AM +0200, Tomi Valkeinen wrote:
> Hi Thierry,
>
> On 02/12/2019 15:07, Laurent Pinchart wrote:
> > Hi Tomi,
> >
> > Thank you for the patch.
> >
> > On Thu, Nov 14, 2019 at 11:39:50AM +0200, Tomi Valkeinen wrote:
> > > The panel datasheet says that the panel samples at falling edge, but
> > > does not say anything about h/v sync signals. Testing shows that if the
> > > sync signals are driven on falling edge, the picture on the panel will
> > > be slightly shifted right.
> > >
> > > Setting sync drive edge to the same as data drive edge fixes this issue.
> > >
> > > Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
> >
> > I don't have access to the documentation, but this makes sense, so
> >
> > Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> >
> > > ---
> > > drivers/gpu/drm/panel/panel-simple.c | 3 ++-
> > > 1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> > > index 5d487686d25c..0784536ae6af 100644
> > > --- a/drivers/gpu/drm/panel/panel-simple.c
> > > +++ b/drivers/gpu/drm/panel/panel-simple.c
> > > @@ -2397,7 +2397,8 @@ static const struct panel_desc osddisplays_osd070t1718_19ts = {
> > > .height = 91,
> > > },
> > > .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
> > > - .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
> > > + .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
> > > + DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
> > > .connector_type = DRM_MODE_CONNECTOR_DPI,
> > > };
>
> Can this be merged?
I have lost the original mail.
Can you re-send or provide a patchwork pointer or similar.
Then I will apply.
PS. Mail had been stuck in my spam quarantine so did not get it until
now.
Sam
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.