diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-09 20:31:38 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-09 20:31:38 -0500 |
| commit | 80c0531514516e43ae118ddf38424e06e5c3cb3c (patch) | |
| tree | 2eef8cf8fdf505b18f83078d1eb41167e98f5b54 /fs/fifo.c | |
| parent | a457aa6c2bdd743bbbffd3f9e4fdbd8c71f8af1b (diff) | |
| parent | 11b751ae8c8ca3fa24c85bd5a3e51dd9f95cda17 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/mingo/mutex-2.6
Diffstat (limited to 'fs/fifo.c')
| -rw-r--r-- | fs/fifo.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -35,7 +35,7 @@ static int fifo_open(struct inode *inode, struct file *filp) | |||
| 35 | int ret; | 35 | int ret; |
| 36 | 36 | ||
| 37 | ret = -ERESTARTSYS; | 37 | ret = -ERESTARTSYS; |
| 38 | if (down_interruptible(PIPE_SEM(*inode))) | 38 | if (mutex_lock_interruptible(PIPE_MUTEX(*inode))) |
| 39 | goto err_nolock_nocleanup; | 39 | goto err_nolock_nocleanup; |
| 40 | 40 | ||
| 41 | if (!inode->i_pipe) { | 41 | if (!inode->i_pipe) { |
| @@ -119,7 +119,7 @@ static int fifo_open(struct inode *inode, struct file *filp) | |||
| 119 | } | 119 | } |
| 120 | 120 | ||
| 121 | /* Ok! */ | 121 | /* Ok! */ |
| 122 | up(PIPE_SEM(*inode)); | 122 | mutex_unlock(PIPE_MUTEX(*inode)); |
| 123 | return 0; | 123 | return 0; |
| 124 | 124 | ||
| 125 | err_rd: | 125 | err_rd: |
| @@ -139,7 +139,7 @@ err: | |||
| 139 | free_pipe_info(inode); | 139 | free_pipe_info(inode); |
| 140 | 140 | ||
| 141 | err_nocleanup: | 141 | err_nocleanup: |
| 142 | up(PIPE_SEM(*inode)); | 142 | mutex_unlock(PIPE_MUTEX(*inode)); |
| 143 | 143 | ||
| 144 | err_nolock_nocleanup: | 144 | err_nolock_nocleanup: |
| 145 | return ret; | 145 | return ret; |
