Linux Input/HID development
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Denis Benato" <denis.benato@linux.dev>
Cc: linux-input@vger.kernel.org, dmitry.torokhov@gmail.com
Subject: Re: [PATCH v6 09/13] HID: asus: add support for response curve
Date: Tue, 08 Sep 2026 18:13:50 +0000	[thread overview]
Message-ID: <20260908181350.B080E1F00A3E@smtp.kernel.org> (raw)
In-Reply-To: <20260908174433.74260-10-denis.benato@linux.dev>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] Suspend/resume silently drops the active response curve or incorrectly applies an unapplied staged curve.
--

commit 67958cd2657dbe5bf7b4f12a20b0fbd79fa19fbf
Author: Denis Benato <denis.benato@linux.dev>

    HID: asus: add support for response curve
    
    This commit adds support for configuring the response curve of both
    joysticks on ROG ally devices by exposing relevant sysfs attributes.

> diff --git a/drivers/hid/hid-asus.c b/drivers/hid/hid-asus.c
> index 4ed438121cc97..f338c0eed54b3 100644
> --- a/drivers/hid/hid-asus.c
> +++ b/drivers/hid/hid-asus.c

[ ... ]

> +static ssize_t response_curve_move_store(const char *buf, size_t count,
> +					 struct ally_config *cfg, bool is_left,
> +					 unsigned int idx)
> +{
> +	struct ally_joystick_resp_curve *curve;
> +	u8 value;
> +	int ret;
> +
> +	ret = kstrtou8(buf, 10, &value);
> +	if (ret)
> +		return ret;
> +
> +	if (value > 100)
> +		return -EINVAL;
> +
> +	guard(mutex)(&cfg->config_mutex);
> +
> +	if (!cfg->resp_curve_support)
> +		return -EOPNOTSUPP;
> +
> +	curve = is_left ? &cfg->left_curve : &cfg->right_curve;
> +
> +	switch (idx) {
> +	case 1:
> +		curve->entry_1.move = value;

[Severity: Medium]
Since this directly mutates the active configuration structure (cfg->left_curve
or cfg->right_curve), does this cause issues with suspend and resume if a user
has written uncommitted changes?

If userspace stages partial sysfs modifications to response_curve_move_X without
triggering the apply attribute, and a suspend/resume cycle occurs, could the
resume path be impacted?

Could we store the staged curve separately from the active curve to prevent
uncommitted edits from interfering with the system resume path?

> +		break;
> +	case 2:
> +		curve->entry_2.move = value;

[ ... ]

> @@ -2421,6 +2879,31 @@ static int hid_asus_ally_init(struct hid_device *hdev, struct ally_handheld *all
>  					 ret);
>  	}
>  
> +	if (cfg->resp_curve_support) {
> +		/*
> +		 * sysfs stages the entries without validating them: do not
> +		 * push a curve to the MCU until userspace has applied one
> +		 * that is valid.
> +		 */
> +		if (ally_resp_curve_is_valid(&cfg->left_curve)) {
> +			ret = ally_set_joystick_resp_curve(ally, hdev, JOYSTICK_LEFT,
> +							   &cfg->left_curve);

[Severity: Medium]
Will this restore an uncommitted partially edited state if it happens to be valid,
or silently drop the previously valid state if the uncommitted edits made
cfg->left_curve invalid?

> +			if (ret < 0)
> +				hid_warn(hdev,
> +					 "Failed to restore left response curve: %d\n",
> +					 ret);
> +		}
> +
> +		if (ally_resp_curve_is_valid(&cfg->right_curve)) {
> +			ret = ally_set_joystick_resp_curve(ally, hdev, JOYSTICK_RIGHT,
> +							   &cfg->right_curve);
> +			if (ret < 0)
> +				hid_warn(hdev,
> +					 "Failed to restore right response curve: %d\n",
> +					 ret);
> +		}
> +	}
> +
>  	return 0;
>  }

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260908174433.74260-1-denis.benato@linux.dev?part=9

  reply	other threads:[~2026-09-08 18:13 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-08 17:44 [PATCH v6 00/13] HID: asus: add support for ROG Ally handhelds Denis Benato
2026-09-08 17:44 ` [PATCH v6 01/13] HID: asus: do not send keyboard init reports to touchpads Denis Benato
2026-09-08 17:44 ` [PATCH v6 02/13] HID: asus: reinitialize the device after exiting a sleep state Denis Benato
2026-09-08 18:00   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 03/13] HID: asus: add support for ROG Ally handhelds Denis Benato
2026-09-08 17:57   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 04/13] HID: asus: add gamepad configuration Denis Benato
2026-09-08 18:01   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 05/13] HID: asus: add vibration strength configuration Denis Benato
2026-09-08 17:44 ` [PATCH v6 06/13] HID: asus: add joysticks inner and outer range configuration Denis Benato
2026-09-08 17:44 ` [PATCH v6 07/13] HID: asus: add triggers " Denis Benato
2026-09-08 17:44 ` [PATCH v6 08/13] HID: asus: add joysticks anti-deadzone configuration Denis Benato
2026-09-08 17:44 ` [PATCH v6 09/13] HID: asus: add support for response curve Denis Benato
2026-09-08 18:13   ` sashiko-bot [this message]
2026-09-08 17:44 ` [PATCH v6 10/13] HID: asus: add support to force feedback Denis Benato
2026-09-08 18:01   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 11/13] HID: asus: add support for gamepad mode Denis Benato
2026-09-08 17:44 ` [PATCH v6 12/13] HID: asus: add support for turbo buttons Denis Benato
2026-09-08 18:08   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 13/13] HID: asus: add support for btn remapping Denis Benato
2026-09-08 18:07   ` sashiko-bot

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=20260908181350.B080E1F00A3E@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=denis.benato@linux.dev \
    --cc=dmitry.torokhov@gmail.com \
    --cc=linux-input@vger.kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /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