Message ID | 20231130075818.18401-3-gakula@marvell.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | octeontx2-af: miscellaneous fixes | expand |
On Thu, Nov 30, 2023 at 1:28 PM Geetha sowjanya <gakula@marvell.com> wrote: > On latest silicon versions SA cam entries increased to 256. > This patch fixes the datatype of sa_entries in mcs_hw_info > struct to u16 to hold 256 entries. > > Fixes: 080bbd19c9dd ("octeontx2-af: cn10k: mcs: Add mailboxes for port > related operations") > Signed-off-by: Geetha sowjanya <gakula@marvell.com> > Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com> > --- > drivers/net/ethernet/marvell/octeontx2/af/mbox.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Looks good to me. Reviewed-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com> > > diff --git a/drivers/net/ethernet/marvell/octeontx2/af/mbox.h > b/drivers/net/ethernet/marvell/octeontx2/af/mbox.h > index 6845556581c3..5df42634ceb8 100644 > --- a/drivers/net/ethernet/marvell/octeontx2/af/mbox.h > +++ b/drivers/net/ethernet/marvell/octeontx2/af/mbox.h > @@ -1945,7 +1945,7 @@ struct mcs_hw_info { > u8 tcam_entries; /* RX/TX Tcam entries per mcs block */ > u8 secy_entries; /* RX/TX SECY entries per mcs block */ > u8 sc_entries; /* RX/TX SC CAM entries per mcs block */ > - u8 sa_entries; /* PN table entries = SA entries */ > + u16 sa_entries; /* PN table entries = SA entries */ > u64 rsvd[16]; > }; > > -- > 2.25.1 > > >
On Thu, Nov 30, 2023 at 01:28:15PM +0530, Geetha sowjanya wrote: > On latest silicon versions SA cam entries increased to 256. > This patch fixes the datatype of sa_entries in mcs_hw_info > struct to u16 to hold 256 entries. > > Fixes: 080bbd19c9dd ("octeontx2-af: cn10k: mcs: Add mailboxes for port related operations") > Signed-off-by: Geetha sowjanya <gakula@marvell.com> > Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com> Reviewed-by: Simon Horman <horms@kernel.org>
diff --git a/drivers/net/ethernet/marvell/octeontx2/af/mbox.h b/drivers/net/ethernet/marvell/octeontx2/af/mbox.h index 6845556581c3..5df42634ceb8 100644 --- a/drivers/net/ethernet/marvell/octeontx2/af/mbox.h +++ b/drivers/net/ethernet/marvell/octeontx2/af/mbox.h @@ -1945,7 +1945,7 @@ struct mcs_hw_info { u8 tcam_entries; /* RX/TX Tcam entries per mcs block */ u8 secy_entries; /* RX/TX SECY entries per mcs block */ u8 sc_entries; /* RX/TX SC CAM entries per mcs block */ - u8 sa_entries; /* PN table entries = SA entries */ + u16 sa_entries; /* PN table entries = SA entries */ u64 rsvd[16]; };