diff options
author | Christoph Hellwig <hch@infradead.org> | 2011-06-24 14:29:40 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-20 20:47:44 -0400 |
commit | 582686915803e34adc8fdcd90bff7ca7f6a42221 (patch) | |
tree | 5a522cb6dbc41eaac987dbf15a2cbae35b2544cc | |
parent | 8c5dc70aae29d2571c0f461d69b37e4e6e01ff4c (diff) |
fat: remove i_alloc_sem abuse
Add a new rw_semaphore to protect bmap against truncate. Previous
i_alloc_sem was abused for this, but it's going away in this series.
Note that we can't simply use i_mutex, given that the swapon code
calls ->bmap under it.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | fs/fat/fat.h | 1 | ||||
-rw-r--r-- | fs/fat/file.c | 2 | ||||
-rw-r--r-- | fs/fat/inode.c | 6 |
3 files changed, 7 insertions, 2 deletions
diff --git a/fs/fat/fat.h b/fs/fat/fat.h index 8276cc282dec..a975b4147e91 100644 --- a/fs/fat/fat.h +++ b/fs/fat/fat.h | |||
@@ -109,6 +109,7 @@ struct msdos_inode_info { | |||
109 | int i_attrs; /* unused attribute bits */ | 109 | int i_attrs; /* unused attribute bits */ |
110 | loff_t i_pos; /* on-disk position of directory entry or 0 */ | 110 | loff_t i_pos; /* on-disk position of directory entry or 0 */ |
111 | struct hlist_node i_fat_hash; /* hash by i_location */ | 111 | struct hlist_node i_fat_hash; /* hash by i_location */ |
112 | struct rw_semaphore truncate_lock; /* protect bmap against truncate */ | ||
112 | struct inode vfs_inode; | 113 | struct inode vfs_inode; |
113 | }; | 114 | }; |
114 | 115 | ||
diff --git a/fs/fat/file.c b/fs/fat/file.c index 7018e1d8902d..a4a3a3c06436 100644 --- a/fs/fat/file.c +++ b/fs/fat/file.c | |||
@@ -429,8 +429,10 @@ int fat_setattr(struct dentry *dentry, struct iattr *attr) | |||
429 | } | 429 | } |
430 | 430 | ||
431 | if (attr->ia_valid & ATTR_SIZE) { | 431 | if (attr->ia_valid & ATTR_SIZE) { |
432 | down_write(&MSDOS_I(inode)->truncate_lock); | ||
432 | truncate_setsize(inode, attr->ia_size); | 433 | truncate_setsize(inode, attr->ia_size); |
433 | fat_truncate_blocks(inode, attr->ia_size); | 434 | fat_truncate_blocks(inode, attr->ia_size); |
435 | up_write(&MSDOS_I(inode)->truncate_lock); | ||
434 | } | 436 | } |
435 | 437 | ||
436 | setattr_copy(inode, attr); | 438 | setattr_copy(inode, attr); |
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index cb8d8391ac0b..3decce46c38f 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c | |||
@@ -224,9 +224,9 @@ static sector_t _fat_bmap(struct address_space *mapping, sector_t block) | |||
224 | sector_t blocknr; | 224 | sector_t blocknr; |
225 | 225 | ||
226 | /* fat_get_cluster() assumes the requested blocknr isn't truncated. */ | 226 | /* fat_get_cluster() assumes the requested blocknr isn't truncated. */ |
227 | down_read(&mapping->host->i_alloc_sem); | 227 | down_read(&MSDOS_I(mapping->host)->truncate_lock); |
228 | blocknr = generic_block_bmap(mapping, block, fat_get_block); | 228 | blocknr = generic_block_bmap(mapping, block, fat_get_block); |
229 | up_read(&mapping->host->i_alloc_sem); | 229 | up_read(&MSDOS_I(mapping->host)->truncate_lock); |
230 | 230 | ||
231 | return blocknr; | 231 | return blocknr; |
232 | } | 232 | } |
@@ -510,6 +510,8 @@ static struct inode *fat_alloc_inode(struct super_block *sb) | |||
510 | ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS); | 510 | ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS); |
511 | if (!ei) | 511 | if (!ei) |
512 | return NULL; | 512 | return NULL; |
513 | |||
514 | init_rwsem(&ei->truncate_lock); | ||
513 | return &ei->vfs_inode; | 515 | return &ei->vfs_inode; |
514 | } | 516 | } |
515 | 517 | ||