diff options
Diffstat (limited to 'fs/ocfs2/aops.c')
| -rw-r--r-- | fs/ocfs2/aops.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c index 3d7c082a8f58..2f7268e81520 100644 --- a/fs/ocfs2/aops.c +++ b/fs/ocfs2/aops.c | |||
| @@ -200,7 +200,7 @@ static int ocfs2_readpage(struct file *file, struct page *page) | |||
| 200 | 200 | ||
| 201 | mlog_entry("(0x%p, %lu)\n", file, (page ? page->index : 0)); | 201 | mlog_entry("(0x%p, %lu)\n", file, (page ? page->index : 0)); |
| 202 | 202 | ||
| 203 | ret = ocfs2_meta_lock_with_page(inode, NULL, NULL, 0, page); | 203 | ret = ocfs2_meta_lock_with_page(inode, NULL, 0, page); |
| 204 | if (ret != 0) { | 204 | if (ret != 0) { |
| 205 | if (ret == AOP_TRUNCATED_PAGE) | 205 | if (ret == AOP_TRUNCATED_PAGE) |
| 206 | unlock = 0; | 206 | unlock = 0; |
| @@ -305,7 +305,7 @@ static int ocfs2_prepare_write(struct file *file, struct page *page, | |||
| 305 | 305 | ||
| 306 | mlog_entry("(0x%p, 0x%p, %u, %u)\n", file, page, from, to); | 306 | mlog_entry("(0x%p, 0x%p, %u, %u)\n", file, page, from, to); |
| 307 | 307 | ||
| 308 | ret = ocfs2_meta_lock_with_page(inode, NULL, NULL, 0, page); | 308 | ret = ocfs2_meta_lock_with_page(inode, NULL, 0, page); |
| 309 | if (ret != 0) { | 309 | if (ret != 0) { |
| 310 | mlog_errno(ret); | 310 | mlog_errno(ret); |
| 311 | goto out; | 311 | goto out; |
| @@ -355,16 +355,16 @@ static int walk_page_buffers( handle_t *handle, | |||
| 355 | return ret; | 355 | return ret; |
| 356 | } | 356 | } |
| 357 | 357 | ||
| 358 | struct ocfs2_journal_handle *ocfs2_start_walk_page_trans(struct inode *inode, | 358 | handle_t *ocfs2_start_walk_page_trans(struct inode *inode, |
| 359 | struct page *page, | 359 | struct page *page, |
| 360 | unsigned from, | 360 | unsigned from, |
| 361 | unsigned to) | 361 | unsigned to) |
| 362 | { | 362 | { |
| 363 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | 363 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
| 364 | struct ocfs2_journal_handle *handle = NULL; | 364 | handle_t *handle = NULL; |
| 365 | int ret = 0; | 365 | int ret = 0; |
| 366 | 366 | ||
| 367 | handle = ocfs2_start_trans(osb, NULL, OCFS2_INODE_UPDATE_CREDITS); | 367 | handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); |
| 368 | if (!handle) { | 368 | if (!handle) { |
| 369 | ret = -ENOMEM; | 369 | ret = -ENOMEM; |
| 370 | mlog_errno(ret); | 370 | mlog_errno(ret); |
| @@ -372,7 +372,7 @@ struct ocfs2_journal_handle *ocfs2_start_walk_page_trans(struct inode *inode, | |||
| 372 | } | 372 | } |
| 373 | 373 | ||
| 374 | if (ocfs2_should_order_data(inode)) { | 374 | if (ocfs2_should_order_data(inode)) { |
| 375 | ret = walk_page_buffers(handle->k_handle, | 375 | ret = walk_page_buffers(handle, |
| 376 | page_buffers(page), | 376 | page_buffers(page), |
| 377 | from, to, NULL, | 377 | from, to, NULL, |
| 378 | ocfs2_journal_dirty_data); | 378 | ocfs2_journal_dirty_data); |
| @@ -382,7 +382,7 @@ struct ocfs2_journal_handle *ocfs2_start_walk_page_trans(struct inode *inode, | |||
| 382 | out: | 382 | out: |
| 383 | if (ret) { | 383 | if (ret) { |
| 384 | if (handle) | 384 | if (handle) |
| 385 | ocfs2_commit_trans(handle); | 385 | ocfs2_commit_trans(osb, handle); |
| 386 | handle = ERR_PTR(ret); | 386 | handle = ERR_PTR(ret); |
| 387 | } | 387 | } |
| 388 | return handle; | 388 | return handle; |
| @@ -394,7 +394,7 @@ static int ocfs2_commit_write(struct file *file, struct page *page, | |||
| 394 | int ret; | 394 | int ret; |
| 395 | struct buffer_head *di_bh = NULL; | 395 | struct buffer_head *di_bh = NULL; |
| 396 | struct inode *inode = page->mapping->host; | 396 | struct inode *inode = page->mapping->host; |
| 397 | struct ocfs2_journal_handle *handle = NULL; | 397 | handle_t *handle = NULL; |
| 398 | struct ocfs2_dinode *di; | 398 | struct ocfs2_dinode *di; |
| 399 | 399 | ||
| 400 | mlog_entry("(0x%p, 0x%p, %u, %u)\n", file, page, from, to); | 400 | mlog_entry("(0x%p, 0x%p, %u, %u)\n", file, page, from, to); |
| @@ -412,7 +412,7 @@ static int ocfs2_commit_write(struct file *file, struct page *page, | |||
| 412 | * stale inode allocation image (i_size, i_clusters, etc). | 412 | * stale inode allocation image (i_size, i_clusters, etc). |
| 413 | */ | 413 | */ |
| 414 | 414 | ||
| 415 | ret = ocfs2_meta_lock_with_page(inode, NULL, &di_bh, 1, page); | 415 | ret = ocfs2_meta_lock_with_page(inode, &di_bh, 1, page); |
| 416 | if (ret != 0) { | 416 | if (ret != 0) { |
| 417 | mlog_errno(ret); | 417 | mlog_errno(ret); |
| 418 | goto out; | 418 | goto out; |
| @@ -464,7 +464,7 @@ static int ocfs2_commit_write(struct file *file, struct page *page, | |||
| 464 | } | 464 | } |
| 465 | 465 | ||
| 466 | out_commit: | 466 | out_commit: |
| 467 | ocfs2_commit_trans(handle); | 467 | ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle); |
| 468 | out_unlock_data: | 468 | out_unlock_data: |
| 469 | ocfs2_data_unlock(inode, 1); | 469 | ocfs2_data_unlock(inode, 1); |
| 470 | out_unlock_meta: | 470 | out_unlock_meta: |
| @@ -490,7 +490,7 @@ static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block) | |||
| 490 | * accessed concurrently from multiple nodes. | 490 | * accessed concurrently from multiple nodes. |
| 491 | */ | 491 | */ |
| 492 | if (!INODE_JOURNAL(inode)) { | 492 | if (!INODE_JOURNAL(inode)) { |
| 493 | err = ocfs2_meta_lock(inode, NULL, NULL, 0); | 493 | err = ocfs2_meta_lock(inode, NULL, 0); |
| 494 | if (err) { | 494 | if (err) { |
| 495 | if (err != -ENOENT) | 495 | if (err != -ENOENT) |
| 496 | mlog_errno(err); | 496 | mlog_errno(err); |
