summaryrefslogtreecommitdiffstats
path: root/debian/patches-rt/0230-net-Remove-preemption-disabling-in-netif_rx.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches-rt/0230-net-Remove-preemption-disabling-in-netif_rx.patch')
-rw-r--r--debian/patches-rt/0230-net-Remove-preemption-disabling-in-netif_rx.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/patches-rt/0230-net-Remove-preemption-disabling-in-netif_rx.patch b/debian/patches-rt/0230-net-Remove-preemption-disabling-in-netif_rx.patch
index bc2888956..b0b267424 100644
--- a/debian/patches-rt/0230-net-Remove-preemption-disabling-in-netif_rx.patch
+++ b/debian/patches-rt/0230-net-Remove-preemption-disabling-in-netif_rx.patch
@@ -1,7 +1,7 @@
From: Priyanka Jain <Priyanka.Jain@freescale.com>
Date: Thu, 17 May 2012 09:35:11 +0530
Subject: [PATCH 230/353] net: Remove preemption disabling in netif_rx()
-Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=8fd2eb92e7f465c0a53826f97bc140900b278ec0
+Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=e78188710318015f790503e2e67d09b0ee2edfcf
1)enqueue_to_backlog() (called from netif_rx) should be
bind to a particluar CPU. This can be achieved by
@@ -35,10 +35,10 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/net/core/dev.c b/net/core/dev.c
-index 1103427c6942..a4a45df863e1 100644
+index 209d15808646..1fb0a5340e94 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
-@@ -4496,7 +4496,7 @@ static int netif_rx_internal(struct sk_buff *skb)
+@@ -4498,7 +4498,7 @@ static int netif_rx_internal(struct sk_buff *skb)
struct rps_dev_flow voidflow, *rflow = &voidflow;
int cpu;
@@ -47,7 +47,7 @@ index 1103427c6942..a4a45df863e1 100644
rcu_read_lock();
cpu = get_rps_cpu(skb->dev, skb, &rflow);
-@@ -4506,14 +4506,14 @@ static int netif_rx_internal(struct sk_buff *skb)
+@@ -4508,14 +4508,14 @@ static int netif_rx_internal(struct sk_buff *skb)
ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
rcu_read_unlock();