Re: [dpdk-dev] [PATCH] igb_uio: fix legacy msi masking

2017-10-13 Thread Ferruh Yigit
On 10/13/2017 6:03 PM, Ferruh Yigit wrote: > On 10/13/2017 5:03 PM, Markus Theil wrote: >> MSI masks contain a 1 if interrupt is masked, 0 if unmasked. >> I got that wrong with the !!state calculation. For better >> readability, the mask is now changed like in igbuio_msi_mask_irq. >> >> Fixes: a8ea

Re: [dpdk-dev] [PATCH] igb_uio: fix legacy msi masking

2017-10-13 Thread Ferruh Yigit
On 10/13/2017 5:03 PM, Markus Theil wrote: > MSI masks contain a 1 if interrupt is masked, 0 if unmasked. > I got that wrong with the !!state calculation. For better > readability, the mask is now changed like in igbuio_msi_mask_irq. > > Fixes: a8ea1e5fb647 ("igb_uio: fix unknown MSI symbols") >

[dpdk-dev] [PATCH] igb_uio: fix legacy msi masking

2017-10-13 Thread Markus Theil
MSI masks contain a 1 if interrupt is masked, 0 if unmasked. I got that wrong with the !!state calculation. For better readability, the mask is now changed like in igbuio_msi_mask_irq. Fixes: a8ea1e5fb647 ("igb_uio: fix unknown MSI symbols") Signed-off-by: Markus Theil Tested-by: Markus Theil -