mirror of
https://github.com/LiBwrt/nss-packages.git
synced 2025-12-16 17:15:09 +00:00
15 lines
379 B
Diff
15 lines
379 B
Diff
--- a/mc_osdep.h
|
|
+++ b/mc_osdep.h
|
|
@@ -24,7 +24,11 @@
|
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 0, 0))
|
|
static inline int os_br_pass_frame_up(struct sk_buff *skb)
|
|
{
|
|
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 6, 29))
|
|
+ return br_pass_frame_up(skb, false);
|
|
+#else
|
|
return br_pass_frame_up(skb);
|
|
+#endif
|
|
}
|
|
#else
|
|
static inline int os_br_pass_frame_up(struct sk_buff *skb)
|