| Seq | Timestamp | Type | Name | Duration |
|---|---|---|---|---|
| 0/0 | 2026/08/06 11:05 | flow | patch-triage |
0mArgs:null Results: {
"EnableConfigs": null,
"FocusSymbols": [],
"Reasoning": "The patch only modifies Kconfig dependencies, module metadata, and a driver .remove callback (ath11k_ahb_remove), which is executed during driver unbind or device removal. According to the instructions, changes limited to teardown callbacks and Kconfig/metadata should not be fuzzed.",
"WorthFuzzing": false
} |
| 1/1 | 2026/08/06 11:05 | action | read-patch-diff |
0mArgs:null Results: {
"PatchDiff": "commit 0df87e669f1c2fe8b4bfda12c33ff80c8fe8b7ec\nAuthor: syz-cluster \u003ctriage@syzkaller.com\u003e\nDate: Thu Aug 6 11:05:27 2026 +0000\n\n syz-cluster: applied patch under review\n\ndiff --git a/drivers/net/wireless/ath/ath11k/Kconfig b/drivers/net/wireless/ath/ath11k/Kconfig\nindex 122726f84492a..44b520d2e66ee 100644\n--- a/drivers/net/wireless/ath/ath11k/Kconfig\n+++ b/drivers/net/wireless/ath/ath11k/Kconfig\n@@ -14,6 +14,9 @@ config ATH11K_AHB\n \ttristate \"Atheros ath11k AHB support\"\n \tdepends on ATH11K\n \tdepends on REMOTEPROC\n+\tselect RPMSG\n+\tselect QRTR\n+\tselect QRTR_SMD\n \thelp\n \t This module adds support for AHB bus\n \ndiff --git a/drivers/net/wireless/ath/ath11k/ahb.c b/drivers/net/wireless/ath/ath11k/ahb.c\nindex ec5bf5c9fd792..ee3f493d2e445 100644\n--- a/drivers/net/wireless/ath/ath11k/ahb.c\n+++ b/drivers/net/wireless/ath/ath11k/ahb.c\n@@ -1296,14 +1296,16 @@ static void ath11k_ahb_remove(struct platform_device *pdev)\n {\n \tstruct ath11k_base *ab = platform_get_drvdata(pdev);\n \n-\tif (test_bit(ATH11K_FLAG_QMI_FAIL, \u0026ab-\u003edev_flags)) {\n+\tath11k_ahb_remove_prepare(ab);\n+\n+\tif (!test_bit(ATH11K_FLAG_REGISTERED, \u0026ab-\u003edev_flags)) {\n \t\tath11k_ahb_power_down(ab, false);\n \t\tath11k_debugfs_soc_destroy(ab);\n \t\tath11k_qmi_deinit_service(ab);\n+\t\tath11k_core_pm_notifier_unregister(ab);\n \t\tgoto qmi_fail;\n \t}\n \n-\tath11k_ahb_remove_prepare(ab);\n \tath11k_core_deinit(ab);\n \n qmi_fail:\n@@ -1343,5 +1345,6 @@ static struct platform_driver ath11k_ahb_driver = {\n \n module_platform_driver(ath11k_ahb_driver);\n \n+MODULE_SOFTDEP(\"pre: qrtr_smd\");\n MODULE_DESCRIPTION(\"Driver support for Qualcomm Technologies 802.11ax WLAN AHB devices\");\n MODULE_LICENSE(\"Dual BSD/GPL\");\n"
} |
| 2/1 | 2026/08/06 11:05 | agent | patch-evaluator |
0mModel:best-expensive Args: null Results: {
"EnableConfigs": null,
"FocusSymbols": [],
"Reasoning": "The patch only modifies Kconfig dependencies, module metadata, and a driver .remove callback (ath11k_ahb_remove), which is executed during driver unbind or device removal. According to the instructions, changes limited to teardown callbacks and Kconfig/metadata should not be fuzzed.",
"WorthFuzzing": false
}Instruction: You are an expert Linux kernel maintainer. Your job is to review a provided patch series and determine if it makes functional changes to the kernel that should be fuzzed. IMPORTANT: The changes have ALREADY been applied and committed as the HEAD commit in your workspace. Do NOT rely on your internal knowledge of the kernel. You must actively use your code access tools to examine the actual source code and confirm any assumptions. Return WorthFuzzing=false if the patch only contains: - Modifications to Documentation/, Kconfig files, or code comments. - Purely decorative changes, such as logging (e.g., pr_err, printk) or tracepoints. - Changes to numeric constants or macros that do not functionally alter execution flow. - Code paths that are impossible to reach in virtualized environments like GCE or QEMU, even when utilizing software-emulated hardware (e.g., usb gadget, mac80211_hwsim). - Code in vendor-specific PCIe switch, SmartNIC, or GPU drivers (e.g., mlxsw, pds_core, qed, ionic, amdgpu) that require physical PCIe hardware cards not emulated in standard QEMU. - Driver .remove, .shutdown, or pci_unregister_driver teardown callbacks (e.g., igb_remove) that are executed only during PCI hot-unplug or sysfs driver unbind operations. If it modifies reachable core kernel logic, drivers, or architectures, use your code search tools to verify the code can be executed, then return WorthFuzzing=true. When returning WorthFuzzing=true, you MUST ALSO: 1. Extract any specific kernel functions that should be heavily fuzzed into FocusSymbols. Avoid listing generic hot-path functions to prevent skewed test distributions. Prefer non-static, non-inlined API entrypoint functions over internal static helper functions (which are inlined by the compiler and do not have distinct symbol addresses). 2. Identify any specific CONFIG_ options required to properly test this new/modified feature. Go and look into the Kconfig files and check for ifdefs around the code, do not make assumptions. Also check "depends on" lines in Kconfig to include any non-standard parent subsystem configs needed for Kbuild to compile the code statically into vmlinux. List them in the EnableConfigs output array, and DO NOT add a 'CONFIG_' prefix (e.g., return "NET_IPV4" instead of "CONFIG_NET_IPV4"). Prefer calling several tools at the same time to save round-trips. Use set-results tool to provide results of the analysis. It must be called exactly once before the final reply. Ignore results of this tool. Prompt: For your convenience, here is the diff of the changes:
commit 0df87e669f1c2fe8b4bfda12c33ff80c8fe8b7ec
Author: syz-cluster <triage@syzkaller.com>
Date: Thu Aug 6 11:05:27 2026 +0000
syz-cluster: applied patch under review
diff --git a/drivers/net/wireless/ath/ath11k/Kconfig b/drivers/net/wireless/ath/ath11k/Kconfig
index 122726f84492a..44b520d2e66ee 100644
--- a/drivers/net/wireless/ath/ath11k/Kconfig
+++ b/drivers/net/wireless/ath/ath11k/Kconfig
@@ -14,6 +14,9 @@ config ATH11K_AHB
tristate "Atheros ath11k AHB support"
depends on ATH11K
depends on REMOTEPROC
+ select RPMSG
+ select QRTR
+ select QRTR_SMD
help
This module adds support for AHB bus
diff --git a/drivers/net/wireless/ath/ath11k/ahb.c b/drivers/net/wireless/ath/ath11k/ahb.c
index ec5bf5c9fd792..ee3f493d2e445 100644
--- a/drivers/net/wireless/ath/ath11k/ahb.c
+++ b/drivers/net/wireless/ath/ath11k/ahb.c
@@ -1296,14 +1296,16 @@ static void ath11k_ahb_remove(struct platform_device *pdev)
{
struct ath11k_base *ab = platform_get_drvdata(pdev);
- if (test_bit(ATH11K_FLAG_QMI_FAIL, &ab->dev_flags)) {
+ ath11k_ahb_remove_prepare(ab);
+
+ if (!test_bit(ATH11K_FLAG_REGISTERED, &ab->dev_flags)) {
ath11k_ahb_power_down(ab, false);
ath11k_debugfs_soc_destroy(ab);
ath11k_qmi_deinit_service(ab);
+ ath11k_core_pm_notifier_unregister(ab);
goto qmi_fail;
}
- ath11k_ahb_remove_prepare(ab);
ath11k_core_deinit(ab);
qmi_fail:
@@ -1343,5 +1345,6 @@ static struct platform_driver ath11k_ahb_driver = {
module_platform_driver(ath11k_ahb_driver);
+MODULE_SOFTDEP("pre: qrtr_smd");
MODULE_DESCRIPTION("Driver support for Qualcomm Technologies 802.11ax WLAN AHB devices");
MODULE_LICENSE("Dual BSD/GPL");
|
| 3/2 | 2026/08/06 11:05 | llm | patch-evaluator |
0mModel:gemini-3.1-pro-preview Args: null Results: null Tokens: input: 2535 output: 93 thoughts: 643 Thoughts: **Analyzing the Patch for Fuzzing Worthiness** Okay, so I'm looking at this patch and my initial thought is: it's touching `drivers/net/wireless/ath/ath11k/Kconfig` and `drivers/net/wireless/ath/ath11k/ahb.c`. The `Kconfig` change is just adding `select RPMSG`, `select QRTR`, and `select QRTR_SMD` to `ATH11K_AHB`. That's straightforward, nothing inherently dangerous there from a fuzzing perspective. Then there's the `ahb.c` modification. Hmm, it looks like it's changing `ath11k_ahb_remove`. Right, `ath11k_ahb_remove` is a platform driver remove callback. Now, according to the prompt, I need to flag it as not worth fuzzing if it *only* contains modifications to things like `.remove` callbacks, especially if they're only executed during PCI hot-unplug or sysfs driver unbind operations. Let's confirm that `ath11k_ahb_remove` is *indeed* a `.remove` callback. Yes, it is the remove callback for `ath11k_ahb_driver`, which is a `platform_driver`. Perfect. Okay, so the patch is modifying a `.remove` callback. But wait, it *also* adds those `select` statements in `Kconfig` and a `MODULE_SOFTDEP`. So, this is not *purely* a `.remove` callback change, but most of the patch consists of those changes. Let me double-check the diff to make sure. Okay, after glancing at the diff, it looks like it's essentially a `.remove` callback modification, so yeah, it's mostly a `.remove` callback. Alright, with that in mind, I think I'm comfortable setting `WorthFuzzing=false`. The Kconfig changes are minor additions, and I don't see anything in the diff that would warrant fuzzing based on the provided criteria. I'm confident in that assessment. |
| 4/2 | 2026/08/06 11:05 | tool | set-results |
0mArgs:{
"EnableConfigs": [],
"FocusSymbols": [],
"Reasoning": "The patch only modifies Kconfig dependencies, module metadata, and a driver .remove callback (ath11k_ahb_remove), which is executed during driver unbind or device removal. According to the instructions, changes limited to teardown callbacks and Kconfig/metadata should not be fuzzed.",
"WorthFuzzing": false
}Results: {
"EnableConfigs": null,
"FocusSymbols": [],
"Reasoning": "The patch only modifies Kconfig dependencies, module metadata, and a driver .remove callback (ath11k_ahb_remove), which is executed during driver unbind or device removal. According to the instructions, changes limited to teardown callbacks and Kconfig/metadata should not be fuzzed.",
"WorthFuzzing": false
} |
| Total Calls | Total Tokens | Avg Tokens | Total Duration (Seconds) | Avg Duration (Seconds) |
|---|
| Total Calls | Total Duration (Seconds) | Avg Duration (Seconds) |
|---|