Re: [dpdk-dev] [PATCH] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-04-09 Thread Radha Mohan
On Fri, Apr 9, 2021 at 1:29 PM Radha Mohan Chintakuntla wrote: > > The PCI device address is being used for sending mailbox which was > introduced in previous commit which replaced the macros so that > multiple DPI blocks in the hardware can be supported. > > This patch fixes a NULL pointer access

Re: [dpdk-dev] [PATCH] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-04-09 Thread Radha Mohan
On Fri, Apr 9, 2021 at 12:13 PM Jerin Jacob wrote: > > On Mon, Mar 22, 2021 at 8:52 PM Radha Mohan Chintakuntla > wrote: > > > > Add PCI device to dpivf structure. > > > > Fixes: 4495bd887d38 ("raw/octeontx2_dma: support multiple DPI blocks") > > Since it is a fix, Please describe what is fixed i

[dpdk-dev] [PATCH] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-04-09 Thread Radha Mohan Chintakuntla
The PCI device address is being used for sending mailbox which was introduced in previous commit which replaced the macros so that multiple DPI blocks in the hardware can be supported. This patch fixes a NULL pointer access by assigning the PCI device structure to dpivf. Fixes: 4495bd887d38 ("raw

Re: [dpdk-dev] [PATCH] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-04-08 Thread Jerin Jacob
On Mon, Mar 22, 2021 at 8:52 PM Radha Mohan Chintakuntla wrote: > > Add PCI device to dpivf structure. > > Fixes: 4495bd887d38 ("raw/octeontx2_dma: support multiple DPI blocks") Since it is a fix, Please describe what is fixed in git commit log. > Signed-off-by: Radha Mohan Chintakuntla > ---

[dpdk-dev] [PATCH] raw/octeontx2_dma: fix unavailable PCI device in dpivf

2021-03-22 Thread Radha Mohan Chintakuntla
Add PCI device to dpivf structure. Fixes: 4495bd887d38 ("raw/octeontx2_dma: support multiple DPI blocks") Signed-off-by: Radha Mohan Chintakuntla --- drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c b/dr