mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	The changed files were only including linux/module.h for the EXPORT_SYMBOL infrastructure, and nothing else. Revector them onto the isolated export header for faster compile times. Nothing to see here but a whole lot of instances of: -#include <linux/module.h> +#include <linux/export.h> This commit is only changing the kernel dir; next targets will probably be mm, fs, the arch dirs, etc. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
		
			
				
	
	
		
			132 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* kernel/rwsem.c: R/W semaphores, public implementation
 | 
						|
 *
 | 
						|
 * Written by David Howells (dhowells@redhat.com).
 | 
						|
 * Derived from asm-i386/semaphore.h
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/types.h>
 | 
						|
#include <linux/kernel.h>
 | 
						|
#include <linux/sched.h>
 | 
						|
#include <linux/export.h>
 | 
						|
#include <linux/rwsem.h>
 | 
						|
 | 
						|
#include <asm/system.h>
 | 
						|
#include <linux/atomic.h>
 | 
						|
 | 
						|
/*
 | 
						|
 * lock for reading
 | 
						|
 */
 | 
						|
void __sched down_read(struct rw_semaphore *sem)
 | 
						|
{
 | 
						|
	might_sleep();
 | 
						|
	rwsem_acquire_read(&sem->dep_map, 0, 0, _RET_IP_);
 | 
						|
 | 
						|
	LOCK_CONTENDED(sem, __down_read_trylock, __down_read);
 | 
						|
}
 | 
						|
 | 
						|
EXPORT_SYMBOL(down_read);
 | 
						|
 | 
						|
/*
 | 
						|
 * trylock for reading -- returns 1 if successful, 0 if contention
 | 
						|
 */
 | 
						|
int down_read_trylock(struct rw_semaphore *sem)
 | 
						|
{
 | 
						|
	int ret = __down_read_trylock(sem);
 | 
						|
 | 
						|
	if (ret == 1)
 | 
						|
		rwsem_acquire_read(&sem->dep_map, 0, 1, _RET_IP_);
 | 
						|
	return ret;
 | 
						|
}
 | 
						|
 | 
						|
EXPORT_SYMBOL(down_read_trylock);
 | 
						|
 | 
						|
/*
 | 
						|
 * lock for writing
 | 
						|
 */
 | 
						|
void __sched down_write(struct rw_semaphore *sem)
 | 
						|
{
 | 
						|
	might_sleep();
 | 
						|
	rwsem_acquire(&sem->dep_map, 0, 0, _RET_IP_);
 | 
						|
 | 
						|
	LOCK_CONTENDED(sem, __down_write_trylock, __down_write);
 | 
						|
}
 | 
						|
 | 
						|
EXPORT_SYMBOL(down_write);
 | 
						|
 | 
						|
/*
 | 
						|
 * trylock for writing -- returns 1 if successful, 0 if contention
 | 
						|
 */
 | 
						|
int down_write_trylock(struct rw_semaphore *sem)
 | 
						|
{
 | 
						|
	int ret = __down_write_trylock(sem);
 | 
						|
 | 
						|
	if (ret == 1)
 | 
						|
		rwsem_acquire(&sem->dep_map, 0, 1, _RET_IP_);
 | 
						|
	return ret;
 | 
						|
}
 | 
						|
 | 
						|
EXPORT_SYMBOL(down_write_trylock);
 | 
						|
 | 
						|
/*
 | 
						|
 * release a read lock
 | 
						|
 */
 | 
						|
void up_read(struct rw_semaphore *sem)
 | 
						|
{
 | 
						|
	rwsem_release(&sem->dep_map, 1, _RET_IP_);
 | 
						|
 | 
						|
	__up_read(sem);
 | 
						|
}
 | 
						|
 | 
						|
EXPORT_SYMBOL(up_read);
 | 
						|
 | 
						|
/*
 | 
						|
 * release a write lock
 | 
						|
 */
 | 
						|
void up_write(struct rw_semaphore *sem)
 | 
						|
{
 | 
						|
	rwsem_release(&sem->dep_map, 1, _RET_IP_);
 | 
						|
 | 
						|
	__up_write(sem);
 | 
						|
}
 | 
						|
 | 
						|
EXPORT_SYMBOL(up_write);
 | 
						|
 | 
						|
/*
 | 
						|
 * downgrade write lock to read lock
 | 
						|
 */
 | 
						|
void downgrade_write(struct rw_semaphore *sem)
 | 
						|
{
 | 
						|
	/*
 | 
						|
	 * lockdep: a downgraded write will live on as a write
 | 
						|
	 * dependency.
 | 
						|
	 */
 | 
						|
	__downgrade_write(sem);
 | 
						|
}
 | 
						|
 | 
						|
EXPORT_SYMBOL(downgrade_write);
 | 
						|
 | 
						|
#ifdef CONFIG_DEBUG_LOCK_ALLOC
 | 
						|
 | 
						|
void down_read_nested(struct rw_semaphore *sem, int subclass)
 | 
						|
{
 | 
						|
	might_sleep();
 | 
						|
	rwsem_acquire_read(&sem->dep_map, subclass, 0, _RET_IP_);
 | 
						|
 | 
						|
	LOCK_CONTENDED(sem, __down_read_trylock, __down_read);
 | 
						|
}
 | 
						|
 | 
						|
EXPORT_SYMBOL(down_read_nested);
 | 
						|
 | 
						|
void down_write_nested(struct rw_semaphore *sem, int subclass)
 | 
						|
{
 | 
						|
	might_sleep();
 | 
						|
	rwsem_acquire(&sem->dep_map, subclass, 0, _RET_IP_);
 | 
						|
 | 
						|
	LOCK_CONTENDED(sem, __down_write_trylock, __down_write);
 | 
						|
}
 | 
						|
 | 
						|
EXPORT_SYMBOL(down_write_nested);
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
 |