diff options
Diffstat (limited to 'drivers/vfio/pci/vfio_pci.c')
| -rw-r--r-- | drivers/vfio/pci/vfio_pci.c | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/drivers/vfio/pci/vfio_pci.c b/drivers/vfio/pci/vfio_pci.c index 69fab0fd15ae..e9851add6f4e 100644 --- a/drivers/vfio/pci/vfio_pci.c +++ b/drivers/vfio/pci/vfio_pci.c @@ -907,8 +907,14 @@ static void vfio_pci_request(void *device_data, unsigned int count)  	mutex_lock(&vdev->igate);  	if (vdev->req_trigger) { -		dev_dbg(&vdev->pdev->dev, "Requesting device from user\n"); +		if (!(count % 10)) +			dev_notice_ratelimited(&vdev->pdev->dev, +				"Relaying device request to user (#%u)\n", +				count);  		eventfd_signal(vdev->req_trigger, 1); +	} else if (count == 0) { +		dev_warn(&vdev->pdev->dev, +			"No device request channel registered, blocked until released by user\n");  	}  	mutex_unlock(&vdev->igate); |