[net,v5,00/11] octeontx2: Miscellaneous fixes

Message ID 20230503070944.960190-1-saikrishnag@marvell.com
Headers
Series octeontx2: Miscellaneous fixes |

Message

Sai Krishna Gajula May 3, 2023, 7:09 a.m. UTC
  This patchset includes following fixes.

Patch #1 Fix for the race condition while updating APR table 
 
Patch #2 Fix end bit position in NPC scan config 

Patch #3 Fix depth of CAM, MEM table entries

Patch #4 Fix in increase the size of DMAC filter flows

Patch #5 Fix driver crash resulting from invalid interface type
information retrieved from firmware

Patch #6 Fix incorrect mask used while installing filters involving
fragmented packets

Patch #7 Fixes for NPC field hash extract w.r.t IPV6 hash reduction,
         IPV6 filed hash configuration.

Patch #8 Fix for NPC hardware parser configuration destination 
         address hash, IPV6 endianness issues.

Patch #9 Fix for skipping mbox initialization for PFs disabled by firmware.

Patch #10 Fix disabling packet I/O in case of mailbox timeout.

Patch #11 Fix detaching LF resources in case of VF probe fail.

Geetha sowjanya (1):
  octeontx2-af: Secure APR table update with the lock

Hariprasad Kelam (1):
  octeontx2-af: Add validation for lmac type

Ratheesh Kannoth (6):
  octeontx2-af: Fix start and end bit for scan config
  octeontx2-af: Fix depth of cam and mem table.
  octeontx2-pf: Increase the size of dmac filter flows
  octeontx2-af: Update/Fix NPC field hash extract feature
  octeontx2-af: Fix issues with NPC field hash extract
  octeontx2-af: Skip PFs if not enabled

Subbaraya Sundeep (2):
  octeontx2-pf: Disable packet I/O for graceful exit
  octeontx2-vf: Detach LF resources on probe cleanup

Suman Ghosh (1):
  octeontx2-af: Update correct mask to filter IPv4 fragments

---
v5 changes:
	Fixed review comments given by Simon Horman
        1. Split the patch.
	2. Modified/Elaborated commit messages.
	3. Fixed duplicate code using goto statements.

v4 changes:
	Fixed review comments given by Simon Horman
        1. Replaced kcalloc() with bitmap_zalloc().
	2. Modified/Elaborated commit messages.
        3. Fixed end bit position in NPC exact match bitmap enable.

v3 changes:
	Fixed review comments given by Simon Horman
        1. Split the patches
        2. Replaced devm_kcalloc() with kcalloc.
        3. Remove un-necessary validation before free_percpu
	4. Modified/Elaborated commit message
        5. Move the lock to inner function "rvu_get_lmtaddr()" to
           avoid synchronization issues.

v2 changes:
	Fixed review comments given by Leon Romanovsky
	1. Updated lmac_type in case of invalid lmac
	2. Modified commit message

 .../net/ethernet/marvell/octeontx2/af/cgx.c   |   8 ++
 .../net/ethernet/marvell/octeontx2/af/mbox.c  |   5 +-
 .../net/ethernet/marvell/octeontx2/af/mbox.h  |  19 ++-
 .../net/ethernet/marvell/octeontx2/af/rvu.c   |  49 +++++--
 .../ethernet/marvell/octeontx2/af/rvu_cn10k.c |  13 +-
 .../marvell/octeontx2/af/rvu_npc_fs.c         |  26 ++--
 .../marvell/octeontx2/af/rvu_npc_fs.h         |   4 +
 .../marvell/octeontx2/af/rvu_npc_hash.c       | 125 ++++++++++--------
 .../marvell/octeontx2/af/rvu_npc_hash.h       |  10 +-
 .../marvell/octeontx2/nic/otx2_common.h       |   4 +-
 .../ethernet/marvell/octeontx2/nic/otx2_pf.c  |  11 +-
 .../ethernet/marvell/octeontx2/nic/otx2_tc.c  |   2 +-
 .../ethernet/marvell/octeontx2/nic/otx2_vf.c  |   2 +-
 13 files changed, 187 insertions(+), 91 deletions(-)
  

Comments

patchwork-bot+netdevbpf@kernel.org May 3, 2023, 8:10 a.m. UTC | #1
Hello:

This series was applied to netdev/net.git (main)
by David S. Miller <davem@davemloft.net>:

On Wed, 3 May 2023 12:39:33 +0530 you wrote:
> This patchset includes following fixes.
> 
> Patch #1 Fix for the race condition while updating APR table
> 
> Patch #2 Fix end bit position in NPC scan config
> 
> Patch #3 Fix depth of CAM, MEM table entries
> 
> [...]

Here is the summary with links:
  - [net,v5,01/11] octeontx2-af: Secure APR table update with the lock
    https://git.kernel.org/netdev/net/c/048486f81d01
  - [net,v5,02/11] octeontx2-af: Fix start and end bit for scan config
    https://git.kernel.org/netdev/net/c/c60a6b90e789
  - [net,v5,03/11] octeontx2-af: Fix depth of cam and mem table.
    https://git.kernel.org/netdev/net/c/60999cb83554
  - [net,v5,04/11] octeontx2-pf: Increase the size of dmac filter flows
    https://git.kernel.org/netdev/net/c/2a6eecc592b4
  - [net,v5,05/11] octeontx2-af: Add validation for lmac type
    https://git.kernel.org/netdev/net/c/cb5edce27176
  - [net,v5,06/11] octeontx2-af: Update correct mask to filter IPv4 fragments
    https://git.kernel.org/netdev/net/c/2075bf150ddf
  - [net,v5,07/11] octeontx2-af: Update/Fix NPC field hash extract feature
    https://git.kernel.org/netdev/net/c/406bed11fb91
  - [net,v5,08/11] octeontx2-af: Fix issues with NPC field hash extract
    https://git.kernel.org/netdev/net/c/f66155905959
  - [net,v5,09/11] octeontx2-af: Skip PFs if not enabled
    https://git.kernel.org/netdev/net/c/5eb1b7220948
  - [net,v5,10/11] octeontx2-pf: Disable packet I/O for graceful exit
    https://git.kernel.org/netdev/net/c/c926252205c4
  - [net,v5,11/11] octeontx2-vf: Detach LF resources on probe cleanup
    https://git.kernel.org/netdev/net/c/99ae1260fdb5

You are awesome, thank you!