Re: [PATCH] usb-host: use correct altsetting in usb_host_ep_update

2021-02-18 Thread Nick Rosbrook
On Thu, Feb 18, 2021 at 12:52:51PM +0100, Gerd Hoffmann wrote: > On Thu, Feb 11, 2021 at 11:05:41AM -0500, Nick Rosbrook wrote: > > Hi, > > > > Just wanted to ping this. Patchwork link is here: > > https://patchwork.kernel.org/project/qemu-devel/patch/20210201213021.500277-1-rosbro...@ainfosec.com

Re: [PATCH] usb-host: use correct altsetting in usb_host_ep_update

2021-02-18 Thread Gerd Hoffmann
On Thu, Feb 11, 2021 at 11:05:41AM -0500, Nick Rosbrook wrote: > Hi, > > Just wanted to ping this. Patchwork link is here: > https://patchwork.kernel.org/project/qemu-devel/patch/20210201213021.500277-1-rosbro...@ainfosec.com/. Pull request sent now. Not much usb activity these days ... thanks,

Re: [PATCH] usb-host: use correct altsetting in usb_host_ep_update

2021-02-11 Thread Nick Rosbrook
Hi, Just wanted to ping this. Patchwork link is here: https://patchwork.kernel.org/project/qemu-devel/patch/20210201213021.500277-1-rosbro...@ainfosec.com/. Thanks, NR On Mon, Feb 1, 2021 at 4:30 PM Nick Rosbrook wrote: > > In order to keep track of the alternate setting that should be used for

[PATCH] usb-host: use correct altsetting in usb_host_ep_update

2021-02-01 Thread Nick Rosbrook
In order to keep track of the alternate setting that should be used for a given interface, the USBDevice struct keeps an array of alternate setting values, which is indexed by the interface number. In usb_host_set_interface, when this array is updated, usb_host_ep_update is called as a result. Howe