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/readdir.c | |
| parent | a457aa6c2bdd743bbbffd3f9e4fdbd8c71f8af1b (diff) | |
| parent | 11b751ae8c8ca3fa24c85bd5a3e51dd9f95cda17 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/mingo/mutex-2.6
Diffstat (limited to 'fs/readdir.c')
| -rw-r--r-- | fs/readdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/readdir.c b/fs/readdir.c index b03579bc0210..b6109329b607 100644 --- a/fs/readdir.c +++ b/fs/readdir.c | |||
| @@ -30,13 +30,13 @@ int vfs_readdir(struct file *file, filldir_t filler, void *buf) | |||
| 30 | if (res) | 30 | if (res) |
| 31 | goto out; | 31 | goto out; |
| 32 | 32 | ||
| 33 | down(&inode->i_sem); | 33 | mutex_lock(&inode->i_mutex); |
| 34 | res = -ENOENT; | 34 | res = -ENOENT; |
| 35 | if (!IS_DEADDIR(inode)) { | 35 | if (!IS_DEADDIR(inode)) { |
| 36 | res = file->f_op->readdir(file, buf, filler); | 36 | res = file->f_op->readdir(file, buf, filler); |
| 37 | file_accessed(file); | 37 | file_accessed(file); |
| 38 | } | 38 | } |
| 39 | up(&inode->i_sem); | 39 | mutex_unlock(&inode->i_mutex); |
| 40 | out: | 40 | out: |
| 41 | return res; | 41 | return res; |
| 42 | } | 42 | } |
