summaryrefslogtreecommitdiffstats
path: root/extras/recipes-kernel/linux/linux-omap/linus/0048-mv_xor-fix-race-in-tasklet-function.patch
diff options
context:
space:
mode:
Diffstat (limited to 'extras/recipes-kernel/linux/linux-omap/linus/0048-mv_xor-fix-race-in-tasklet-function.patch')
-rw-r--r--extras/recipes-kernel/linux/linux-omap/linus/0048-mv_xor-fix-race-in-tasklet-function.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/extras/recipes-kernel/linux/linux-omap/linus/0048-mv_xor-fix-race-in-tasklet-function.patch b/extras/recipes-kernel/linux/linux-omap/linus/0048-mv_xor-fix-race-in-tasklet-function.patch
new file mode 100644
index 00000000..6c1d8467
--- /dev/null
+++ b/extras/recipes-kernel/linux/linux-omap/linus/0048-mv_xor-fix-race-in-tasklet-function.patch
@@ -0,0 +1,31 @@
1From b4c914578637d1d92b92842c50b02a98f2a7357d Mon Sep 17 00:00:00 2001
2From: Saeed Bishara <saeed@marvell.com>
3Date: Tue, 21 Dec 2010 16:53:39 +0200
4Subject: [PATCH 48/65] mv_xor: fix race in tasklet function
5
6use mv_xor_slot_cleanup() instead of __mv_xor_slot_cleanup() as the former function
7aquires the spin lock that needed to protect the drivers data.
8
9Cc: <stable@kernel.org>
10Signed-off-by: Saeed Bishara <saeed@marvell.com>
11Signed-off-by: Dan Williams <dan.j.williams@intel.com>
12---
13 drivers/dma/mv_xor.c | 2 +-
14 1 files changed, 1 insertions(+), 1 deletions(-)
15
16diff --git a/drivers/dma/mv_xor.c b/drivers/dma/mv_xor.c
17index 411d5bf..a25f5f6 100644
18--- a/drivers/dma/mv_xor.c
19+++ b/drivers/dma/mv_xor.c
20@@ -449,7 +449,7 @@ mv_xor_slot_cleanup(struct mv_xor_chan *mv_chan)
21 static void mv_xor_tasklet(unsigned long data)
22 {
23 struct mv_xor_chan *chan = (struct mv_xor_chan *) data;
24- __mv_xor_slot_cleanup(chan);
25+ mv_xor_slot_cleanup(chan);
26 }
27
28 static struct mv_xor_desc_slot *
29--
301.6.6.1
31