AI Trajectory


Trajectory: (Expand/Collapse All)
Seq Timestamp Type Name Duration
0/0 2026/08/01 20:04 flow patch-triage
0m Args:
null

Results:
{
  "EnableConfigs": null,
  "FocusSymbols": [],
  "Reasoning": "The patch only renames pwrseq_power_on/off to pwrseq_enable/disable across the power sequencing subsystem and its consumers. There are no functional changes to the execution flow.",
  "WorthFuzzing": false
}

1/1 2026/08/01 20:04 action read-patch-diff
0m Args:
null

Results:
{
  "PatchDiff": "commit 24b2b080f3102b46cb2baf379a777edc1bcb3161\nAuthor: syz-cluster \u003ctriage@syzkaller.com\u003e\nDate:   Sat Aug 1 20:04:41 2026 +0000\n\n    syz-cluster: applied patch under review\n\ndiff --git a/Documentation/driver-api/pwrseq.rst b/Documentation/driver-api/pwrseq.rst\nindex ad18b2326b689..e1056d1418451 100644\n--- a/Documentation/driver-api/pwrseq.rst\n+++ b/Documentation/driver-api/pwrseq.rst\n@@ -50,9 +50,9 @@ Consumer interface\n The consumer API is aimed to be as simple as possible. The driver interested in\n getting a descriptor from the power sequencer should call pwrseq_get() and\n specify the name of the target it wants to reach in the sequence after calling\n-pwrseq_power_up(). The descriptor can be released by calling pwrseq_put() and\n+pwrseq_enable(). The descriptor can be released by calling pwrseq_put() and\n the consumer can request the powering down of its target with\n-pwrseq_power_off(). Note that there is no guarantee that pwrseq_power_off()\n+pwrseq_disable(). Note that there is no guarantee that pwrseq_disable()\n will have any effect as there may be multiple users of the underlying resources\n who may keep them active.\n \ndiff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c\nindex 345f602e9ce23..faa964735adb1 100644\n--- a/drivers/bluetooth/hci_qca.c\n+++ b/drivers/bluetooth/hci_qca.c\n@@ -2259,7 +2259,7 @@ static void qca_power_off(struct hci_uart *hu)\n \t}\n \n \tif (power \u0026\u0026 power-\u003epwrseq) {\n-\t\tpwrseq_power_off(power-\u003epwrseq);\n+\t\tpwrseq_disable(power-\u003epwrseq);\n \t\tset_bit(QCA_BT_OFF, \u0026qca-\u003eflags);\n \t\treturn;\n         }\n@@ -2319,7 +2319,7 @@ static int qca_regulator_enable(struct qca_serdev *qcadev)\n \tint ret;\n \n \tif (power-\u003epwrseq)\n-\t\treturn pwrseq_power_on(power-\u003epwrseq);\n+\t\treturn pwrseq_enable(power-\u003epwrseq);\n \n \t/* Already enabled */\n \tif (power-\u003evregs_on)\ndiff --git a/drivers/gpu/drm/imagination/pvr_power.c b/drivers/gpu/drm/imagination/pvr_power.c\nindex a71d5b35601e7..eb4b6ecdf4f4d 100644\n--- a/drivers/gpu/drm/imagination/pvr_power.c\n+++ b/drivers/gpu/drm/imagination/pvr_power.c\n@@ -352,12 +352,12 @@ static int pvr_power_init_pwrseq(struct pvr_device *pvr_dev)\n \n static int pvr_power_on_sequence_pwrseq(struct pvr_device *pvr_dev)\n {\n-\treturn pwrseq_power_on(pvr_dev-\u003epwrseq);\n+\treturn pwrseq_enable(pvr_dev-\u003epwrseq);\n }\n \n static int pvr_power_off_sequence_pwrseq(struct pvr_device *pvr_dev)\n {\n-\treturn pwrseq_power_off(pvr_dev-\u003epwrseq);\n+\treturn pwrseq_disable(pvr_dev-\u003epwrseq);\n }\n \n const struct pvr_power_sequence_ops pvr_power_sequence_ops_pwrseq = {\ndiff --git a/drivers/net/wireless/ath/ath10k/snoc.c b/drivers/net/wireless/ath/ath10k/snoc.c\nindex 3106502275781..f28fed89cc28b 100644\n--- a/drivers/net/wireless/ath/ath10k/snoc.c\n+++ b/drivers/net/wireless/ath/ath10k/snoc.c\n@@ -1025,7 +1025,7 @@ static int ath10k_hw_power_on(struct ath10k *ar)\n \n \tath10k_dbg(ar, ATH10K_DBG_SNOC, \"soc power on\\n\");\n \n-\tret = pwrseq_power_on(ar_snoc-\u003epwrseq);\n+\tret = pwrseq_enable(ar_snoc-\u003epwrseq);\n \tif (ret)\n \t\treturn ret;\n \n@@ -1042,7 +1042,7 @@ static int ath10k_hw_power_on(struct ath10k *ar)\n vreg_off:\n \tregulator_bulk_disable(ar_snoc-\u003enum_vregs, ar_snoc-\u003evregs);\n pwrseq_off:\n-\tpwrseq_power_off(ar_snoc-\u003epwrseq);\n+\tpwrseq_disable(ar_snoc-\u003epwrseq);\n \n \treturn ret;\n }\n@@ -1060,7 +1060,7 @@ static int ath10k_hw_power_off(struct ath10k *ar)\n \tret_vreg = regulator_bulk_disable(ar_snoc-\u003enum_vregs, ar_snoc-\u003evregs);\n \n \tif (ar_snoc-\u003epwrseq)\n-\t\tret_seq = pwrseq_power_off(ar_snoc-\u003epwrseq);\n+\t\tret_seq = pwrseq_disable(ar_snoc-\u003epwrseq);\n \n \treturn ret_vreg ? : ret_seq;\n }\ndiff --git a/drivers/pci/pwrctrl/generic.c b/drivers/pci/pwrctrl/generic.c\nindex a7e599d841e62..d56171e0ee244 100644\n--- a/drivers/pci/pwrctrl/generic.c\n+++ b/drivers/pci/pwrctrl/generic.c\n@@ -29,7 +29,7 @@ static int slot_pwrctrl_power_on(struct pci_pwrctrl *pwrctrl)\n \tint ret;\n \n \tif (slot-\u003epwrseq) {\n-\t\tpwrseq_power_on(slot-\u003epwrseq);\n+\t\tpwrseq_enable(slot-\u003epwrseq);\n \t\treturn 0;\n \t}\n \n@@ -48,7 +48,7 @@ static int slot_pwrctrl_power_off(struct pci_pwrctrl *pwrctrl)\n \t\t\t\t\t\tstruct slot_pwrctrl, pwrctrl);\n \n \tif (slot-\u003epwrseq) {\n-\t\tpwrseq_power_off(slot-\u003epwrseq);\n+\t\tpwrseq_disable(slot-\u003epwrseq);\n \t\treturn 0;\n \t}\n \ndiff --git a/drivers/pci/pwrctrl/pci-pwrctrl-pwrseq.c b/drivers/pci/pwrctrl/pci-pwrctrl-pwrseq.c\nindex a308bf4b5fc01..c5ced87944b6c 100644\n--- a/drivers/pci/pwrctrl/pci-pwrctrl-pwrseq.c\n+++ b/drivers/pci/pwrctrl/pci-pwrctrl-pwrseq.c\n@@ -56,7 +56,7 @@ static int pwrseq_pwrctrl_power_on(struct pci_pwrctrl *pwrctrl)\n \tstruct pwrseq_pwrctrl *pwrseq = container_of(pwrctrl,\n \t\t\t\t\t   struct pwrseq_pwrctrl, pwrctrl);\n \n-\treturn pwrseq_power_on(pwrseq-\u003epwrseq);\n+\treturn pwrseq_enable(pwrseq-\u003epwrseq);\n }\n \n static int pwrseq_pwrctrl_power_off(struct pci_pwrctrl *pwrctrl)\n@@ -64,7 +64,7 @@ static int pwrseq_pwrctrl_power_off(struct pci_pwrctrl *pwrctrl)\n \tstruct pwrseq_pwrctrl *pwrseq = container_of(pwrctrl,\n \t\t\t\t\t   struct pwrseq_pwrctrl, pwrctrl);\n \n-\treturn pwrseq_power_off(pwrseq-\u003epwrseq);\n+\treturn pwrseq_disable(pwrseq-\u003epwrseq);\n }\n \n static int pwrseq_pwrctrl_probe(struct platform_device *pdev)\ndiff --git a/drivers/power/sequencing/core.c b/drivers/power/sequencing/core.c\nindex 02f42da915985..721e888b658d1 100644\n--- a/drivers/power/sequencing/core.c\n+++ b/drivers/power/sequencing/core.c\n@@ -708,7 +708,7 @@ void pwrseq_put(struct pwrseq_desc *desc)\n \tpwrseq = desc-\u003epwrseq;\n \n \tif (desc-\u003epowered_on)\n-\t\tpwrseq_power_off(desc);\n+\t\tpwrseq_disable(desc);\n \n \tkfree(desc);\n \tmodule_put(pwrseq-\u003eowner);\n@@ -874,7 +874,7 @@ static int pwrseq_unit_disable(struct pwrseq_device *pwrseq,\n }\n \n /**\n- * pwrseq_power_on() - Issue a power-on request on behalf of the consumer\n+ * pwrseq_enable() - Issue a power-on request on behalf of the consumer\n  *                     device.\n  * @desc: Descriptor referencing the power sequencer.\n  *\n@@ -887,7 +887,7 @@ static int pwrseq_unit_disable(struct pwrseq_device *pwrseq,\n  * Returns:\n  * 0 on success, negative error number on failure.\n  */\n-int pwrseq_power_on(struct pwrseq_desc *desc)\n+int pwrseq_enable(struct pwrseq_desc *desc)\n {\n \tstruct pwrseq_device *pwrseq;\n \tstruct pwrseq_target *target;\n@@ -925,14 +925,14 @@ int pwrseq_power_on(struct pwrseq_desc *desc)\n \n \treturn ret;\n }\n-EXPORT_SYMBOL_GPL(pwrseq_power_on);\n+EXPORT_SYMBOL_GPL(pwrseq_enable);\n \n /**\n- * pwrseq_power_off() - Issue a power-off request on behalf of the consumer\n+ * pwrseq_disable() - Issue a power-off request on behalf of the consumer\n  *                      device.\n  * @desc: Descriptor referencing the power sequencer.\n  *\n- * This undoes the effects of pwrseq_power_on(). It issues a power-off request\n+ * This undoes the effects of pwrseq_enable(). It issues a power-off request\n  * on behalf of the consumer and when the last remaining user does so, the\n  * power-down sequence will be started. If one is in progress, the function\n  * will block until it's complete and then return.\n@@ -940,7 +940,7 @@ EXPORT_SYMBOL_GPL(pwrseq_power_on);\n  * Returns:\n  * 0 on success, negative error number on failure.\n  */\n-int pwrseq_power_off(struct pwrseq_desc *desc)\n+int pwrseq_disable(struct pwrseq_desc *desc)\n {\n \tstruct pwrseq_device *pwrseq;\n \tstruct pwrseq_unit *unit;\n@@ -966,7 +966,7 @@ int pwrseq_power_off(struct pwrseq_desc *desc)\n \n \treturn ret;\n }\n-EXPORT_SYMBOL_GPL(pwrseq_power_off);\n+EXPORT_SYMBOL_GPL(pwrseq_disable);\n \n /**\n  * pwrseq_to_device() - Get the pwrseq device pointer from a descriptor.\ndiff --git a/include/linux/pwrseq/consumer.h b/include/linux/pwrseq/consumer.h\nindex 3c907c9e1885d..16fad5f3e3ab5 100644\n--- a/include/linux/pwrseq/consumer.h\n+++ b/include/linux/pwrseq/consumer.h\n@@ -20,8 +20,8 @@ void pwrseq_put(struct pwrseq_desc *desc);\n struct pwrseq_desc * __must_check\n devm_pwrseq_get(struct device *dev, const char *target);\n \n-int pwrseq_power_on(struct pwrseq_desc *desc);\n-int pwrseq_power_off(struct pwrseq_desc *desc);\n+int pwrseq_enable(struct pwrseq_desc *desc);\n+int pwrseq_disable(struct pwrseq_desc *desc);\n \n struct device *pwrseq_to_device(struct pwrseq_desc *desc);\n \n@@ -43,12 +43,12 @@ devm_pwrseq_get(struct device *dev, const char *target)\n \treturn ERR_PTR(-ENOSYS);\n }\n \n-static inline int pwrseq_power_on(struct pwrseq_desc *desc)\n+static inline int pwrseq_enable(struct pwrseq_desc *desc)\n {\n \treturn -ENOSYS;\n }\n \n-static inline int pwrseq_power_off(struct pwrseq_desc *desc)\n+static inline int pwrseq_disable(struct pwrseq_desc *desc)\n {\n \treturn -ENOSYS;\n }\n"
}

2/1 2026/08/01 20:04 agent patch-evaluator
0m Model:
best-expensive

Args:
null

Results:
{
  "EnableConfigs": null,
  "FocusSymbols": [],
  "Reasoning": "The patch only renames pwrseq_power_on/off to pwrseq_enable/disable across the power sequencing subsystem and its consumers. There are no functional changes to the execution flow.",
  "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 24b2b080f3102b46cb2baf379a777edc1bcb3161
Author: syz-cluster <triage@syzkaller.com>
Date:   Sat Aug 1 20:04:41 2026 +0000

    syz-cluster: applied patch under review

diff --git a/Documentation/driver-api/pwrseq.rst b/Documentation/driver-api/pwrseq.rst
index ad18b2326b689..e1056d1418451 100644
--- a/Documentation/driver-api/pwrseq.rst
+++ b/Documentation/driver-api/pwrseq.rst
@@ -50,9 +50,9 @@ Consumer interface
 The consumer API is aimed to be as simple as possible. The driver interested in
 getting a descriptor from the power sequencer should call pwrseq_get() and
 specify the name of the target it wants to reach in the sequence after calling
-pwrseq_power_up(). The descriptor can be released by calling pwrseq_put() and
+pwrseq_enable(). The descriptor can be released by calling pwrseq_put() and
 the consumer can request the powering down of its target with
-pwrseq_power_off(). Note that there is no guarantee that pwrseq_power_off()
+pwrseq_disable(). Note that there is no guarantee that pwrseq_disable()
 will have any effect as there may be multiple users of the underlying resources
 who may keep them active.
 
diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c
index 345f602e9ce23..faa964735adb1 100644
--- a/drivers/bluetooth/hci_qca.c
+++ b/drivers/bluetooth/hci_qca.c
@@ -2259,7 +2259,7 @@ static void qca_power_off(struct hci_uart *hu)
 	}
 
 	if (power && power->pwrseq) {
-		pwrseq_power_off(power->pwrseq);
+		pwrseq_disable(power->pwrseq);
 		set_bit(QCA_BT_OFF, &qca->flags);
 		return;
         }
@@ -2319,7 +2319,7 @@ static int qca_regulator_enable(struct qca_serdev *qcadev)
 	int ret;
 
 	if (power->pwrseq)
-		return pwrseq_power_on(power->pwrseq);
+		return pwrseq_enable(power->pwrseq);
 
 	/* Already enabled */
 	if (power->vregs_on)
diff --git a/drivers/gpu/drm/imagination/pvr_power.c b/drivers/gpu/drm/imagination/pvr_power.c
index a71d5b35601e7..eb4b6ecdf4f4d 100644
--- a/drivers/gpu/drm/imagination/pvr_power.c
+++ b/drivers/gpu/drm/imagination/pvr_power.c
@@ -352,12 +352,12 @@ static int pvr_power_init_pwrseq(struct pvr_device *pvr_dev)
 
 static int pvr_power_on_sequence_pwrseq(struct pvr_device *pvr_dev)
 {
-	return pwrseq_power_on(pvr_dev->pwrseq);
+	return pwrseq_enable(pvr_dev->pwrseq);
 }
 
 static int pvr_power_off_sequence_pwrseq(struct pvr_device *pvr_dev)
 {
-	return pwrseq_power_off(pvr_dev->pwrseq);
+	return pwrseq_disable(pvr_dev->pwrseq);
 }
 
 const struct pvr_power_sequence_ops pvr_power_sequence_ops_pwrseq = {
diff --git a/drivers/net/wireless/ath/ath10k/snoc.c b/drivers/net/wireless/ath/ath10k/snoc.c
index 3106502275781..f28fed89cc28b 100644
--- a/drivers/net/wireless/ath/ath10k/snoc.c
+++ b/drivers/net/wireless/ath/ath10k/snoc.c
@@ -1025,7 +1025,7 @@ static int ath10k_hw_power_on(struct ath10k *ar)
 
 	ath10k_dbg(ar, ATH10K_DBG_SNOC, "soc power on\n");
 
-	ret = pwrseq_power_on(ar_snoc->pwrseq);
+	ret = pwrseq_enable(ar_snoc->pwrseq);
 	if (ret)
 		return ret;
 
@@ -1042,7 +1042,7 @@ static int ath10k_hw_power_on(struct ath10k *ar)
 vreg_off:
 	regulator_bulk_disable(ar_snoc->num_vregs, ar_snoc->vregs);
 pwrseq_off:
-	pwrseq_power_off(ar_snoc->pwrseq);
+	pwrseq_disable(ar_snoc->pwrseq);
 
 	return ret;
 }
@@ -1060,7 +1060,7 @@ static int ath10k_hw_power_off(struct ath10k *ar)
 	ret_vreg = regulator_bulk_disable(ar_snoc->num_vregs, ar_snoc->vregs);
 
 	if (ar_snoc->pwrseq)
-		ret_seq = pwrseq_power_off(ar_snoc->pwrseq);
+		ret_seq = pwrseq_disable(ar_snoc->pwrseq);
 
 	return ret_vreg ? : ret_seq;
 }
diff --git a/drivers/pci/pwrctrl/generic.c b/drivers/pci/pwrctrl/generic.c
index a7e599d841e62..d56171e0ee244 100644
--- a/drivers/pci/pwrctrl/generic.c
+++ b/drivers/pci/pwrctrl/generic.c
@@ -29,7 +29,7 @@ static int slot_pwrctrl_power_on(struct pci_pwrctrl *pwrctrl)
 	int ret;
 
 	if (slot->pwrseq) {
-		pwrseq_power_on(slot->pwrseq);
+		pwrseq_enable(slot->pwrseq);
 		return 0;
 	}
 
@@ -48,7 +48,7 @@ static int slot_pwrctrl_power_off(struct pci_pwrctrl *pwrctrl)
 						struct slot_pwrctrl, pwrctrl);
 
 	if (slot->pwrseq) {
-		pwrseq_power_off(slot->pwrseq);
+		pwrseq_disable(slot->pwrseq);
 		return 0;
 	}
 
diff --git a/drivers/pci/pwrctrl/pci-pwrctrl-pwrseq.c b/drivers/pci/pwrctrl/pci-pwrctrl-pwrseq.c
index a308bf4b5fc01..c5ced87944b6c 100644
--- a/drivers/pci/pwrctrl/pci-pwrctrl-pwrseq.c
+++ b/drivers/pci/pwrctrl/pci-pwrctrl-pwrseq.c
@@ -56,7 +56,7 @@ static int pwrseq_pwrctrl_power_on(struct pci_pwrctrl *pwrctrl)
 	struct pwrseq_pwrctrl *pwrseq = container_of(pwrctrl,
 					   struct pwrseq_pwrctrl, pwrctrl);
 
-	return pwrseq_power_on(pwrseq->pwrseq);
+	return pwrseq_enable(pwrseq->pwrseq);
 }
 
 static int pwrseq_pwrctrl_power_off(struct pci_pwrctrl *pwrctrl)
@@ -64,7 +64,7 @@ static int pwrseq_pwrctrl_power_off(struct pci_pwrctrl *pwrctrl)
 	struct pwrseq_pwrctrl *pwrseq = container_of(pwrctrl,
 					   struct pwrseq_pwrctrl, pwrctrl);
 
-	return pwrseq_power_off(pwrseq->pwrseq);
+	return pwrseq_disable(pwrseq->pwrseq);
 }
 
 static int pwrseq_pwrctrl_probe(struct platform_device *pdev)
diff --git a/drivers/power/sequencing/core.c b/drivers/power/sequencing/core.c
index 02f42da915985..721e888b658d1 100644
--- a/drivers/power/sequencing/core.c
+++ b/drivers/power/sequencing/core.c
@@ -708,7 +708,7 @@ void pwrseq_put(struct pwrseq_desc *desc)
 	pwrseq = desc->pwrseq;
 
 	if (desc->powered_on)
-		pwrseq_power_off(desc);
+		pwrseq_disable(desc);
 
 	kfree(desc);
 	module_put(pwrseq->owner);
@@ -874,7 +874,7 @@ static int pwrseq_unit_disable(struct pwrseq_device *pwrseq,
 }
 
 /**
- * pwrseq_power_on() - Issue a power-on request on behalf of the consumer
+ * pwrseq_enable() - Issue a power-on request on behalf of the consumer
  *                     device.
  * @desc: Descriptor referencing the power sequencer.
  *
@@ -887,7 +887,7 @@ static int pwrseq_unit_disable(struct pwrseq_device *pwrseq,
  * Returns:
  * 0 on success, negative error number on failure.
  */
-int pwrseq_power_on(struct pwrseq_desc *desc)
+int pwrseq_enable(struct pwrseq_desc *desc)
 {
 	struct pwrseq_device *pwrseq;
 	struct pwrseq_target *target;
@@ -925,14 +925,14 @@ int pwrseq_power_on(struct pwrseq_desc *desc)
 
 	return ret;
 }
-EXPORT_SYMBOL_GPL(pwrseq_power_on);
+EXPORT_SYMBOL_GPL(pwrseq_enable);
 
 /**
- * pwrseq_power_off() - Issue a power-off request on behalf of the consumer
+ * pwrseq_disable() - Issue a power-off request on behalf of the consumer
  *                      device.
  * @desc: Descriptor referencing the power sequencer.
  *
- * This undoes the effects of pwrseq_power_on(). It issues a power-off request
+ * This undoes the effects of pwrseq_enable(). It issues a power-off request
  * on behalf of the consumer and when the last remaining user does so, the
  * power-down sequence will be started. If one is in progress, the function
  * will block until it's complete and then return.
@@ -940,7 +940,7 @@ EXPORT_SYMBOL_GPL(pwrseq_power_on);
  * Returns:
  * 0 on success, negative error number on failure.
  */
-int pwrseq_power_off(struct pwrseq_desc *desc)
+int pwrseq_disable(struct pwrseq_desc *desc)
 {
 	struct pwrseq_device *pwrseq;
 	struct pwrseq_unit *unit;
@@ -966,7 +966,7 @@ int pwrseq_power_off(struct pwrseq_desc *desc)
 
 	return ret;
 }
-EXPORT_SYMBOL_GPL(pwrseq_power_off);
+EXPORT_SYMBOL_GPL(pwrseq_disable);
 
 /**
  * pwrseq_to_device() - Get the pwrseq device pointer from a descriptor.
diff --git a/include/linux/pwrseq/consumer.h b/include/linux/pwrseq/consumer.h
index 3c907c9e1885d..16fad5f3e3ab5 100644
--- a/include/linux/pwrseq/consumer.h
+++ b/include/linux/pwrseq/consumer.h
@@ -20,8 +20,8 @@ void pwrseq_put(struct pwrseq_desc *desc);
 struct pwrseq_desc * __must_check
 devm_pwrseq_get(struct device *dev, const char *target);
 
-int pwrseq_power_on(struct pwrseq_desc *desc);
-int pwrseq_power_off(struct pwrseq_desc *desc);
+int pwrseq_enable(struct pwrseq_desc *desc);
+int pwrseq_disable(struct pwrseq_desc *desc);
 
 struct device *pwrseq_to_device(struct pwrseq_desc *desc);
 
@@ -43,12 +43,12 @@ devm_pwrseq_get(struct device *dev, const char *target)
 	return ERR_PTR(-ENOSYS);
 }
 
-static inline int pwrseq_power_on(struct pwrseq_desc *desc)
+static inline int pwrseq_enable(struct pwrseq_desc *desc)
 {
 	return -ENOSYS;
 }
 
-static inline int pwrseq_power_off(struct pwrseq_desc *desc)
+static inline int pwrseq_disable(struct pwrseq_desc *desc)
 {
 	return -ENOSYS;
 }

3/2 2026/08/01 20:04 llm patch-evaluator
0m Model:
gemini-3.1-pro-preview

Args:
null

Results:
null

Tokens:
							input: 5341
							output: 72
							thoughts: 666
						

Thoughts:
**Analyzing a Power Sequencing Subsystem Rename Patch**

Okay, so I've got this patch in front of me that's renaming `pwrseq_power_on` to `pwrseq_enable` and `pwrseq_power_off` to `pwrseq_disable`. My initial thought is, "Pure renaming, right? No functional changes?" Let's dig in.

The diff shows updates to the documentation, which is expected. Then, it's a sweep through various consumer files like `hci_qca.c`, `pvr_power.c`, `ath10k/snoc.c`, etc., simply replacing those old function names with the new ones. The `power/sequencing/core.c` file itself gets the function definitions renamed, along with corresponding `EXPORT_SYMBOL_GPL` updates. And of course, the header file (`include/linux/pwrseq/consumer.h`) reflects the same change in declarations and dummy functions.

So, functionally, it looks like a clean no-op, right? Just renaming functions. No alteration to execution flow. Wait a minute, does this need fuzzing? I recall the guidelines... something about "WorthFuzzing=false" if it's documentation, comments, decorative changes, or non-functional numeric changes... "Purely decorative changes" that don't functionally alter execution flow. Renaming functions doesn't change execution flow, so I am leaning toward no.

Let's do a more thorough check and make sure there are truly no other hidden changes. Scrolling through the core definitions again confirms the clean renaming:
```c
-int pwrseq_power_on(struct pwrseq_desc *desc)
+int pwrseq_enable(struct pwrseq_desc *desc)
```
```c
-int pwrseq_power_off(struct pwrseq_desc *desc)
+int pwrseq_disable(struct pwrseq_desc *desc)
```
And in `hci_qca.c`:
```c
-		pwrseq_power_off(power->pwrseq);
+		pwrseq_disable(power->pwrseq);
```
```c
-		return pwrseq_power_on(power->pwrseq);
+		return pwrseq_enable(power->pwrseq);
```
Yep, no other changes. No logic tweaks, no new parameters, no data structure modifications. This is a purely non-functional refactoring.

Therefore, my conclusion is that this patch doesn't warrant fuzzing. I'll return `WorthFuzzing=false` and justify it with a clear reason: "The patch only renames `pwrseq_power_on/off` to `pwrseq_enable/disable` across the power sequencing subsystem and its consumers. There are no functional changes to the execution flow." Done.



4/2 2026/08/01 20:04 tool set-results
0m Args:
{
  "EnableConfigs": [],
  "FocusSymbols": [],
  "Reasoning": "The patch only renames pwrseq_power_on/off to pwrseq_enable/disable across the power sequencing subsystem and its consumers. There are no functional changes to the execution flow.",
  "WorthFuzzing": false
}

Results:
{
  "EnableConfigs": null,
  "FocusSymbols": [],
  "Reasoning": "The patch only renames pwrseq_power_on/off to pwrseq_enable/disable across the power sequencing subsystem and its consumers. There are no functional changes to the execution flow.",
  "WorthFuzzing": false
}

LLM Calls Summary:
Total Calls Total Tokens Avg Tokens Total Duration (Seconds) Avg Duration (Seconds)
Tool Calls Summary:
Total Calls Total Duration (Seconds) Avg Duration (Seconds)