aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2007-12-04 21:49:31 -0500
committerArnd Bergmann <arnd@arndb.de>2007-12-18 19:00:03 -0500
commit3ce2f62b05eca594356fc477229e233e2678b509 (patch)
tree86bc5bfaa20ce5d0599728f86c186ede62ccfb67
parentd8caf74f1bb82817f8efbd071bf4ecc83adf296a (diff)
[POWERPC] cell: export force_sig_info()
Export force_sig_info to allow signals to be sent from a modular spufs. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r--arch/powerpc/platforms/cell/spu_base.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/cell/spu_base.c b/arch/powerpc/platforms/cell/spu_base.c
index c83c3e3f5178..525712055bb2 100644
--- a/arch/powerpc/platforms/cell/spu_base.c
+++ b/arch/powerpc/platforms/cell/spu_base.c
@@ -47,6 +47,13 @@ struct cbe_spu_info cbe_spu_info[MAX_NUMNODES];
47EXPORT_SYMBOL_GPL(cbe_spu_info); 47EXPORT_SYMBOL_GPL(cbe_spu_info);
48 48
49/* 49/*
50 * The spufs fault-handling code needs to call force_sig_info to raise signals
51 * on DMA errors. Export it here to avoid general kernel-wide access to this
52 * function
53 */
54EXPORT_SYMBOL_GPL(force_sig_info);
55
56/*
50 * Protects cbe_spu_info and spu->number. 57 * Protects cbe_spu_info and spu->number.
51 */ 58 */
52static DEFINE_SPINLOCK(spu_lock); 59static DEFINE_SPINLOCK(spu_lock);