diff options
| author | Torben Hohn <torbenh@gmx.de> | 2011-01-25 15:07:35 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-26 10:50:06 +1000 | 
| commit | ac751efa6a0d70f2c9daef5c7e3a92270f5c2dff (patch) | |
| tree | e2d3f799e20e2cbca80891ea17af7484f21d628f /drivers/tty/vt/vc_screen.c | |
| parent | 3689456b4bd36027022b3215eb2acba51cd0e6b5 (diff) | |
| download | olio-linux-3.10-ac751efa6a0d70f2c9daef5c7e3a92270f5c2dff.tar.xz olio-linux-3.10-ac751efa6a0d70f2c9daef5c7e3a92270f5c2dff.zip  | |
console: rename acquire/release_console_sem() to console_lock/unlock()
The -rt patches change the console_semaphore to console_mutex.  As a
result, a quite large chunk of the patches changes all
acquire/release_console_sem() to acquire/release_console_mutex()
This commit makes things use more neutral function names which dont make
implications about the underlying lock.
The only real change is the return value of console_trylock which is
inverted from try_acquire_console_sem()
This patch also paves the way to switching console_sem from a semaphore to
a mutex.
[akpm@linux-foundation.org: coding-style fixes]
[akpm@linux-foundation.org: make console_trylock return 1 on success, per Geert]
Signed-off-by: Torben Hohn <torbenh@gmx.de>
Cc: Thomas Gleixner <tglx@tglx.de>
Cc: Greg KH <gregkh@suse.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/tty/vt/vc_screen.c')
| -rw-r--r-- | drivers/tty/vt/vc_screen.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/tty/vt/vc_screen.c b/drivers/tty/vt/vc_screen.c index eab3a1ff99e..a672ed192d3 100644 --- a/drivers/tty/vt/vc_screen.c +++ b/drivers/tty/vt/vc_screen.c @@ -202,7 +202,7 @@ vcs_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)  	/* Select the proper current console and verify  	 * sanity of the situation under the console lock.  	 */ -	acquire_console_sem(); +	console_lock();  	attr = (currcons & 128);  	currcons = (currcons & 127); @@ -336,9 +336,9 @@ vcs_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)  		 * the pagefault handling code may want to call printk().  		 */ -		release_console_sem(); +		console_unlock();  		ret = copy_to_user(buf, con_buf_start, orig_count); -		acquire_console_sem(); +		console_lock();  		if (ret) {  			read += (orig_count - ret); @@ -354,7 +354,7 @@ vcs_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)  	if (read)  		ret = read;  unlock_out: -	release_console_sem(); +	console_unlock();  	mutex_unlock(&con_buf_mtx);  	return ret;  } @@ -379,7 +379,7 @@ vcs_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)  	/* Select the proper current console and verify  	 * sanity of the situation under the console lock.  	 */ -	acquire_console_sem(); +	console_lock();  	attr = (currcons & 128);  	currcons = (currcons & 127); @@ -414,9 +414,9 @@ vcs_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)  		/* Temporarily drop the console lock so that we can read  		 * in the write data from userspace safely.  		 */ -		release_console_sem(); +		console_unlock();  		ret = copy_from_user(con_buf, buf, this_round); -		acquire_console_sem(); +		console_lock();  		if (ret) {  			this_round -= ret; @@ -542,7 +542,7 @@ vcs_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)  		vcs_scr_updated(vc);  unlock_out: -	release_console_sem(); +	console_unlock();  	mutex_unlock(&con_buf_mtx);  |