patch-2.1.127 linux/fs/hfs/file.c
Next file: linux/fs/hfs/file_cap.c
Previous file: linux/fs/hfs/extent.c
Back to the patch index
Back to the overall index
- Lines: 45
- Date:
Mon Nov 2 09:35:16 1998
- Orig file:
v2.1.126/linux/fs/hfs/file.c
- Orig date:
Thu Sep 17 17:53:37 1998
diff -u --recursive --new-file v2.1.126/linux/fs/hfs/file.c linux/fs/hfs/file.c
@@ -98,11 +98,11 @@
/* If writing the block, then we have exclusive access
to the file until we return, so it can't have moved.
*/
- if (tmp) {
- hfs_cat_mark_dirty(fork->entry);
- return getblk(dev, tmp, HFS_SECTOR_SIZE);
- }
- return NULL;
+ if (tmp) {
+ hfs_cat_mark_dirty(fork->entry);
+ return getblk(dev, tmp, HFS_SECTOR_SIZE);
+ }
+ return NULL;
} else {
/* If reading the block, then retry since the
location on disk could have changed while
@@ -220,8 +220,10 @@
pos += written;
*ppos = pos;
- if (*ppos > inode->i_size)
+ if (*ppos > inode->i_size) {
inode->i_size = *ppos;
+ mark_inode_dirty(inode);
+ }
return written;
}
@@ -236,7 +238,6 @@
*/
static void hfs_file_truncate(struct inode * inode)
{
- /*struct inode *inode = dentry->d_inode;*/
struct hfs_fork *fork = HFS_I(inode)->fork;
fork->lsize = inode->i_size;
@@ -245,6 +246,7 @@
inode->i_size = fork->lsize;
inode->i_blocks = fork->psize;
+ mark_inode_dirty(inode);
}
/*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov