public inbox for linux-usb@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Tudor Ambarus <tudor.ambarus@linaro.org>
Cc: hgajjar@de.adit-jv.com, willmcvicker@google.com,
	paul@crapouillou.net, brauner@kernel.org,
	christian.koenig@amd.com, jlayton@kernel.org, kees@kernel.org,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	andre.draszik@linaro.org, peter.griffin@linaro.org
Subject: Re: [PATCH 1/2] usb: gadget: f_fs: restore ffs_func_disable() functionality
Date: Wed, 7 Aug 2024 12:40:10 +0200	[thread overview]
Message-ID: <2024080701-driveway-majorette-d1d5@gregkh> (raw)
In-Reply-To: <20240802140428.2000312-2-tudor.ambarus@linaro.org>

On Fri, Aug 02, 2024 at 02:04:27PM +0000, Tudor Ambarus wrote:
> The blamed commit made ffs_func_disable() always return -EINVAL as the
> method calls ffs_func_set_alt() with the ``alt`` argument being
> ``(unsigned)-1``, which is always greater than MAX_ALT_SETTINGS.
> Use the MAX_ALT_SETTINGS check just in the f->set_alt() code path,
> f->disable() doesn't care about the ``alt`` parameter.
> 
> Make a surgical fix, but really the f->disable() code shall be pulled
> out from ffs_func_set_alt(), the code will become clearer. A patch will
> follow.
> 
> Note that ffs_func_disable() always returning -EINVAL made pixel6 crash
> on USB disconnect.
> 
> Fixes: 2f550553e23c ("usb: gadget: f_fs: Add the missing get_alt callback")
> Reported-by: William McVicker <willmcvicker@google.com>
> Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
> ---
>  drivers/usb/gadget/function/f_fs.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/usb/gadget/function/f_fs.c b/drivers/usb/gadget/function/f_fs.c
> index d8b096859337..0bfed1741b3e 100644
> --- a/drivers/usb/gadget/function/f_fs.c
> +++ b/drivers/usb/gadget/function/f_fs.c
> @@ -3731,10 +3731,10 @@ static int ffs_func_set_alt(struct usb_function *f,
>  	struct ffs_data *ffs = func->ffs;
>  	int ret = 0, intf;
>  
> -	if (alt > MAX_ALT_SETTINGS)
> -		return -EINVAL;
> -
>  	if (alt != (unsigned)-1) {
> +		if (alt > MAX_ALT_SETTINGS)
> +			return -EINVAL;
> +
>  		intf = ffs_func_revmap_intf(func, interface);
>  		if (intf < 0)
>  			return intf;
> -- 
> 2.46.0.rc2.264.g509ed76dc8-goog
> 
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- You have marked a patch with a "Fixes:" tag for a commit that is in an
  older released kernel, yet you do not have a cc: stable line in the
  signed-off-by area at all, which means that the patch will not be
  applied to any older kernel releases.  To properly fix this, please
  follow the documented rules in the
  Documentation/process/stable-kernel-rules.rst file for how to resolve
  this.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

  reply	other threads:[~2024-08-07 10:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-02 14:04 [PATCH 0/2] usb: gadget: f_fs: restore ffs_func_disable() functionality Tudor Ambarus
2024-08-02 14:04 ` [PATCH 1/2] " Tudor Ambarus
2024-08-07 10:40   ` Greg KH [this message]
2024-08-02 14:04 ` [PATCH 2/2] usb: gadget: f_fs: pull out f->disable() from ffs_func_set_alt() Tudor Ambarus

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=2024080701-driveway-majorette-d1d5@gregkh \
    --to=gregkh@linuxfoundation.org \
    --cc=andre.draszik@linaro.org \
    --cc=brauner@kernel.org \
    --cc=christian.koenig@amd.com \
    --cc=hgajjar@de.adit-jv.com \
    --cc=jlayton@kernel.org \
    --cc=kees@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=paul@crapouillou.net \
    --cc=peter.griffin@linaro.org \
    --cc=tudor.ambarus@linaro.org \
    --cc=willmcvicker@google.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