summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0001-Revert-gro-Fix-legacy-path-napi_complete-crash.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-18 15:32:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-18 15:36:06 +0000
commit673abd92f999829bdd67d0273c43570a62123a63 (patch)
tree63132d1ffc1cb5bf50d244b184ca8d58a9cbc85c /meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0001-Revert-gro-Fix-legacy-path-napi_complete-crash.patch
parentfed61beb31c47e2d96af905a7047fe78d64c9bd0 (diff)
downloadpoky-673abd92f999829bdd67d0273c43570a62123a63.tar.gz
conf/machine: Drop older machines with no recent updates
These are all moving to meta-extras. Ideally in the future machines such as these will be maintained to topic specific layers as we move to a more layer oriented model. If this causes a problem for anyone please discuss it on the mailing list. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0001-Revert-gro-Fix-legacy-path-napi_complete-crash.patch')
-rw-r--r--meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0001-Revert-gro-Fix-legacy-path-napi_complete-crash.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0001-Revert-gro-Fix-legacy-path-napi_complete-crash.patch b/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0001-Revert-gro-Fix-legacy-path-napi_complete-crash.patch
deleted file mode 100644
index aeab62f105..0000000000
--- a/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0001-Revert-gro-Fix-legacy-path-napi_complete-crash.patch
+++ /dev/null
@@ -1,39 +0,0 @@
1From 26abf45ac80be4c54a63fecf1c3c1e1efb416e0a Mon Sep 17 00:00:00 2001
2From: Tomi Valkeinen <tomi.valkeinen@nokia.com>
3Date: Wed, 1 Apr 2009 18:27:09 +0300
4Subject: [PATCH] Revert "gro: Fix legacy path napi_complete crash"
5
6This reverts commit 303c6a0251852ecbdc5c15e466dcaff5971f7517.
7
8Fixes USB network problems
9---
10 net/core/dev.c | 5 ++---
11 1 files changed, 2 insertions(+), 3 deletions(-)
12
13diff --git a/net/core/dev.c b/net/core/dev.c
14index e3fe5c7..c1e9dc0 100644
15--- a/net/core/dev.c
16+++ b/net/core/dev.c
17@@ -2588,9 +2588,9 @@ static int process_backlog(struct napi_struct *napi, int quota)
18 local_irq_disable();
19 skb = __skb_dequeue(&queue->input_pkt_queue);
20 if (!skb) {
21+ __napi_complete(napi);
22 local_irq_enable();
23- napi_complete(napi);
24- goto out;
25+ break;
26 }
27 local_irq_enable();
28
29@@ -2599,7 +2599,6 @@ static int process_backlog(struct napi_struct *napi, int quota)
30
31 napi_gro_flush(napi);
32
33-out:
34 return work;
35 }
36
37--
381.5.6.5
39