]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
net: ipvlan: remove __get_unaligned_cpu32 from ipvlan driver
authorJulian Vetter <julian@outer-limits.org>
Tue, 8 Apr 2025 09:19:46 +0000 (11:19 +0200)
committerJakub Kicinski <kuba@kernel.org>
Thu, 10 Apr 2025 00:29:14 +0000 (17:29 -0700)
The __get_unaligned_cpu32 function is deprecated. So, replace it with
the more generic get_unaligned and just cast the input parameter.

Signed-off-by: Julian Vetter <julian@outer-limits.org>
Link: https://patch.msgid.link/20250408091946.2266271-1-julian@outer-limits.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ipvlan/ipvlan_core.c

index ca62188a317ad436173215fa4552f1a188d99384..e3e65772c5991289ed844fe6d20242215e285207 100644 (file)
@@ -219,7 +219,7 @@ void *ipvlan_get_L3_hdr(struct ipvl_port *port, struct sk_buff *skb, int *type)
 
 unsigned int ipvlan_mac_hash(const unsigned char *addr)
 {
-       u32 hash = jhash_1word(__get_unaligned_cpu32(addr+2),
+       u32 hash = jhash_1word(get_unaligned((u32 *)(addr + 2)),
                               ipvlan_jhash_secret);
 
        return hash & IPVLAN_MAC_FILTER_MASK;