Re: [PATCH] dma/dpaa2: set the vfa bit for rbp with vf

2023-05-22 Thread Alvaro Karsz
> Acked-by: Hemant Agrawal Thank you. Do I need to do anything else for this patch to be merged?

[PATCH] dma/dpaa2: set the vfa bit for rbp with vf

2023-03-26 Thread Alvaro Karsz
d to struct rte_dpaa2_qdma_rbp, then is copied to qdma_sdd -> rbpcmd_simple. Fixes: 8caf8427f85a ("dma/dpaa2: introduce driver skeleton") Signed-off-by: Alvaro Karsz --- drivers/dma/dpaa2/dpaa2_qdma.c | 2 ++ drivers/dma/dpaa2/rte_pmd_dpaa2_qdma.h | 4 +++- 2 files changed, 5 i

Re: [PATCH] dma/dpaa2: set the vfa bit for rbp with vf

2023-04-09 Thread Alvaro Karsz
Hi, Any comments on the patch? Thanks

Re: [PATCH] dma/dpaa2: set the vfa bit for rbp with vf

2023-04-16 Thread Alvaro Karsz
> Hi, > This patch fixed the issue of qdma route by port for PCIe VF. > "vfa" bit determines if "vfid" is valid or not. > Route by port is a kind of qdam transfer used for PCIe EP to access host by > PCIe address and PCIe function. Another kind of transfer to access host is by > PCIe address + PC

[PATCH] bus/fslmc: unlock spinlock in case of timeout

2022-12-25 Thread Alvaro Karsz
Commit 79711846f6 introduces timeouts to mc, but in case of a timeout, the spinlock that was locked before isn't unlocked. Fixes: 79711846f6 ("bus/fslmc: add timeout in MC send command API") Signed-off-by: Alvaro Karsz --- drivers/bus/fslmc/mc/mc_sys.c | 6 +- 1 file change

Re: [PATCH] bus/fslmc: unlock spinlock in case of timeout

2022-12-25 Thread Alvaro Karsz
Sorry guys, I got test-report errors. The commit id format is wrong and it seems that I have an indentation error. I will fix it and submit a new version.

[PATCH v2] bus/fslmc: unlock spinlock in case of timeout

2022-12-25 Thread Alvaro Karsz
Bug in function mc_send_command, A spinlock is not unlocked in case of timeouts. Fixes: 79711846f676 ("bus/fslmc: add timeout in MC send command") Signed-off-by: Alvaro Karsz -- v2: - Fix code indentation. - Fix "Fixes: " tag format. --- drivers/bus/f

Re: [PATCH v2] bus/fslmc: unlock spinlock in case of timeout

2023-01-03 Thread Alvaro Karsz
Hi David, Thanks for your review. I'll create a new version without the comment, and will cc sta...@dpdk.org.

[PATCH v3] bus/fslmc: unlock spinlock in case of timeout

2023-01-03 Thread Alvaro Karsz
Bug in function mc_send_command, A spinlock is not unlocked in case of timeouts. Fixes: 79711846f676 ("bus/fslmc: add timeout in MC send command") Cc: sta...@dpdk.org Signed-off-by: Alvaro Karsz Reviewed-by: David Marchand -- v2: - Fix code indentation. - Fix &qu