From: Vlastimil Babka <vbabka@suse.cz>
To: Kalle Valo <kvalo@codeaurora.org>,
Pavel Procopiuc <pavel.procopiuc@gmail.com>,
david@redhat.com
Cc: ath11k@lists.infradead.org, linux-mm@kvack.org,
akpm@linux-foundation.org, linux-kernel@vger.kernel.org,
linux-wireless@vger.kernel.org
Subject: Re: Regression: QCA6390 fails with "mm/page_alloc: place pages to tail in __free_pages_core()"
Date: Thu, 5 Nov 2020 11:42:33 +0100 [thread overview]
Message-ID: <d6fb1e30-0d19-9af3-337b-69ff11c2fc6c@suse.cz> (raw)
In-Reply-To: <87361onphy.fsf_-_@codeaurora.org>
On 11/5/20 10:04 AM, Kalle Valo wrote:
> (changing the subject, adding more lists and people)
>
> Pavel Procopiuc <pavel.procopiuc@gmail.com> writes:
>
>> Op 04.11.2020 om 10:12 schreef Kalle Valo:
>>> Yeah, it is unfortunately time consuming but it is the best way to get
>>> bottom of this.
>>
>> I have found the commit that breaks things for me, it's
>> 7fef431be9c9ac255838a9578331567b9dba4477 mm/page_alloc: place pages to
>> tail in __free_pages_core()
>>
>> I've reverted it on top of the 5.10-rc2 and ath11k driver loads fine
>> and I have wifi working.
>
> Oh, very interesting. Thanks a lot for the bisection, otherwise we would
> have never found out whats causing this.
>
> David & mm folks: Pavel noticed that his QCA6390 Wi-Fi 6 device (driver
> ath11k) failed on v5.10-rc1. After bisecting he found that the commit
> below causes the regression. I have not been able to reproduce this and
> for me QCA6390 works fine. I don't know if this needs a specific kernel
> configuration or what's the difference between our setups.
>
> Any ideas what might cause this and how to fix it?
>
> Full discussion: http://lists.infradead.org/pipermail/ath11k/2020-November/000501.html
>
> commit 7fef431be9c9ac255838a9578331567b9dba4477
> Author: David Hildenbrand <david@redhat.com>
> AuthorDate: Thu Oct 15 20:09:35 2020 -0700
> Commit: Linus Torvalds <torvalds@linux-foundation.org>
> CommitDate: Fri Oct 16 11:11:18 2020 -0700
>
> mm/page_alloc: place pages to tail in __free_pages_core()
>
Let me paste from the ath11k discussion:
> * Relevant errors from the log:
> # journalctl -b | grep -iP '05:00|ath11k'
> Nov 02 10:41:26 razor kernel: pci 0000:05:00.0: [17cb:1101] type 00 class 0x028000
> Nov 02 10:41:26 razor kernel: pci 0000:05:00.0: reg 0x10: [mem 0xd2100000-0xd21fffff 64bit]
> Nov 02 10:41:26 razor kernel: pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
> Nov 02 10:41:26 razor kernel: pci 0000:05:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at
> 0000:00:1c.1 (capable of 7.876 Gb/s with 8.0 GT/s PCIe x1 link)
> Nov 02 10:41:26 razor kernel: pci 0000:05:00.0: Adding to iommu group 21
> Nov 02 10:41:27 razor kernel: ath11k_pci 0000:05:00.0: WARNING: ath11k PCI support is experimental!
> Nov 02 10:41:27 razor kernel: ath11k_pci 0000:05:00.0: BAR 0: assigned [mem 0xd2100000-0xd21fffff 64bit]
> Nov 02 10:41:27 razor kernel: ath11k_pci 0000:05:00.0: enabling device (0000 -> 0002)
> Nov 02 10:41:27 razor kernel: mhi 0000:05:00.0: Requested to power ON
> Nov 02 10:41:27 razor kernel: mhi 0000:05:00.0: Power on setup success
> Nov 02 10:41:27 razor kernel: ath11k_pci 0000:05:00.0: Respond mem req failed, result: 1, err: 0
This seems to be ath11k_qmi_respond_fw_mem_request(). Why is it failure with
error 0? No idea.
What would happen if all the GFP_KERNEL in the file were changed to GFP_DMA32?
I'm thinking the hardware perhaps doesn't like too high physical addresses or
something. But if I think correctly, freeing to tail should actually move them
towards head. So it's weird.
> Nov 02 10:41:27 razor kernel: ath11k_pci 0000:05:00.0: qmi failed to respond fw mem req:-22
> Nov 02 10:41:32 razor kernel: ath11k_pci 0000:05:00.0: qmi failed memory request, err = -110
> Nov 02 10:41:32 razor kernel: ath11k_pci 0000:05:00.0: qmi failed to respond fw mem req:-110
> Nov 02 10:42:58 razor kernel: mhi 0000:05:00.0: Device failed to exit MHI Reset state
next prev parent reply other threads:[~2020-11-05 10:42 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <fa22cf0f-3bac-add6-8c71-6f6cad5206d8@gmail.com>
[not found] ` <87lffjodu7.fsf@codeaurora.org>
[not found] ` <fa338986-8de4-fde1-6805-d46793c947e4@gmail.com>
[not found] ` <c9cc0ec6-4dda-2608-3575-0e6dfb6d0852@gmail.com>
[not found] ` <87ft5rszcs.fsf@codeaurora.org>
[not found] ` <87ft5qsem9.fsf@codeaurora.org>
[not found] ` <f99862f4-9b3a-03e5-cd26-1de6136f9e46@gmail.com>
[not found] ` <87blgdscxd.fsf@codeaurora.org>
[not found] ` <229c31e7-9aff-18e6-a6db-be7b46331173@gmail.com>
2020-11-05 9:04 ` Kalle Valo
2020-11-05 9:47 ` Pavel Procopiuc
2020-11-05 10:42 ` Vlastimil Babka [this message]
2020-11-05 10:45 ` Pavel Procopiuc
2020-11-05 11:13 ` David Hildenbrand
2020-11-05 12:55 ` Pavel Procopiuc
2020-11-05 20:23 ` David Hildenbrand
2020-11-06 17:32 ` Pavel Procopiuc
2020-11-06 20:41 ` David Hildenbrand
[not found] ` <87eekz4s04.fsf@codeaurora.org>
2020-11-11 20:41 ` Pavel Procopiuc
2020-11-12 10:48 ` David Hildenbrand
2020-11-13 8:17 ` Pavel Procopiuc
[not found] ` <f1f471905ea99ad9b9c8a8eeae616ff9@codeaurora.org>
2020-11-13 12:52 ` Pavel Procopiuc
2020-11-13 13:36 ` wi nk
2020-11-13 13:56 ` David Hildenbrand
2020-11-13 15:49 ` wi nk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d6fb1e30-0d19-9af3-337b-69ff11c2fc6c@suse.cz \
--to=vbabka@suse.cz \
--cc=akpm@linux-foundation.org \
--cc=ath11k@lists.infradead.org \
--cc=david@redhat.com \
--cc=kvalo@codeaurora.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-wireless@vger.kernel.org \
--cc=pavel.procopiuc@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox