* Re: [PATCH net-next] vxlan: Remove unused declarations eth_vni_hash() and fdb_head_index()
2025-11-12 9:20 [PATCH net-next] vxlan: Remove unused declarations eth_vni_hash() and fdb_head_index() Yue Haibing
@ 2025-11-12 9:18 ` Ido Schimmel
2025-11-12 11:06 ` Nikolay Aleksandrov
2025-11-14 1:30 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Ido Schimmel @ 2025-11-12 9:18 UTC (permalink / raw)
To: Yue Haibing
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, razor, netdev,
linux-kernel
On Wed, Nov 12, 2025 at 05:20:55PM +0800, Yue Haibing wrote:
> Commit 1f763fa808e9 ("vxlan: Convert FDB table to rhashtable") removed the
> implementations but leave declarations.
>
> Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH net-next] vxlan: Remove unused declarations eth_vni_hash() and fdb_head_index()
@ 2025-11-12 9:20 Yue Haibing
2025-11-12 9:18 ` Ido Schimmel
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Yue Haibing @ 2025-11-12 9:20 UTC (permalink / raw)
To: andrew+netdev, davem, edumazet, kuba, pabeni, idosch, razor
Cc: netdev, linux-kernel, yuehaibing
Commit 1f763fa808e9 ("vxlan: Convert FDB table to rhashtable") removed the
implementations but leave declarations.
Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
---
drivers/net/vxlan/vxlan_private.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/net/vxlan/vxlan_private.h b/drivers/net/vxlan/vxlan_private.h
index 99fe772ad679..b1eec2216360 100644
--- a/drivers/net/vxlan/vxlan_private.h
+++ b/drivers/net/vxlan/vxlan_private.h
@@ -188,8 +188,6 @@ int __vxlan_fdb_delete(struct vxlan_dev *vxlan,
const unsigned char *addr, union vxlan_addr ip,
__be16 port, __be32 src_vni, __be32 vni,
u32 ifindex, bool swdev_notify);
-u32 eth_vni_hash(const unsigned char *addr, __be32 vni);
-u32 fdb_head_index(struct vxlan_dev *vxlan, const u8 *mac, __be32 vni);
int vxlan_fdb_update(struct vxlan_dev *vxlan,
const u8 *mac, union vxlan_addr *ip,
__u16 state, __u16 flags,
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] vxlan: Remove unused declarations eth_vni_hash() and fdb_head_index()
2025-11-12 9:20 [PATCH net-next] vxlan: Remove unused declarations eth_vni_hash() and fdb_head_index() Yue Haibing
2025-11-12 9:18 ` Ido Schimmel
@ 2025-11-12 11:06 ` Nikolay Aleksandrov
2025-11-14 1:30 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Nikolay Aleksandrov @ 2025-11-12 11:06 UTC (permalink / raw)
To: Yue Haibing, andrew+netdev, davem, edumazet, kuba, pabeni, idosch
Cc: netdev, linux-kernel
On 12/11/2025 11:20, Yue Haibing wrote:
> Commit 1f763fa808e9 ("vxlan: Convert FDB table to rhashtable") removed the
> implementations but leave declarations.
>
> Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
> ---
> drivers/net/vxlan/vxlan_private.h | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/drivers/net/vxlan/vxlan_private.h b/drivers/net/vxlan/vxlan_private.h
> index 99fe772ad679..b1eec2216360 100644
> --- a/drivers/net/vxlan/vxlan_private.h
> +++ b/drivers/net/vxlan/vxlan_private.h
> @@ -188,8 +188,6 @@ int __vxlan_fdb_delete(struct vxlan_dev *vxlan,
> const unsigned char *addr, union vxlan_addr ip,
> __be16 port, __be32 src_vni, __be32 vni,
> u32 ifindex, bool swdev_notify);
> -u32 eth_vni_hash(const unsigned char *addr, __be32 vni);
> -u32 fdb_head_index(struct vxlan_dev *vxlan, const u8 *mac, __be32 vni);
> int vxlan_fdb_update(struct vxlan_dev *vxlan,
> const u8 *mac, union vxlan_addr *ip,
> __u16 state, __u16 flags,
Reviewed-by: Nikolay Aleksandrov <razor@blackwall.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] vxlan: Remove unused declarations eth_vni_hash() and fdb_head_index()
2025-11-12 9:20 [PATCH net-next] vxlan: Remove unused declarations eth_vni_hash() and fdb_head_index() Yue Haibing
2025-11-12 9:18 ` Ido Schimmel
2025-11-12 11:06 ` Nikolay Aleksandrov
@ 2025-11-14 1:30 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-11-14 1:30 UTC (permalink / raw)
To: Yue Haibing
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, idosch, razor,
netdev, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 12 Nov 2025 17:20:55 +0800 you wrote:
> Commit 1f763fa808e9 ("vxlan: Convert FDB table to rhashtable") removed the
> implementations but leave declarations.
>
> Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
> ---
> drivers/net/vxlan/vxlan_private.h | 2 --
> 1 file changed, 2 deletions(-)
Here is the summary with links:
- [net-next] vxlan: Remove unused declarations eth_vni_hash() and fdb_head_index()
https://git.kernel.org/netdev/net-next/c/c3716126cf57
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] 4+ messages in thread
end of thread, other threads:[~2025-11-14 1:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-12 9:20 [PATCH net-next] vxlan: Remove unused declarations eth_vni_hash() and fdb_head_index() Yue Haibing
2025-11-12 9:18 ` Ido Schimmel
2025-11-12 11:06 ` Nikolay Aleksandrov
2025-11-14 1:30 ` 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).