提交 c16a87ce 编写于 作者: T Thomas Gleixner

rwsem: Cleanup includes

All rwsem implementations include the same headers. Include them from
include/linux/rwsem.h
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: David Howells <dhowells@redhat.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Matt Turner <mattst88@gmail.com>
Acked-by: NTony Luck <tony.luck@intel.com>
Acked-by: NHeiko Carstens <heiko.carstens@de.ibm.com>
Cc: Paul Mundt <lethal@linux-sh.org>
Acked-by: NDavid Miller <davem@davemloft.net>
Cc: Chris Zankel <chris@zankel.net>
LKML-Reference: <20110126195833.483520950@linutronix.de>
上级 d04fa5a3
...@@ -13,10 +13,6 @@ ...@@ -13,10 +13,6 @@
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/compiler.h> #include <linux/compiler.h>
#include <linux/list.h>
#include <linux/spinlock.h>
struct rwsem_waiter;
extern struct rw_semaphore *rwsem_down_read_failed(struct rw_semaphore *sem); extern struct rw_semaphore *rwsem_down_read_failed(struct rw_semaphore *sem);
extern struct rw_semaphore *rwsem_down_write_failed(struct rw_semaphore *sem); extern struct rw_semaphore *rwsem_down_write_failed(struct rw_semaphore *sem);
......
...@@ -25,9 +25,6 @@ ...@@ -25,9 +25,6 @@
#error "Please don't include <asm/rwsem.h> directly, use <linux/rwsem.h> instead." #error "Please don't include <asm/rwsem.h> directly, use <linux/rwsem.h> instead."
#endif #endif
#include <linux/list.h>
#include <linux/spinlock.h>
#include <asm/intrinsics.h> #include <asm/intrinsics.h>
/* /*
......
...@@ -13,11 +13,6 @@ ...@@ -13,11 +13,6 @@
* by Paul Mackerras <paulus@samba.org>. * by Paul Mackerras <paulus@samba.org>.
*/ */
#include <linux/list.h>
#include <linux/spinlock.h>
#include <asm/atomic.h>
#include <asm/system.h>
/* /*
* the semaphore definition * the semaphore definition
*/ */
......
...@@ -43,11 +43,6 @@ ...@@ -43,11 +43,6 @@
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/list.h>
#include <linux/spinlock.h>
struct rwsem_waiter;
extern struct rw_semaphore *rwsem_down_read_failed(struct rw_semaphore *); extern struct rw_semaphore *rwsem_down_read_failed(struct rw_semaphore *);
extern struct rw_semaphore *rwsem_down_write_failed(struct rw_semaphore *); extern struct rw_semaphore *rwsem_down_write_failed(struct rw_semaphore *);
extern struct rw_semaphore *rwsem_wake(struct rw_semaphore *); extern struct rw_semaphore *rwsem_wake(struct rw_semaphore *);
......
...@@ -11,11 +11,6 @@ ...@@ -11,11 +11,6 @@
#endif #endif
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/list.h>
#include <linux/spinlock.h>
#include <asm/atomic.h>
#include <asm/system.h>
/* /*
* the semaphore definition * the semaphore definition
*/ */
......
...@@ -12,12 +12,6 @@ ...@@ -12,12 +12,6 @@
#endif #endif
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/list.h>
#include <linux/spinlock.h>
struct rwsem_waiter;
struct rw_semaphore { struct rw_semaphore {
signed long count; signed long count;
#define RWSEM_UNLOCKED_VALUE 0x00000000L #define RWSEM_UNLOCKED_VALUE 0x00000000L
......
...@@ -37,14 +37,8 @@ ...@@ -37,14 +37,8 @@
#endif #endif
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/list.h>
#include <linux/spinlock.h>
#include <linux/lockdep.h>
#include <asm/asm.h> #include <asm/asm.h>
struct rwsem_waiter;
extern asmregparm struct rw_semaphore * extern asmregparm struct rw_semaphore *
rwsem_down_read_failed(struct rw_semaphore *sem); rwsem_down_read_failed(struct rw_semaphore *sem);
extern asmregparm struct rw_semaphore * extern asmregparm struct rw_semaphore *
......
...@@ -16,12 +16,6 @@ ...@@ -16,12 +16,6 @@
#ifndef _LINUX_RWSEM_H #ifndef _LINUX_RWSEM_H
#error "Please don't include <asm/rwsem.h> directly, use <linux/rwsem.h> instead." #error "Please don't include <asm/rwsem.h> directly, use <linux/rwsem.h> instead."
#endif #endif
#include <linux/list.h>
#include <linux/spinlock.h>
#include <asm/atomic.h>
#include <asm/system.h>
/* /*
* the semaphore definition * the semaphore definition
*/ */
......
...@@ -12,15 +12,7 @@ ...@@ -12,15 +12,7 @@
#error "please don't include linux/rwsem-spinlock.h directly, use linux/rwsem.h instead" #error "please don't include linux/rwsem-spinlock.h directly, use linux/rwsem.h instead"
#endif #endif
#include <linux/spinlock.h>
#include <linux/list.h>
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/types.h>
struct rwsem_waiter;
/* /*
* the rw-semaphore definition * the rw-semaphore definition
* - if activity is 0 then there are no active readers or writers * - if activity is 0 then there are no active readers or writers
......
...@@ -11,6 +11,9 @@ ...@@ -11,6 +11,9 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/list.h>
#include <linux/spinlock.h>
#include <asm/system.h> #include <asm/system.h>
#include <asm/atomic.h> #include <asm/atomic.h>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册