diff options
Diffstat (limited to 'fs/reiserfs/file.c')
| -rw-r--r-- | fs/reiserfs/file.c | 39 |
1 files changed, 11 insertions, 28 deletions
diff --git a/fs/reiserfs/file.c b/fs/reiserfs/file.c index ab45db529c80..9e451a68580f 100644 --- a/fs/reiserfs/file.c +++ b/fs/reiserfs/file.c | |||
| @@ -1059,20 +1059,12 @@ static int reiserfs_prepare_file_region_for_write(struct inode *inode | |||
| 1059 | maping blocks, since there is none, so we just zero out remaining | 1059 | maping blocks, since there is none, so we just zero out remaining |
| 1060 | parts of first and last pages in write area (if needed) */ | 1060 | parts of first and last pages in write area (if needed) */ |
| 1061 | if ((pos & ~((loff_t) PAGE_CACHE_SIZE - 1)) > inode->i_size) { | 1061 | if ((pos & ~((loff_t) PAGE_CACHE_SIZE - 1)) > inode->i_size) { |
| 1062 | if (from != 0) { /* First page needs to be partially zeroed */ | 1062 | if (from != 0) /* First page needs to be partially zeroed */ |
| 1063 | char *kaddr = kmap_atomic(prepared_pages[0], KM_USER0); | 1063 | zero_user_page(prepared_pages[0], 0, from, KM_USER0); |
| 1064 | memset(kaddr, 0, from); | 1064 | |
| 1065 | kunmap_atomic(kaddr, KM_USER0); | 1065 | if (to != PAGE_CACHE_SIZE) /* Last page needs to be partially zeroed */ |
| 1066 | flush_dcache_page(prepared_pages[0]); | 1066 | zero_user_page(prepared_pages[num_pages-1], to, |
| 1067 | } | 1067 | PAGE_CACHE_SIZE - to, KM_USER0); |
| 1068 | if (to != PAGE_CACHE_SIZE) { /* Last page needs to be partially zeroed */ | ||
| 1069 | char *kaddr = | ||
| 1070 | kmap_atomic(prepared_pages[num_pages - 1], | ||
| 1071 | KM_USER0); | ||
| 1072 | memset(kaddr + to, 0, PAGE_CACHE_SIZE - to); | ||
| 1073 | kunmap_atomic(kaddr, KM_USER0); | ||
| 1074 | flush_dcache_page(prepared_pages[num_pages - 1]); | ||
| 1075 | } | ||
| 1076 | 1068 | ||
| 1077 | /* Since all blocks are new - use already calculated value */ | 1069 | /* Since all blocks are new - use already calculated value */ |
| 1078 | return blocks; | 1070 | return blocks; |
| @@ -1199,13 +1191,9 @@ static int reiserfs_prepare_file_region_for_write(struct inode *inode | |||
| 1199 | ll_rw_block(READ, 1, &bh); | 1191 | ll_rw_block(READ, 1, &bh); |
| 1200 | *wait_bh++ = bh; | 1192 | *wait_bh++ = bh; |
| 1201 | } else { /* Not mapped, zero it */ | 1193 | } else { /* Not mapped, zero it */ |
| 1202 | char *kaddr = | 1194 | zero_user_page(prepared_pages[0], |
| 1203 | kmap_atomic(prepared_pages[0], | 1195 | block_start, |
| 1204 | KM_USER0); | 1196 | from - block_start, KM_USER0); |
| 1205 | memset(kaddr + block_start, 0, | ||
| 1206 | from - block_start); | ||
| 1207 | kunmap_atomic(kaddr, KM_USER0); | ||
| 1208 | flush_dcache_page(prepared_pages[0]); | ||
| 1209 | set_buffer_uptodate(bh); | 1197 | set_buffer_uptodate(bh); |
| 1210 | } | 1198 | } |
| 1211 | } | 1199 | } |
| @@ -1237,13 +1225,8 @@ static int reiserfs_prepare_file_region_for_write(struct inode *inode | |||
| 1237 | ll_rw_block(READ, 1, &bh); | 1225 | ll_rw_block(READ, 1, &bh); |
| 1238 | *wait_bh++ = bh; | 1226 | *wait_bh++ = bh; |
| 1239 | } else { /* Not mapped, zero it */ | 1227 | } else { /* Not mapped, zero it */ |
| 1240 | char *kaddr = | 1228 | zero_user_page(prepared_pages[num_pages-1], |
| 1241 | kmap_atomic(prepared_pages | 1229 | to, block_end - to, KM_USER0); |
| 1242 | [num_pages - 1], | ||
| 1243 | KM_USER0); | ||
| 1244 | memset(kaddr + to, 0, block_end - to); | ||
| 1245 | kunmap_atomic(kaddr, KM_USER0); | ||
| 1246 | flush_dcache_page(prepared_pages[num_pages - 1]); | ||
| 1247 | set_buffer_uptodate(bh); | 1230 | set_buffer_uptodate(bh); |
| 1248 | } | 1231 | } |
| 1249 | } | 1232 | } |
