Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257375
b: refs/heads/master
c: 5826869
h: refs/heads/master
i:
  257373: f540876
  257371: 5ec70b7
  257367: 0a62310
  257359: 06d1ae9
  257343: 8efaec2
v: v3
  • Loading branch information
Christoph Hellwig authored and Al Viro committed Jul 21, 2011
1 parent fb17b1a commit af62bae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8c5dc70aae29d2571c0f461d69b37e4e6e01ff4c
refs/heads/master: 582686915803e34adc8fdcd90bff7ca7f6a42221
1 change: 1 addition & 0 deletions trunk/fs/fat/fat.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ struct msdos_inode_info {
int i_attrs; /* unused attribute bits */
loff_t i_pos; /* on-disk position of directory entry or 0 */
struct hlist_node i_fat_hash; /* hash by i_location */
struct rw_semaphore truncate_lock; /* protect bmap against truncate */
struct inode vfs_inode;
};

Expand Down
2 changes: 2 additions & 0 deletions trunk/fs/fat/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,10 @@ int fat_setattr(struct dentry *dentry, struct iattr *attr)
}

if (attr->ia_valid & ATTR_SIZE) {
down_write(&MSDOS_I(inode)->truncate_lock);
truncate_setsize(inode, attr->ia_size);
fat_truncate_blocks(inode, attr->ia_size);
up_write(&MSDOS_I(inode)->truncate_lock);
}

setattr_copy(inode, attr);
Expand Down
6 changes: 4 additions & 2 deletions trunk/fs/fat/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,9 @@ static sector_t _fat_bmap(struct address_space *mapping, sector_t block)
sector_t blocknr;

/* fat_get_cluster() assumes the requested blocknr isn't truncated. */
down_read(&mapping->host->i_alloc_sem);
down_read(&MSDOS_I(mapping->host)->truncate_lock);
blocknr = generic_block_bmap(mapping, block, fat_get_block);
up_read(&mapping->host->i_alloc_sem);
up_read(&MSDOS_I(mapping->host)->truncate_lock);

return blocknr;
}
Expand Down Expand Up @@ -510,6 +510,8 @@ static struct inode *fat_alloc_inode(struct super_block *sb)
ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
if (!ei)
return NULL;

init_rwsem(&ei->truncate_lock);
return &ei->vfs_inode;
}

Expand Down

0 comments on commit af62bae

Please sign in to comment.