Message ID | 20220307221349.164585-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | d82a6c5ef9dc0aab296936e1aa4ad28fd5162a55 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [next] net: prestera: acl: make read-only array client_map static const | expand |
Hello: This patch was applied to netdev/net-next.git (master) by Jakub Kicinski <kuba@kernel.org>: On Mon, 7 Mar 2022 22:13:49 +0000 you wrote: > Don't populate the read-only array client_map on the stack but > instead make it static const. Also makes the object code a little > smaller. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > drivers/net/ethernet/marvell/prestera/prestera_acl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [next] net: prestera: acl: make read-only array client_map static const https://git.kernel.org/netdev/net-next/c/d82a6c5ef9dc You are awesome, thank you!
diff --git a/drivers/net/ethernet/marvell/prestera/prestera_acl.c b/drivers/net/ethernet/marvell/prestera/prestera_acl.c index e4af8a503277..47c899c08951 100644 --- a/drivers/net/ethernet/marvell/prestera/prestera_acl.c +++ b/drivers/net/ethernet/marvell/prestera/prestera_acl.c @@ -91,7 +91,7 @@ static const struct rhashtable_params __prestera_acl_rule_entry_ht_params = { int prestera_acl_chain_to_client(u32 chain_index, u32 *client) { - u32 client_map[] = { + static const u32 client_map[] = { PRESTERA_HW_COUNTER_CLIENT_LOOKUP_0, PRESTERA_HW_COUNTER_CLIENT_LOOKUP_1, PRESTERA_HW_COUNTER_CLIENT_LOOKUP_2
Don't populate the read-only array client_map on the stack but instead make it static const. Also makes the object code a little smaller. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- drivers/net/ethernet/marvell/prestera/prestera_acl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)