search for: vdap_request

Displaying 2 results from an estimated 2 matches for "vdap_request".

Did you mean: ldap_request
2020 Jul 20
0
[PATCH V2 3/6] vDPA: implement IRQ offloading helpers in vDPA core
...wing things happen? 1) some vDPA device driver probe the hardware and call vdpa_request_irq() in its PCI probe function. 2) vDPA device is probed by vhost-vDPA Then irq bypass can't work since we when vdpa_unsetup_irq() is called, there's no driver bound. Or is there a requirement that vdap_request/free_irq() must be called somewhere (e.g in the set_status bus operations)? If yes, we need document those requirements. Thanks
2020 Jul 21
0
[PATCH V2 3/6] vDPA: implement IRQ offloading helpers in vDPA core
...the hardware and call >> vdpa_request_irq() in its PCI probe function. >> 2) vDPA device is probed by vhost-vDPA >> >> Then irq bypass can't work since we when vdpa_unsetup_irq() is >> called, there's no driver bound. Or is there a requirement that >> vdap_request/free_irq() must be called somewhere (e.g in the >> set_status bus operations)? If yes, we need document those requirements. > vdpa_unseup_irq is only called when we want to unregister the producer, Typo, I meant vdpa_setup_irq(). Thanks > now we have two code path using it: free...