Skip to content

Commit

Permalink
Merge pull request brektrou#152 from kelebek333/patch-1
Browse files Browse the repository at this point in the history
Added buildfix for Linux 5.15
  • Loading branch information
brektrou authored Nov 14, 2021
2 parents 17e4e15 + 3e5240c commit ef3ff12
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions core/rtw_br_ext.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
#ifdef __KERNEL__
#include <linux/if_arp.h>
#include <net/ip.h>
#include <linux/version.h>
#if (LINUX_VERSION_CODE <= KERNEL_VERSION(5, 14, 0))
#include <net/ipx.h>
#endif
#include <linux/atalk.h>
#include <linux/udp.h>
#include <linux/if_pppox.h>
Expand Down Expand Up @@ -169,6 +172,7 @@ static __inline__ void __nat25_generate_ipv4_network_addr(unsigned char *network
}


#if (LINUX_VERSION_CODE <= KERNEL_VERSION(5, 14, 0))
static __inline__ void __nat25_generate_ipx_network_addr_with_node(unsigned char *networkAddr,
unsigned int *ipxNetAddr, unsigned char *ipxNodeAddr)
{
Expand Down Expand Up @@ -200,6 +204,7 @@ static __inline__ void __nat25_generate_apple_network_addr(unsigned char *networ
memcpy(networkAddr + 1, (unsigned char *)network, 2);
networkAddr[3] = *node;
}
#endif


static __inline__ void __nat25_generate_pppoe_network_addr(unsigned char *networkAddr,
Expand Down Expand Up @@ -889,6 +894,7 @@ int nat25_db_handle(_adapter *priv, struct sk_buff *skb, int method)
}
}

#if (LINUX_VERSION_CODE <= KERNEL_VERSION(5, 14, 0))
/*---------------------------------------------------*/
/* Handle IPX and Apple Talk frame */
/*---------------------------------------------------*/
Expand Down Expand Up @@ -1109,6 +1115,7 @@ int nat25_db_handle(_adapter *priv, struct sk_buff *skb, int method)

return -1;
}
#endif

/*---------------------------------------------------*/
/* Handle PPPoE frame */
Expand Down

0 comments on commit ef3ff12

Please sign in to comment.