aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches-rt/seqlock-prevent-rt-starvation.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches-rt/seqlock-prevent-rt-starvation.patch')
-rw-r--r--debian/patches-rt/seqlock-prevent-rt-starvation.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/patches-rt/seqlock-prevent-rt-starvation.patch b/debian/patches-rt/seqlock-prevent-rt-starvation.patch
index b73041ed7cf5..21f9d105832a 100644
--- a/debian/patches-rt/seqlock-prevent-rt-starvation.patch
+++ b/debian/patches-rt/seqlock-prevent-rt-starvation.patch
@@ -167,9 +167,9 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-static inline int neigh_hh_output(const struct hh_cache *hh, struct sk_buff *skb)
+static inline int neigh_hh_output(struct hh_cache *hh, struct sk_buff *skb)
{
+ unsigned int hh_alen = 0;
unsigned int seq;
- unsigned int hh_len;
-@@ -475,7 +475,7 @@ static inline int neigh_hh_output(const
+@@ -493,7 +493,7 @@
static inline int neigh_output(struct neighbour *n, struct sk_buff *skb)
{
@@ -178,7 +178,7 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
if ((n->nud_state & NUD_CONNECTED) && hh->hh_len)
return neigh_hh_output(hh, skb);
-@@ -516,7 +516,7 @@ struct neighbour_cb {
+@@ -534,7 +534,7 @@
#define NEIGH_CB(skb) ((struct neighbour_cb *)(skb)->cb)