Re: [dpdk-kmods v2] windows/netuio: fix BAR parsing

2022-08-29 Thread Thomas Monjalon
19/08/2022 20:13, Menon, Ranjit: > On 8/11/2022 3:17 PM, Pallavi Kadam wrote: > > Current code was always checking the 'prev_bar & PCI_TYPE_64BIT' > > though only the first BAR slot of a 64-bit BAR contains flags. > > Also for certain PCIe devices, BAR values were not continuous. > > This patch fix

Re: [dpdk-kmods v2] windows/netuio: fix BAR parsing

2022-08-22 Thread Liu, Qiao
在 2022/8/12 6:17, Pallavi Kadam 写道: Current code was always checking the 'prev_bar & PCI_TYPE_64BIT' though only the first BAR slot of a 64-bit BAR contains flags. Also for certain PCIe devices, BAR values were not continuous. This patch fixes this incorrectness and maps the BAR addresses corre

Re: [dpdk-kmods v2] windows/netuio: fix BAR parsing

2022-08-19 Thread Menon, Ranjit
On 8/11/2022 3:17 PM, Pallavi Kadam wrote: Current code was always checking the 'prev_bar & PCI_TYPE_64BIT' though only the first BAR slot of a 64-bit BAR contains flags. Also for certain PCIe devices, BAR values were not continuous. This patch fixes this incorrectness and maps the BAR addresses

[dpdk-kmods v2] windows/netuio: fix BAR parsing

2022-08-11 Thread Pallavi Kadam
Current code was always checking the 'prev_bar & PCI_TYPE_64BIT' though only the first BAR slot of a 64-bit BAR contains flags. Also for certain PCIe devices, BAR values were not continuous. This patch fixes this incorrectness and maps the BAR addresses correctly. Reported-by: Qiao Liu Suggested-