[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Yvzy0VOfKkKod0OV@nvidia.com>
Date: Wed, 17 Aug 2022 10:53:21 -0300
From: Jason Gunthorpe <jgg@...dia.com>
To: Abhishek Sahu <abhsahu@...dia.com>
Cc: Alex Williamson <alex.williamson@...hat.com>,
Cornelia Huck <cohuck@...hat.com>,
Yishai Hadas <yishaih@...dia.com>,
Shameer Kolothum <shameerali.kolothum.thodi@...wei.com>,
Kevin Tian <kevin.tian@...el.com>,
"Rafael J . Wysocki" <rafael@...nel.org>,
Max Gurtovoy <mgurtovoy@...dia.com>,
Bjorn Helgaas <bhelgaas@...gle.com>,
linux-kernel@...r.kernel.org, kvm@...r.kernel.org,
linux-pm@...r.kernel.org, linux-pci@...r.kernel.org
Subject: Re: [PATCH v6 5/5] vfio/pci: Implement
VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP
On Wed, Aug 17, 2022 at 10:43:23AM +0530, Abhishek Sahu wrote:
> +static int
> +vfio_pci_core_pm_entry_with_wakeup(struct vfio_device *device, u32 flags,
> + void __user *arg, size_t argsz)
This should be
struct vfio_device_low_power_entry_with_wakeup __user *arg
> @@ -1336,6 +1389,9 @@ int vfio_pci_core_ioctl_feature(struct vfio_device *device, u32 flags,
> return vfio_pci_core_feature_token(device, flags, arg, argsz);
> case VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY:
> return vfio_pci_core_pm_entry(device, flags, arg, argsz);
> + case VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP:
> + return vfio_pci_core_pm_entry_with_wakeup(device, flags,
> + arg, argsz);
> case VFIO_DEVICE_FEATURE_LOW_POWER_EXIT:
> return vfio_pci_core_pm_exit(device, flags, arg, argsz);
Best to keep these ioctls sorted
Jason
Powered by blists - more mailing lists