* [PATCH net-next] enic: Replace hardcoded values for vnic descriptor by defines
@ 2024-04-23 3:53 Satish Kharat
2024-04-24 18:09 ` Simon Horman
2024-04-25 9:40 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Satish Kharat @ 2024-04-23 3:53 UTC (permalink / raw)
To: netdev; +Cc: Satish Kharat
Replace the hardcoded values used in the calculations for
vnic descriptors and rings with defines. Minor code cleanup.
Signed-off-by: Satish Kharat <satishkh@cisco.com>
---
drivers/net/ethernet/cisco/enic/vnic_dev.c | 20 ++++++++------------
drivers/net/ethernet/cisco/enic/vnic_dev.h | 5 +++++
2 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/drivers/net/ethernet/cisco/enic/vnic_dev.c b/drivers/net/ethernet/cisco/enic/vnic_dev.c
index 12a83fa1302d..9f6089e81608 100644
--- a/drivers/net/ethernet/cisco/enic/vnic_dev.c
+++ b/drivers/net/ethernet/cisco/enic/vnic_dev.c
@@ -146,23 +146,19 @@ EXPORT_SYMBOL(vnic_dev_get_res);
static unsigned int vnic_dev_desc_ring_size(struct vnic_dev_ring *ring,
unsigned int desc_count, unsigned int desc_size)
{
- /* The base address of the desc rings must be 512 byte aligned.
- * Descriptor count is aligned to groups of 32 descriptors. A
- * count of 0 means the maximum 4096 descriptors. Descriptor
- * size is aligned to 16 bytes.
- */
-
- unsigned int count_align = 32;
- unsigned int desc_align = 16;
- ring->base_align = 512;
+ /* Descriptor ring base address alignment in bytes*/
+ ring->base_align = VNIC_DESC_BASE_ALIGN;
+ /* A count of 0 means the maximum descriptors */
if (desc_count == 0)
- desc_count = 4096;
+ desc_count = VNIC_DESC_MAX_COUNT;
- ring->desc_count = ALIGN(desc_count, count_align);
+ /* Descriptor count aligned in groups of VNIC_DESC_COUNT_ALIGN descriptors */
+ ring->desc_count = ALIGN(desc_count, VNIC_DESC_COUNT_ALIGN);
- ring->desc_size = ALIGN(desc_size, desc_align);
+ /* Descriptor size alignment in bytes */
+ ring->desc_size = ALIGN(desc_size, VNIC_DESC_SIZE_ALIGN);
ring->size = ring->desc_count * ring->desc_size;
ring->size_unaligned = ring->size + ring->base_align;
diff --git a/drivers/net/ethernet/cisco/enic/vnic_dev.h b/drivers/net/ethernet/cisco/enic/vnic_dev.h
index 6273794b923b..7fdd8c661c99 100644
--- a/drivers/net/ethernet/cisco/enic/vnic_dev.h
+++ b/drivers/net/ethernet/cisco/enic/vnic_dev.h
@@ -31,6 +31,11 @@ static inline void writeq(u64 val, void __iomem *reg)
#undef pr_fmt
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+#define VNIC_DESC_SIZE_ALIGN 16
+#define VNIC_DESC_COUNT_ALIGN 32
+#define VNIC_DESC_BASE_ALIGN 512
+#define VNIC_DESC_MAX_COUNT 4096
+
enum vnic_dev_intr_mode {
VNIC_DEV_INTR_MODE_UNKNOWN,
VNIC_DEV_INTR_MODE_INTX,
--
2.44.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] enic: Replace hardcoded values for vnic descriptor by defines
2024-04-23 3:53 [PATCH net-next] enic: Replace hardcoded values for vnic descriptor by defines Satish Kharat
@ 2024-04-24 18:09 ` Simon Horman
2024-04-25 9:40 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2024-04-24 18:09 UTC (permalink / raw)
To: Satish Kharat
Cc: netdev, Christian Benvenuti, Satish Kharat, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni
+ Christian, Satish, Dave, Eric, Jakub & Paolo
On Mon, Apr 22, 2024 at 08:53:05PM -0700, Satish Kharat wrote:
> Replace the hardcoded values used in the calculations for
> vnic descriptors and rings with defines. Minor code cleanup.
>
> Signed-off-by: Satish Kharat <satishkh@cisco.com>
Hi Satish,
it is probably not necessary to repost because of this,
but please use get_maintainers.pl my.patch to seed
the CC list when posting Networking patches.
That notwithstanding, this patch looks good to me.
Reviewed-by: Simon Horman <horms@kernel.org>
> ---
> drivers/net/ethernet/cisco/enic/vnic_dev.c | 20 ++++++++------------
> drivers/net/ethernet/cisco/enic/vnic_dev.h | 5 +++++
> 2 files changed, 13 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/net/ethernet/cisco/enic/vnic_dev.c b/drivers/net/ethernet/cisco/enic/vnic_dev.c
> index 12a83fa1302d..9f6089e81608 100644
> --- a/drivers/net/ethernet/cisco/enic/vnic_dev.c
> +++ b/drivers/net/ethernet/cisco/enic/vnic_dev.c
> @@ -146,23 +146,19 @@ EXPORT_SYMBOL(vnic_dev_get_res);
> static unsigned int vnic_dev_desc_ring_size(struct vnic_dev_ring *ring,
> unsigned int desc_count, unsigned int desc_size)
> {
> - /* The base address of the desc rings must be 512 byte aligned.
> - * Descriptor count is aligned to groups of 32 descriptors. A
> - * count of 0 means the maximum 4096 descriptors. Descriptor
> - * size is aligned to 16 bytes.
> - */
> -
> - unsigned int count_align = 32;
> - unsigned int desc_align = 16;
>
> - ring->base_align = 512;
> + /* Descriptor ring base address alignment in bytes*/
> + ring->base_align = VNIC_DESC_BASE_ALIGN;
>
> + /* A count of 0 means the maximum descriptors */
> if (desc_count == 0)
> - desc_count = 4096;
> + desc_count = VNIC_DESC_MAX_COUNT;
>
> - ring->desc_count = ALIGN(desc_count, count_align);
> + /* Descriptor count aligned in groups of VNIC_DESC_COUNT_ALIGN descriptors */
> + ring->desc_count = ALIGN(desc_count, VNIC_DESC_COUNT_ALIGN);
>
> - ring->desc_size = ALIGN(desc_size, desc_align);
> + /* Descriptor size alignment in bytes */
> + ring->desc_size = ALIGN(desc_size, VNIC_DESC_SIZE_ALIGN);
>
> ring->size = ring->desc_count * ring->desc_size;
> ring->size_unaligned = ring->size + ring->base_align;
> diff --git a/drivers/net/ethernet/cisco/enic/vnic_dev.h b/drivers/net/ethernet/cisco/enic/vnic_dev.h
> index 6273794b923b..7fdd8c661c99 100644
> --- a/drivers/net/ethernet/cisco/enic/vnic_dev.h
> +++ b/drivers/net/ethernet/cisco/enic/vnic_dev.h
> @@ -31,6 +31,11 @@ static inline void writeq(u64 val, void __iomem *reg)
> #undef pr_fmt
> #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
>
> +#define VNIC_DESC_SIZE_ALIGN 16
> +#define VNIC_DESC_COUNT_ALIGN 32
> +#define VNIC_DESC_BASE_ALIGN 512
> +#define VNIC_DESC_MAX_COUNT 4096
> +
> enum vnic_dev_intr_mode {
> VNIC_DEV_INTR_MODE_UNKNOWN,
> VNIC_DEV_INTR_MODE_INTX,
> --
> 2.44.0
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] enic: Replace hardcoded values for vnic descriptor by defines
2024-04-23 3:53 [PATCH net-next] enic: Replace hardcoded values for vnic descriptor by defines Satish Kharat
2024-04-24 18:09 ` Simon Horman
@ 2024-04-25 9:40 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-04-25 9:40 UTC (permalink / raw)
To: Satish Kharat; +Cc: netdev
Hello:
This patch was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:
On Mon, 22 Apr 2024 20:53:05 -0700 you wrote:
> Replace the hardcoded values used in the calculations for
> vnic descriptors and rings with defines. Minor code cleanup.
>
> Signed-off-by: Satish Kharat <satishkh@cisco.com>
> ---
> drivers/net/ethernet/cisco/enic/vnic_dev.c | 20 ++++++++------------
> drivers/net/ethernet/cisco/enic/vnic_dev.h | 5 +++++
> 2 files changed, 13 insertions(+), 12 deletions(-)
Here is the summary with links:
- [net-next] enic: Replace hardcoded values for vnic descriptor by defines
https://git.kernel.org/netdev/net-next/c/369dac68d22e
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-04-25 9:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-23 3:53 [PATCH net-next] enic: Replace hardcoded values for vnic descriptor by defines Satish Kharat
2024-04-24 18:09 ` Simon Horman
2024-04-25 9:40 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).