diff options
| author | OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> | 2005-09-16 22:28:13 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-17 14:50:02 -0400 |
| commit | ef402268f7c9ab1872cafa1e638eb78a75b7c18f (patch) | |
| tree | a3734b16fed370c17349fd45dbb2a0d5798db2fa /fs/fat | |
| parent | 4fb3a53860cee2aaaf81186c451b7da0b95b45c1 (diff) | |
[PATCH] FAT: miss-sync issues on sync mount (miss-sync on write)
This patch fixes miss-sync issue on write() system call. This updates
inode attrs flags, mtime and ctime on every comit_write call, due to
locking.
Signed-off-by: Hiroyuki Machida <machida@sm.sony.co.jp>
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/fat')
| -rw-r--r-- | fs/fat/file.c | 37 | ||||
| -rw-r--r-- | fs/fat/inode.c | 15 |
2 files changed, 16 insertions, 36 deletions
diff --git a/fs/fat/file.c b/fs/fat/file.c index 62ffa91394..7134403d5b 100644 --- a/fs/fat/file.c +++ b/fs/fat/file.c | |||
| @@ -12,39 +12,6 @@ | |||
| 12 | #include <linux/smp_lock.h> | 12 | #include <linux/smp_lock.h> |
| 13 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 14 | 14 | ||
| 15 | static ssize_t fat_file_aio_write(struct kiocb *iocb, const char __user *buf, | ||
| 16 | size_t count, loff_t pos) | ||
| 17 | { | ||
| 18 | struct inode *inode = iocb->ki_filp->f_dentry->d_inode; | ||
| 19 | int retval; | ||
| 20 | |||
| 21 | retval = generic_file_aio_write(iocb, buf, count, pos); | ||
| 22 | if (retval > 0) { | ||
| 23 | inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC; | ||
| 24 | MSDOS_I(inode)->i_attrs |= ATTR_ARCH; | ||
| 25 | mark_inode_dirty(inode); | ||
| 26 | // check the locking rules | ||
| 27 | // if (IS_SYNC(inode)) | ||
| 28 | // fat_sync_inode(inode); | ||
| 29 | } | ||
| 30 | return retval; | ||
| 31 | } | ||
| 32 | |||
| 33 | static ssize_t fat_file_writev(struct file *filp, const struct iovec *iov, | ||
| 34 | unsigned long nr_segs, loff_t *ppos) | ||
| 35 | { | ||
| 36 | struct inode *inode = filp->f_dentry->d_inode; | ||
| 37 | int retval; | ||
| 38 | |||
| 39 | retval = generic_file_writev(filp, iov, nr_segs, ppos); | ||
| 40 | if (retval > 0) { | ||
| 41 | inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC; | ||
| 42 | MSDOS_I(inode)->i_attrs |= ATTR_ARCH; | ||
| 43 | mark_inode_dirty(inode); | ||
| 44 | } | ||
| 45 | return retval; | ||
| 46 | } | ||
| 47 | |||
| 48 | int fat_generic_ioctl(struct inode *inode, struct file *filp, | 15 | int fat_generic_ioctl(struct inode *inode, struct file *filp, |
| 49 | unsigned int cmd, unsigned long arg) | 16 | unsigned int cmd, unsigned long arg) |
| 50 | { | 17 | { |
| @@ -148,9 +115,9 @@ struct file_operations fat_file_operations = { | |||
| 148 | .read = do_sync_read, | 115 | .read = do_sync_read, |
| 149 | .write = do_sync_write, | 116 | .write = do_sync_write, |
| 150 | .readv = generic_file_readv, | 117 | .readv = generic_file_readv, |
| 151 | .writev = fat_file_writev, | 118 | .writev = generic_file_writev, |
| 152 | .aio_read = generic_file_aio_read, | 119 | .aio_read = generic_file_aio_read, |
| 153 | .aio_write = fat_file_aio_write, | 120 | .aio_write = generic_file_aio_write, |
| 154 | .mmap = generic_file_mmap, | 121 | .mmap = generic_file_mmap, |
| 155 | .ioctl = fat_generic_ioctl, | 122 | .ioctl = fat_generic_ioctl, |
| 156 | .fsync = file_fsync, | 123 | .fsync = file_fsync, |
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index a7cbe68e22..51b1d15d9d 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c | |||
| @@ -102,6 +102,19 @@ static int fat_prepare_write(struct file *file, struct page *page, | |||
| 102 | &MSDOS_I(page->mapping->host)->mmu_private); | 102 | &MSDOS_I(page->mapping->host)->mmu_private); |
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | static int fat_commit_write(struct file *file, struct page *page, | ||
| 106 | unsigned from, unsigned to) | ||
| 107 | { | ||
| 108 | struct inode *inode = page->mapping->host; | ||
| 109 | int err = generic_commit_write(file, page, from, to); | ||
| 110 | if (!err && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) { | ||
| 111 | inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC; | ||
| 112 | MSDOS_I(inode)->i_attrs |= ATTR_ARCH; | ||
| 113 | mark_inode_dirty(inode); | ||
| 114 | } | ||
| 115 | return err; | ||
| 116 | } | ||
| 117 | |||
| 105 | static sector_t _fat_bmap(struct address_space *mapping, sector_t block) | 118 | static sector_t _fat_bmap(struct address_space *mapping, sector_t block) |
| 106 | { | 119 | { |
| 107 | return generic_block_bmap(mapping, block, fat_get_block); | 120 | return generic_block_bmap(mapping, block, fat_get_block); |
| @@ -112,7 +125,7 @@ static struct address_space_operations fat_aops = { | |||
| 112 | .writepage = fat_writepage, | 125 | .writepage = fat_writepage, |
| 113 | .sync_page = block_sync_page, | 126 | .sync_page = block_sync_page, |
| 114 | .prepare_write = fat_prepare_write, | 127 | .prepare_write = fat_prepare_write, |
| 115 | .commit_write = generic_commit_write, | 128 | .commit_write = fat_commit_write, |
| 116 | .bmap = _fat_bmap | 129 | .bmap = _fat_bmap |
| 117 | }; | 130 | }; |
| 118 | 131 | ||
