Lines Matching refs:handle
256 handle_t *handle; in ocfs2_update_inode_atime() local
259 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); in ocfs2_update_inode_atime()
260 if (IS_ERR(handle)) { in ocfs2_update_inode_atime()
261 ret = PTR_ERR(handle); in ocfs2_update_inode_atime()
266 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh, in ocfs2_update_inode_atime()
281 ocfs2_update_inode_fsync_trans(handle, inode, 0); in ocfs2_update_inode_atime()
282 ocfs2_journal_dirty(handle, bh); in ocfs2_update_inode_atime()
285 ocfs2_commit_trans(osb, handle); in ocfs2_update_inode_atime()
290 int ocfs2_set_inode_size(handle_t *handle, in ocfs2_set_inode_size() argument
301 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh); in ocfs2_set_inode_size()
317 handle_t *handle = NULL; in ocfs2_simple_size_update() local
319 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); in ocfs2_simple_size_update()
320 if (IS_ERR(handle)) { in ocfs2_simple_size_update()
321 ret = PTR_ERR(handle); in ocfs2_simple_size_update()
326 ret = ocfs2_set_inode_size(handle, inode, di_bh, in ocfs2_simple_size_update()
331 ocfs2_update_inode_fsync_trans(handle, inode, 0); in ocfs2_simple_size_update()
332 ocfs2_commit_trans(osb, handle); in ocfs2_simple_size_update()
376 handle_t *handle; in ocfs2_orphan_for_truncate() local
394 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); in ocfs2_orphan_for_truncate()
395 if (IS_ERR(handle)) { in ocfs2_orphan_for_truncate()
396 status = PTR_ERR(handle); in ocfs2_orphan_for_truncate()
401 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh, in ocfs2_orphan_for_truncate()
412 status = ocfs2_zero_range_for_truncate(inode, handle, new_i_size, in ocfs2_orphan_for_truncate()
426 ocfs2_update_inode_fsync_trans(handle, inode, 0); in ocfs2_orphan_for_truncate()
428 ocfs2_journal_dirty(handle, fe_bh); in ocfs2_orphan_for_truncate()
431 ocfs2_commit_trans(osb, handle); in ocfs2_orphan_for_truncate()
536 handle_t *handle, in ocfs2_add_inode_data() argument
545 ret = ocfs2_add_clusters_in_btree(handle, &et, logical_offset, in ocfs2_add_inode_data()
561 handle_t *handle = NULL; in ocfs2_extend_allocation() local
594 handle = ocfs2_start_trans(osb, credits); in ocfs2_extend_allocation()
595 if (IS_ERR(handle)) { in ocfs2_extend_allocation()
596 status = PTR_ERR(handle); in ocfs2_extend_allocation()
597 handle = NULL; in ocfs2_extend_allocation()
618 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh, in ocfs2_extend_allocation()
633 handle, in ocfs2_extend_allocation()
642 ocfs2_update_inode_fsync_trans(handle, inode, 1); in ocfs2_extend_allocation()
643 ocfs2_journal_dirty(handle, bh); in ocfs2_extend_allocation()
660 status = ocfs2_allocate_extend_trans(handle, 1); in ocfs2_extend_allocation()
682 if (handle) { in ocfs2_extend_allocation()
683 ocfs2_commit_trans(osb, handle); in ocfs2_extend_allocation()
684 handle = NULL; in ocfs2_extend_allocation()
714 handle_t *handle = NULL; in ocfs2_zero_start_ordered_transaction() local
720 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); in ocfs2_zero_start_ordered_transaction()
721 if (IS_ERR(handle)) { in ocfs2_zero_start_ordered_transaction()
727 ret = ocfs2_jbd2_inode_add_write(handle, inode, start_byte, length); in ocfs2_zero_start_ordered_transaction()
733 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh, in ocfs2_zero_start_ordered_transaction()
737 ocfs2_update_inode_fsync_trans(handle, inode, 1); in ocfs2_zero_start_ordered_transaction()
741 if (!IS_ERR(handle)) in ocfs2_zero_start_ordered_transaction()
742 ocfs2_commit_trans(osb, handle); in ocfs2_zero_start_ordered_transaction()
743 handle = ERR_PTR(ret); in ocfs2_zero_start_ordered_transaction()
745 return handle; in ocfs2_zero_start_ordered_transaction()
757 handle_t *handle; in ocfs2_write_zero_page() local
766 handle = ocfs2_zero_start_ordered_transaction(inode, di_bh, in ocfs2_write_zero_page()
769 if (IS_ERR(handle)) { in ocfs2_write_zero_page()
770 ret = PTR_ERR(handle); in ocfs2_write_zero_page()
832 if (handle) { in ocfs2_write_zero_page()
833 ocfs2_journal_dirty(handle, di_bh); in ocfs2_write_zero_page()
834 ocfs2_update_inode_fsync_trans(handle, inode, 1); in ocfs2_write_zero_page()
841 if (handle) in ocfs2_write_zero_page()
842 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle); in ocfs2_write_zero_page()
1123 handle_t *handle = NULL; in ocfs2_setattr() local
1247 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS + in ocfs2_setattr()
1249 if (IS_ERR(handle)) { in ocfs2_setattr()
1250 status = PTR_ERR(handle); in ocfs2_setattr()
1258 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); in ocfs2_setattr()
1259 if (IS_ERR(handle)) { in ocfs2_setattr()
1260 status = PTR_ERR(handle); in ocfs2_setattr()
1269 status = ocfs2_mark_inode_dirty(handle, inode, bh); in ocfs2_setattr()
1274 ocfs2_commit_trans(osb, handle); in ocfs2_setattr()
1369 handle_t *handle; in __ocfs2_write_remove_suid() local
1377 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); in __ocfs2_write_remove_suid()
1378 if (IS_ERR(handle)) { in __ocfs2_write_remove_suid()
1379 ret = PTR_ERR(handle); in __ocfs2_write_remove_suid()
1384 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh, in __ocfs2_write_remove_suid()
1397 ocfs2_update_inode_fsync_trans(handle, inode, 0); in __ocfs2_write_remove_suid()
1399 ocfs2_journal_dirty(handle, bh); in __ocfs2_write_remove_suid()
1402 ocfs2_commit_trans(osb, handle); in __ocfs2_write_remove_suid()
1536 handle_t *handle; in ocfs2_zero_partial_clusters() local
1557 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); in ocfs2_zero_partial_clusters()
1558 if (IS_ERR(handle)) { in ocfs2_zero_partial_clusters()
1559 ret = PTR_ERR(handle); in ocfs2_zero_partial_clusters()
1585 ret = ocfs2_zero_range_for_truncate(inode, handle, start, in ocfs2_zero_partial_clusters()
1602 ret = ocfs2_zero_range_for_truncate(inode, handle, start, end); in ocfs2_zero_partial_clusters()
1606 ocfs2_update_inode_fsync_trans(handle, inode, 1); in ocfs2_zero_partial_clusters()
1608 ocfs2_commit_trans(osb, handle); in ocfs2_zero_partial_clusters()
1867 handle_t *handle; in __ocfs2_change_file_space() local
1965 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); in __ocfs2_change_file_space()
1966 if (IS_ERR(handle)) { in __ocfs2_change_file_space()
1967 ret = PTR_ERR(handle); in __ocfs2_change_file_space()
1976 ret = ocfs2_mark_inode_dirty(handle, inode, di_bh); in __ocfs2_change_file_space()
1981 handle->h_sync = 1; in __ocfs2_change_file_space()
1983 ocfs2_commit_trans(osb, handle); in __ocfs2_change_file_space()