[{"id":3674608,"web_url":"http://patchwork.ozlabs.org/comment/3674608/","msgid":"<549c2498-199e-4ccb-8903-a13544bfe787@canonical.com>","list_archive_url":null,"date":"2026-04-08T07:25:20","subject":"ACK: [SRU][R][PATCH 0/1] System doesn't response with mt76 call trace","submitter":{"id":92836,"url":"http://patchwork.ozlabs.org/api/people/92836/","name":"Yufeng Gao","email":"yufeng.gao@canonical.com"},"content":"On 8/4/26 10:43, AceLan Kao wrote:\n> From: \"Chia-Lin Kao (AceLan)\" <acelan.kao@canonical.com>\n>\n> BugLink: https://bugs.launchpad.net/bugs/2137448\n>\n> [Impact]\n> On Dell systems with MediaTek MT7925 WiFi cards (mt7925e driver), the system becomes unresponsive during firmware testing and high-load situations due to a deadlock in the mt76 driver. The system shows \"workqueue hogging CPU\" messages followed by system hang, preventing completion of certification testing.\n>\n> The issue occurs because:\n> 1. Two workqueue functions (ps_work and mac_work) attempt to cancel each other using cancel_delayed_work_sync()\n> 2. In high-load situations, both works get queued but cannot execute until CPUs are available\n> 3. When CPUs become available, both work functions may run simultaneously, each trying to synchronously cancel the other, resulting in a deadlock\n>\n> The call path that creates the circular dependency is:\n>    mt792x_mac_work() -> ... -> cancel_delayed_work_sync(&pm->ps_work);\n>    mt792x_pm_power_save_work() -> cancel_delayed_work_sync(&mphy->mac_work);\n>\n> [Fix]\n> Replace cancel_delayed_work_sync() with cancel_delayed_work() in the mt792x_pm_power_save_work() function to eliminate the deadlock condition.\n>\n> Upstream commit (submitted to linux-wireless):\n> https://patchwork.kernel.org/project/linux-wireless/patch/20251215122231.3180648-1-leon.yen@mediatek.com/\n>\n> In linux-next:\n> bb2f07819d063 wifi: mt76: mt792x: Fix a potential deadlock in high-load situations\n>\n> The non-synchronous cancel is safe here because:\n> - The work cancellation is part of the power-save flow, not a critical cleanup path\n> - Avoiding synchronous wait prevents the circular dependency that causes the deadlock\n> - The code becomes simpler and easier to maintain\n>\n> [Test Plan]\n> On a Dell system with MediaTek MT7925 WiFi (or similar affected platform):\n>\n> 1. Install fwts if not already available:\n>     $ sudo apt-get install fwts\n>\n> 2. Monitor system logs in a separate terminal:\n>     $ sudo dmesg -w\n>\n> 3. Run the firmware test cases that previously triggered the deadlock:\n>\n>     $ sudo fwts wakealarm\n>     $ sudo fwts uefirtvariable\n>     $ sudo fwts oops\n>\n>     Or run a comprehensive diagnostic test:\n>     $ sudo fwts --log-level=high -r stdout\n>\n> 4. Check for symptoms during and after the tests:\n>\n>     Without the fix, you would see:\n>     - \"Message 00020080 (seq N) timeout\" from mt7925e\n>     - \"workqueue: vmstat_update hogged CPU for >10000us\" warnings\n>     - \"workqueue: psi_avgs_work hogged CPU for >10000us\" warnings\n>     - WARNING traces in iommu_dma_unmap_page\n>     - System becoming unresponsive\n>\n>     With the fix, these symptoms should not occur and the system should remain responsive.\n>\n> 5. Run extended stress testing with WiFi activity during high CPU load:\n>     $ stress-ng --cpu 128 --timeout 300s &\n>     $ ping -f <router_ip> # flood ping to generate WiFi traffic\n>\n>     The system should remain stable without deadlocks.\n>\n> [Where problems could occur]\n> This change affects the MediaTek MT792x WiFi driver's power management and workqueue interaction on systems with mt7925e and similar chipsets.\n>\n> Potential issues if the non-synchronous cancel is not safe in this context:\n> - If there are assumptions in the code that mac_work must be fully stopped before proceeding, using non-synchronous cancel might allow mac_work to run concurrently with subsequent operations, potentially causing race conditions\n> - The mac_work might access hardware or data structures that ps_work assumes are quiescent after the cancel call, leading to unexpected behavior or crashes\n> - Power management state transitions might become inconsistent if mac_work completes after ps_work has already proceeded with its power-save operations\n>\n> However, these risks are mitigated by:\n> - The change is intentional and authored by MediaTek engineers who maintain the driver\n> - The alternative (synchronous cancel) creates a known deadlock issue with 60% reproduction rate\n> - The workqueue subsystem provides inherent protection against most race conditions\n> - Similar patterns are used elsewhere in the kernel where work items need to coordinate\n>\n> The impact is limited to:\n> - Systems with MediaTek MT792x series WiFi chipsets (mt7921, mt7925, etc.)\n> - Primarily affects high-load scenarios where both work items are queued simultaneously\n> - Does not affect other wireless drivers or systems without these chipsets\n> Leon Yen (1):\n>    wifi: mt76: mt792x: Fix a potential deadlock in high-load situations\n>\n>   drivers/net/wireless/mediatek/mt76/mt792x_mac.c | 2 +-\n>   1 file changed, 1 insertion(+), 1 deletion(-)\n>\nAcked-by: Yufeng Gao <yufeng.gao@canonical.com>","headers":{"Return-Path":"<kernel-team-bounces@lists.ubuntu.com>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@legolas.ozlabs.org","Authentication-Results":["legolas.ozlabs.org;\n\tdkim=fail reason=\"signature verification failed\" (4096-bit key;\n unprotected) header.d=canonical.com header.i=@canonical.com\n header.a=rsa-sha256 header.s=20251003 header.b=iVxekpvR;\n\tdkim-atps=neutral","legolas.ozlabs.org;\n spf=pass (sender SPF authorized) smtp.mailfrom=lists.ubuntu.com\n (client-ip=185.125.189.65; helo=lists.ubuntu.com;\n envelope-from=kernel-team-bounces@lists.ubuntu.com;\n receiver=patchwork.ozlabs.org)"],"Received":["from lists.ubuntu.com (lists.ubuntu.com [185.125.189.65])\n\t(using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits))\n\t(No client certificate requested)\n\tby legolas.ozlabs.org (Postfix) with ESMTPS id 4frF3310Wwz1xv0\n\tfor <incoming@patchwork.ozlabs.org>; Wed, 08 Apr 2026 17:25:35 +1000 (AEST)","from localhost ([127.0.0.1] helo=lists.ubuntu.com)\n\tby lists.ubuntu.com with esmtp (Exim 4.86_2)\n\t(envelope-from <kernel-team-bounces@lists.ubuntu.com>)\n\tid 1wANI0-0000Gg-7c; Wed, 08 Apr 2026 07:25:28 +0000","from smtp-relay-internal-1.internal ([10.131.114.114]\n helo=smtp-relay-internal-1.canonical.com)\n by lists.ubuntu.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128)\n (Exim 4.86_2) (envelope-from <yufeng.gao@canonical.com>)\n id 1wANHz-0000FO-5u\n for kernel-team@lists.ubuntu.com; Wed, 08 Apr 2026 07:25:27 +0000","from mail-pg1-f197.google.com (mail-pg1-f197.google.com\n [209.85.215.197])\n (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)\n key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest\n SHA256)\n (No client certificate requested)\n by smtp-relay-internal-1.canonical.com (Postfix) with ESMTPS id 09CDC3F60F\n for <kernel-team@lists.ubuntu.com>; Wed,  8 Apr 2026 07:25:27 +0000 (UTC)","by mail-pg1-f197.google.com with SMTP id\n 41be03b00d2f7-b62da7602a0so3844341a12.2\n for <kernel-team@lists.ubuntu.com>; Wed, 08 Apr 2026 00:25:26 -0700 (PDT)","from ?IPV6:2001:8003:ec14:5900:4cde:43fe:ad76:4887?\n ([2001:8003:ec14:5900:4cde:43fe:ad76:4887])\n by smtp.gmail.com with ESMTPSA id\n d2e1a72fcca58-82cf9b21c92sm21188306b3a.11.2026.04.08.00.25.23\n for <kernel-team@lists.ubuntu.com>\n (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128);\n Wed, 08 Apr 2026 00:25:24 -0700 (PDT)"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com;\n s=20251003; t=1775633127;\n bh=lGNMsJHIbBU/cmx1R+TIyVNj6PjybXF2nl1GSTNSw9o=;\n h=Message-ID:Date:MIME-Version:Subject:To:References:From:\n In-Reply-To:Content-Type;\n b=iVxekpvRXJs9TXM1Z+b/ijaSOP/4mspRg2yn8zUc4j1XZ82FgYUzufhb8z1jB97gB\n pFHg58N0SRCWXD0gfmUVpzce+5tAdcgiHQVch04y3pZ4ID9BO3OJlFVJvKiEXBp71p\n YJAxKIfx5KwqJxBHpp1cM70M0h1C+eQMiz8UdduZMZuBqCHrBEZBMEqIFHWc3oofEq\n S+BS5NblWZ18gD4EMO4n8joBl3dP9cXfV6woa+qKxqc36oEQpjPKqji0XKLUOZlVho\n 60HE7Yh5R0XaLKaQoOs2ZbDWBmQArs7n81Py5uCkBfKPskU4/O5jddAkULQAvbuN7q\n I1+spj5K7kpInoHgAlDZvf4MsslAUA3OqrYg6qPV/Gxx6LCPeiXvXBM5gVNpDOf+Yt\n bYtCmICURIYmlEwMiQZpZf3S2Z77fLZIJSCihEqv5DSV4ljKbKqIJ9o12REd1Ja4Rd\n 9DM4Zz7LJUP3pLikCSIbWdZBEeUAlrSyJqWAj1IyMeR2sFkUZvtCxdndofnK72do0T\n 1DT/moi1NNtMFQsRAvs6aTAmRlOGXyYISBoPKRJMK9gXvQsdWjIVR87SGV0JRgpjbj\n +1EI2mCsOFgvktt5y+SA0wwwQJSyUMYWfOo2KRc6fACet5wyubqElTh5X/TdFwS8Pt\n lroBkZ3R4mAuAoNpxAiQTFbw=","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=1e100.net; s=20251104; t=1775633125; x=1776237925;\n h=content-transfer-encoding:in-reply-to:content-language:from\n :references:to:subject:user-agent:mime-version:date:message-id\n :x-gm-gg:x-gm-message-state:from:to:cc:subject:date:message-id\n :reply-to;\n bh=lGNMsJHIbBU/cmx1R+TIyVNj6PjybXF2nl1GSTNSw9o=;\n b=lokRIi22iEk6Y9k5iLCpAxqteb1Kiy+JtNyS55mKcBxkAiAfh9PEfcbiqlPGgmDpEf\n nhVrSRVOQXQcAJyUrvQgQc8lZd2fFMykaqSjr3aaqU21i9axJu4OjY1pbOc87914lE5q\n zDew6VjupyBFUb5HdpSi33dVD6HEUzlWftk6z489/XMRAwbM5WlndbucOASDSK0LleRN\n 98ia63tm5yHpk/mFFANAN1qVL1jdZ5hOg0WvQANgkunYV6c7l+P7HGjsMER44UBdT1Xr\n Yp5zHDF7Nb096v0Bj5ZSE8iN8QTGEJwpbQQXrwqhYs90qZFH2Zngmj4RqhYMB+1v2vPJ\n MdOA==","X-Gm-Message-State":"AOJu0Yw6dpp75ag+DMZXy9YZvFXLs7TElpj4cURWVTwJk7PJhBRUi6f2\n HsoTfSHHmXbIYIwF4NloQvpPoGwNyRGNrzYMyEI3kQxi6y7nLMtQvYMih0s1KK4Cmhv9DkSh9DZ\n 0Z4wxgzH8PdCPmbElhu1a+r5/tqNSuoNDXYlH5AomdnblK4x7dOBgImuv9LHrM5xmluLygQRro+\n u1TAqEw4EOzdHE4A==","X-Gm-Gg":"AeBDievaFHh5nc2FcgJlDT2SFd/dla9zByICdEWTyP6H70jAEecgw/TY5R2HYSxtWi1\n nWSE5udb4yENOd9jjYV1D0Q60JTNyVSw8R0czLqsLmbrO35CQQdbaY5PuNiOs0sj0ybco8/EbLE\n GMflRe0a8i9QQ1AB7OmKBTt4kKVKxl9IJDiYCG6onlkL+zUHtvFhpY410fTyaehvXvHUn6kmHXh\n +D7y29JKe2hDblBmn4TAtgLSMVRIrIc4D20ClIwGfgANjofDrEMIcdHBxgq+ArcraPfzVf+uwG4\n DCBXjVgtz75sxsta5s9+gO39DQLbm5Ju6h+qiUB/YHv/qt7jZFewCS4igXcmS8ILAvJ6ZjJkK2Z\n KgJJK5ataEUSecUvV11iQsUD/ES0aXmDc0DM2ClIoAjq3VYgqhX7V8mF7/UP3FIJ7t0jlT4/z3p\n S6P4k=","X-Received":["by 2002:a05:6a00:4c14:b0:82c:2480:4e95 with SMTP id\n d2e1a72fcca58-82d0db4fcaamr19077591b3a.33.1775633125599;\n Wed, 08 Apr 2026 00:25:25 -0700 (PDT)","by 2002:a05:6a00:4c14:b0:82c:2480:4e95 with SMTP id\n d2e1a72fcca58-82d0db4fcaamr19077569b3a.33.1775633125166;\n Wed, 08 Apr 2026 00:25:25 -0700 (PDT)"],"Message-ID":"<549c2498-199e-4ccb-8903-a13544bfe787@canonical.com>","Date":"Wed, 8 Apr 2026 17:25:20 +1000","MIME-Version":"1.0","User-Agent":"Mozilla Thunderbird","Subject":"ACK: [SRU][R][PATCH 0/1] System doesn't response with mt76 call trace","To":"kernel-team@lists.ubuntu.com","References":"<20260408004333.236687-1-acelan.kao@canonical.com>","From":"Yufeng Gao <yufeng.gao@canonical.com>","Content-Language":"en-US","In-Reply-To":"<20260408004333.236687-1-acelan.kao@canonical.com>","X-BeenThere":"kernel-team@lists.ubuntu.com","X-Mailman-Version":"2.1.20","Precedence":"list","List-Id":"Kernel team discussions <kernel-team.lists.ubuntu.com>","List-Unsubscribe":"<https://lists.ubuntu.com/mailman/options/kernel-team>,\n <mailto:kernel-team-request@lists.ubuntu.com?subject=unsubscribe>","List-Archive":"<https://lists.ubuntu.com/archives/kernel-team>","List-Post":"<mailto:kernel-team@lists.ubuntu.com>","List-Help":"<mailto:kernel-team-request@lists.ubuntu.com?subject=help>","List-Subscribe":"<https://lists.ubuntu.com/mailman/listinfo/kernel-team>,\n <mailto:kernel-team-request@lists.ubuntu.com?subject=subscribe>","Content-Transfer-Encoding":"base64","Content-Type":"text/plain; charset=\"utf-8\"; Format=\"flowed\"","Errors-To":"kernel-team-bounces@lists.ubuntu.com","Sender":"\"kernel-team\" <kernel-team-bounces@lists.ubuntu.com>"}},{"id":3674679,"web_url":"http://patchwork.ozlabs.org/comment/3674679/","msgid":"<7mls5el7jh4mywz6nqk6rw7t535arswpw33uulor6w6adredmj@q4do2ah2syug>","list_archive_url":null,"date":"2026-04-08T09:35:30","subject":"APPLIED[R]: Re: [SRU][R][PATCH 0/1] System doesn't response with\n mt76 call trace","submitter":{"id":7245,"url":"http://patchwork.ozlabs.org/api/people/7245/","name":"Paolo Pisati","email":"paolo.pisati@canonical.com"},"content":"On Wed, Apr 08, 2026 at 08:43:32AM +0800, AceLan Kao wrote:\n> From: \"Chia-Lin Kao (AceLan)\" <acelan.kao@canonical.com>\n> \n> BugLink: https://bugs.launchpad.net/bugs/2137448\n\nApplied.","headers":{"Return-Path":"<kernel-team-bounces@lists.ubuntu.com>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@legolas.ozlabs.org","Authentication-Results":["legolas.ozlabs.org;\n\tdkim=fail reason=\"signature verification failed\" (4096-bit key;\n unprotected) header.d=canonical.com header.i=@canonical.com\n header.a=rsa-sha256 header.s=20251003 header.b=oCXfEU6u;\n\tdkim-atps=neutral","legolas.ozlabs.org;\n spf=pass (sender SPF authorized) smtp.mailfrom=lists.ubuntu.com\n (client-ip=185.125.189.65; helo=lists.ubuntu.com;\n envelope-from=kernel-team-bounces@lists.ubuntu.com;\n receiver=patchwork.ozlabs.org)"],"Received":["from lists.ubuntu.com (lists.ubuntu.com [185.125.189.65])\n\t(using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits))\n\t(No client certificate requested)\n\tby legolas.ozlabs.org (Postfix) with ESMTPS id 4frHx85Gy0z1xtJ\n\tfor <incoming@patchwork.ozlabs.org>; Wed, 08 Apr 2026 19:35:40 +1000 (AEST)","from localhost ([127.0.0.1] helo=lists.ubuntu.com)\n\tby lists.ubuntu.com with esmtp (Exim 4.86_2)\n\t(envelope-from <kernel-team-bounces@lists.ubuntu.com>)\n\tid 1wAPJt-00087Q-Gx; Wed, 08 Apr 2026 09:35:33 +0000","from smtp-relay-internal-0.internal ([10.131.114.225]\n helo=smtp-relay-internal-0.canonical.com)\n by lists.ubuntu.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128)\n (Exim 4.86_2) (envelope-from <paolo.pisati@canonical.com>)\n id 1wAPJs-000871-H6\n for kernel-team@lists.ubuntu.com; Wed, 08 Apr 2026 09:35:32 +0000","from mail-wr1-f70.google.com (mail-wr1-f70.google.com\n [209.85.221.70])\n (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)\n key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest\n SHA256)\n (No client certificate requested)\n by smtp-relay-internal-0.canonical.com (Postfix) with ESMTPS id 60C613F57C\n for <kernel-team@lists.ubuntu.com>; Wed,  8 Apr 2026 09:35:32 +0000 (UTC)","by mail-wr1-f70.google.com with SMTP id\n ffacd0b85a97d-43b93781cb8so5008243f8f.3\n for <kernel-team@lists.ubuntu.com>; Wed, 08 Apr 2026 02:35:32 -0700 (PDT)","from canonical.com ([2a01:e11:1403:8620:66d1:c301:8088:78ee])\n by smtp.gmail.com with ESMTPSA id\n ffacd0b85a97d-43d1e4e52a0sm54736555f8f.30.2026.04.08.02.35.30\n (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);\n Wed, 08 Apr 2026 02:35:31 -0700 (PDT)"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com;\n s=20251003; t=1775640932;\n bh=P3CMrvqzjdhxLjtp1sDnmk6hQCucH/grplSLak7CqBs=;\n h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version:\n Content-Type:In-Reply-To;\n b=oCXfEU6uT19Z4ffK3fhTqAwDOU11TayqjWhU29oQ0WYTdA9zs+CHxpem0CxEj+jHm\n 17vS29c522y0ZGl/1ezY6COcy6GmRa9JxE6QXCKmB4gMExaiBh2EnBssDIebrUyFko\n KTk7tRuAPHeG2gPx9He2CeB4mxXekX1uc2LjoQuMwYxXvbcqO6Bmwx9PeVMZKRThlm\n zKdw8yeCDYjhNU/c6Y69g8WHo9sB7RrM7c/pARrR0lI1wd6sE1OKA9hTm6hL69H/Iw\n w98I+5dBQkYkY3V6c27X6SXeyJUa4IgVPM7WdC4NGBu7bMFjjQ/iGOjoX/h0BykTZp\n pALR8EmzSaIOphEaF/0M+3MTC03f2HgNTnhrPnXAfEtoz1era/iD/nJ9oLB7/FcG3l\n 3D4z+nA8yvghC4khMO2JzDa7N74ce2MYE55qVxTSmiOZZ5KwNYI5WOC0fKtyGSaCb1\n o/V8Hnq745MahWkFgAQB6YTFKpWJ68mI3lEV39s+ZPLXDr+35qYw2O6pF2tHgyt9DE\n mDpRB0xqPdmuADC18U9nbdzh1d9SBOanDnGM/CZEHngblTBcPe0lWy2okiSSgpFeLx\n esdiuwywZMBvQBDOv5Ohx7VOIMNexcm7FqXHtCaUTDuFEocrv3Edr5LGolKB+c2wek\n F1rVmlVFAc+0qhaLCBbUelwg=","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=1e100.net; s=20251104; t=1775640932; x=1776245732;\n h=in-reply-to:content-disposition:mime-version:references:message-id\n :subject:cc:to:from:date:x-gm-gg:x-gm-message-state:from:to:cc\n :subject:date:message-id:reply-to;\n bh=P3CMrvqzjdhxLjtp1sDnmk6hQCucH/grplSLak7CqBs=;\n b=D5goz4QxxMD6YwTofrtbuz7nn+iOOiQ6zMwTowJY5EP8ddqENZit1gsZj3jpGwyg2n\n Kmdjn0x4ij/rauxp0xO5Q8HmTHuK6frAnT/XAjGIkvvJb/fcAZbWZr3vKpLJMMLV4xjn\n gAWzg8XhR1lmHa9NadaOxzL3MdUPUzQ78irXzpVMJCrEIf4zHb7cwtVpcLzjhKJOuDzf\n sIThb543vAv9Y1VAae+wAIBAGgOtVocK5FuQ+k110mr3eP9VV0/elL+07S2Vnss5EZVj\n WfQTIEs/vD7Tu1GshEdPftuFGl8LvRv95CV71K8sooHx6OhmlyH7R/Irh45ywS/FwtX2\n bh1A==","X-Gm-Message-State":"AOJu0YzMj8Bp+d+LC8AR7dLrAXB+YXP7dGy3iFd0LYdfLNop1hgVDA/W\n ijvFnYhzZN0X6meS/aRrngwvY+5Z5MtOQV8zb72FazXuk+MlM2ObZcN2/vbAHNdRw52QSzl5VFp\n T/D6PODWTpKzqmJ9eXv0D4lTQiYD1ds+/UeDp9NuXZZoMbou76CjaeL92G9MvpHHUzk1ZF8t0q1\n 7lTwxV0A==","X-Gm-Gg":"AeBDievkT/XcGPMCLqUd9NbZeySk7GwEr4obe4vuCbmP05G9d3Eh2vjEmINRktNcJua\n PHPng/ce/2f5kgxcIkE2iuAkWYqI0orgj9IGpBQNrz7hGO+T5/ao1J8UN9oCoeWsu0e7tSc8Ahs\n 5gNq9bc7Wb7bJxlH59P+CcprPrbyaGADS7ToTReGkvta3SVs5D8EVUM2lmFnLrqjAxBDHSi2lpZ\n JZRSweRp5H1azSwi46utaQtBZdOpXVXt34IVt+afD/yFiYtW6MQDcnekB1G1bPpbD+ZN3ENflHh\n /2DEDrMJaKv+lsjL+38DGd8h4etenrkJAr+fEEn+/QDZh7dl9aKr65zjIeA0DYbBQR93/Idy2Q7\n ivbVzQKBCeNadf7sLtyHH/eG0uMjY2IlUlqcoGm7knV/pGd1wq5QqeJmauH0bzHAWPbFDyAsaHU\n 3y4iz2MxIuSgqPYv4co9Ds6Q==","X-Received":["by 2002:a5d:40d1:0:b0:43d:3075:674a with SMTP id\n ffacd0b85a97d-43d307593e6mr18503879f8f.6.1775640931907;\n Wed, 08 Apr 2026 02:35:31 -0700 (PDT)","by 2002:a5d:40d1:0:b0:43d:3075:674a with SMTP id\n ffacd0b85a97d-43d307593e6mr18503837f8f.6.1775640931435;\n Wed, 08 Apr 2026 02:35:31 -0700 (PDT)"],"Date":"Wed, 8 Apr 2026 11:35:30 +0200","From":"Paolo Pisati <paolo.pisati@canonical.com>","To":"AceLan Kao <acelan.kao@canonical.com>","Subject":"APPLIED[R]: Re: [SRU][R][PATCH 0/1] System doesn't response with\n mt76 call trace","Message-ID":"<7mls5el7jh4mywz6nqk6rw7t535arswpw33uulor6w6adredmj@q4do2ah2syug>","References":"<20260408004333.236687-1-acelan.kao@canonical.com>","MIME-Version":"1.0","Content-Disposition":"inline","In-Reply-To":"<20260408004333.236687-1-acelan.kao@canonical.com>","X-BeenThere":"kernel-team@lists.ubuntu.com","X-Mailman-Version":"2.1.20","Precedence":"list","List-Id":"Kernel team discussions <kernel-team.lists.ubuntu.com>","List-Unsubscribe":"<https://lists.ubuntu.com/mailman/options/kernel-team>,\n <mailto:kernel-team-request@lists.ubuntu.com?subject=unsubscribe>","List-Archive":"<https://lists.ubuntu.com/archives/kernel-team>","List-Post":"<mailto:kernel-team@lists.ubuntu.com>","List-Help":"<mailto:kernel-team-request@lists.ubuntu.com?subject=help>","List-Subscribe":"<https://lists.ubuntu.com/mailman/listinfo/kernel-team>,\n <mailto:kernel-team-request@lists.ubuntu.com?subject=subscribe>","Cc":"kernel-team@lists.ubuntu.com","Content-Type":"text/plain; charset=\"utf-8\"","Content-Transfer-Encoding":"base64","Errors-To":"kernel-team-bounces@lists.ubuntu.com","Sender":"\"kernel-team\" <kernel-team-bounces@lists.ubuntu.com>"}}]