Message ID | 20221116181725.2207544-1-jeroendb@google.com (mailing list archive) |
---|---|
Headers | show |
Series | Handle alternate miss-completions | expand |
On Wed, Nov 16, 2022 at 10:17:23AM -0800, Jeroen de Borst wrote: > Some versions of the virtual NIC present miss-completions in > an alternative way. Let the diver handle these alternate completions > and announce this capability to the device. > > The capability is announced uing a new AdminQ command that sends > driver information to the device. The device can refuse a driver > if it is lacking support for a capability, or it can adopt it's > behavior to work around it. > > Changed in v4: > - Clarified new AdminQ command in cover letter > - Changed EOPNOTSUPP to ENOTSUPP to match device's response If you rely on the error code, please use the correct one and fix the driver to use EOPNOTSUPP and not ENOTSUPP. Thanks