Re: [PATCH v2 1/4] vdpa/octeon_ep: enable support for multiple interrupts per device

2024-12-09 Thread Shijith Thotton
>> > >> > Updated the driver to utilize all the MSI-X interrupt vectors supported >> > by each OCTEON endpoint VF, instead of relying on a single vector. >> > Enabling more interrupts allows packets from multiple rings to be >> > distributed across multiple cores, improving parallelism and >> > per

Re: [PATCH v2 1/4] vdpa/octeon_ep: enable support for multiple interrupts per device

2024-12-05 Thread Jason Wang
On Fri, Dec 6, 2024 at 9:25 AM Jason Wang wrote: > > On Thu, Nov 21, 2024 at 9:45 PM Shijith Thotton wrote: > > > > Updated the driver to utilize all the MSI-X interrupt vectors supported > > by each OCTEON endpoint VF, instead of relying on a single vector. > > Enabling more interrupts allows pa

Re: [PATCH v2 1/4] vdpa/octeon_ep: enable support for multiple interrupts per device

2024-12-05 Thread Jason Wang
On Thu, Nov 21, 2024 at 9:45 PM Shijith Thotton wrote: > > Updated the driver to utilize all the MSI-X interrupt vectors supported > by each OCTEON endpoint VF, instead of relying on a single vector. > Enabling more interrupts allows packets from multiple rings to be > distributed across multiple

Re: [PATCH v2 1/4] vdpa/octeon_ep: enable support for multiple interrupts per device

2024-11-21 Thread Dan Carpenter
On Thu, Nov 21, 2024 at 07:09:43PM +0530, Shijith Thotton wrote: > Updated the driver to utilize all the MSI-X interrupt vectors supported > by each OCTEON endpoint VF, instead of relying on a single vector. > Enabling more interrupts allows packets from multiple rings to be > distributed across mu

[PATCH v2 1/4] vdpa/octeon_ep: enable support for multiple interrupts per device

2024-11-21 Thread Shijith Thotton
Updated the driver to utilize all the MSI-X interrupt vectors supported by each OCTEON endpoint VF, instead of relying on a single vector. Enabling more interrupts allows packets from multiple rings to be distributed across multiple cores, improving parallelism and performance. Signed-off-by: Shij