aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2015-02-27 16:55:20 -0500
committerRichard Weinberger <richard@nod.at>2015-03-26 18:27:47 -0400
commit69886e676e89534953b12df77382504a7731f7bb (patch)
tree2d2f096782861f19e28880a9d209269ac8aad371 /fs
parentbc465aa9d045feb0e13b4a8f32cc33c1943f62d6 (diff)
hostfs: hostfs_file_open: Switch to data locking model
Instead of serializing hostfs_file_open() we can use a per inode mutex to protect ->mode. Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs')
-rw-r--r--fs/hostfs/hostfs_kern.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c
index fd62cae0fdcb..104d58d2c78c 100644
--- a/fs/hostfs/hostfs_kern.c
+++ b/fs/hostfs/hostfs_kern.c
@@ -24,6 +24,7 @@ struct hostfs_inode_info {
24 int fd; 24 int fd;
25 fmode_t mode; 25 fmode_t mode;
26 struct inode vfs_inode; 26 struct inode vfs_inode;
27 struct mutex open_mutex;
27}; 28};
28 29
29static inline struct hostfs_inode_info *HOSTFS_I(struct inode *inode) 30static inline struct hostfs_inode_info *HOSTFS_I(struct inode *inode)
@@ -225,6 +226,7 @@ static struct inode *hostfs_alloc_inode(struct super_block *sb)
225 hi->fd = -1; 226 hi->fd = -1;
226 hi->mode = 0; 227 hi->mode = 0;
227 inode_init_once(&hi->vfs_inode); 228 inode_init_once(&hi->vfs_inode);
229 mutex_init(&hi->open_mutex);
228 return &hi->vfs_inode; 230 return &hi->vfs_inode;
229} 231}
230 232
@@ -295,7 +297,6 @@ static int hostfs_readdir(struct file *file, struct dir_context *ctx)
295 297
296static int hostfs_file_open(struct inode *ino, struct file *file) 298static int hostfs_file_open(struct inode *ino, struct file *file)
297{ 299{
298 static DEFINE_MUTEX(open_mutex);
299 char *name; 300 char *name;
300 fmode_t mode = 0; 301 fmode_t mode = 0;
301 int err; 302 int err;
@@ -324,15 +325,15 @@ retry:
324 if (fd < 0) 325 if (fd < 0)
325 return fd; 326 return fd;
326 327
327 mutex_lock(&open_mutex); 328 mutex_lock(&HOSTFS_I(ino)->open_mutex);
328 /* somebody else had handled it first? */ 329 /* somebody else had handled it first? */
329 if ((mode & HOSTFS_I(ino)->mode) == mode) { 330 if ((mode & HOSTFS_I(ino)->mode) == mode) {
330 mutex_unlock(&open_mutex); 331 mutex_unlock(&HOSTFS_I(ino)->open_mutex);
331 return 0; 332 return 0;
332 } 333 }
333 if ((mode | HOSTFS_I(ino)->mode) != mode) { 334 if ((mode | HOSTFS_I(ino)->mode) != mode) {
334 mode |= HOSTFS_I(ino)->mode; 335 mode |= HOSTFS_I(ino)->mode;
335 mutex_unlock(&open_mutex); 336 mutex_unlock(&HOSTFS_I(ino)->open_mutex);
336 close_file(&fd); 337 close_file(&fd);
337 goto retry; 338 goto retry;
338 } 339 }
@@ -342,12 +343,12 @@ retry:
342 err = replace_file(fd, HOSTFS_I(ino)->fd); 343 err = replace_file(fd, HOSTFS_I(ino)->fd);
343 close_file(&fd); 344 close_file(&fd);
344 if (err < 0) { 345 if (err < 0) {
345 mutex_unlock(&open_mutex); 346 mutex_unlock(&HOSTFS_I(ino)->open_mutex);
346 return err; 347 return err;
347 } 348 }
348 } 349 }
349 HOSTFS_I(ino)->mode = mode; 350 HOSTFS_I(ino)->mode = mode;
350 mutex_unlock(&open_mutex); 351 mutex_unlock(&HOSTFS_I(ino)->open_mutex);
351 352
352 return 0; 353 return 0;
353} 354}