[Spice-devel] [PATCH spice-gtk 1/3] usb-backend: Cache isochronous value
Victor Toso
victortoso at redhat.com
Mon Sep 2 10:19:23 UTC 2019
Hi,
On Thu, Jul 25, 2019 at 02:43:51PM +0100, Frediano Ziglio wrote:
> Allows to remove _SpiceUsbDevice structure.
> _SpiceUsbDevice is only caching this value from SpiceUsbBackendDevice.
>
> Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
> ---
> src/usb-backend.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/src/usb-backend.c b/src/usb-backend.c
> index 9ac8595c..7e0e4a8a 100644
> --- a/src/usb-backend.c
> +++ b/src/usb-backend.c
> @@ -50,6 +50,8 @@ struct _SpiceUsbBackendDevice
> gint ref_count;
> SpiceUsbBackendChannel *attached_to;
> UsbDeviceInformation device_info;
> + uint8_t cached_isochronous_valid : 1;
> + uint8_t cached_isochronous : 1;
I know this might have been asked more then once but why not
using bool here?
> };
>
> struct _SpiceUsbBackend
> @@ -341,6 +343,10 @@ gboolean spice_usb_backend_device_isoch(SpiceUsbBackendDevice *dev)
> gint i, j, k;
> int rc;
>
> + if (dev->cached_isochronous_valid) {
> + return dev->cached_isochronous;
> + }
> +
> g_return_val_if_fail(libdev != NULL, 0);
>
> rc = libusb_get_active_config_descriptor(libdev, &conf_desc);
> @@ -362,6 +368,9 @@ gboolean spice_usb_backend_device_isoch(SpiceUsbBackendDevice *dev)
> }
> }
>
> + dev->cached_isochronous_valid = TRUE;
> + dev->cached_isochronous = isoc_found;
> +
> libusb_free_config_descriptor(conf_desc);
> return isoc_found;
> }
> --
> 2.20.1
>
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/spice-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/spice-devel/attachments/20190902/6b01c3b8/attachment.sig>
More information about the Spice-devel
mailing list