journal.c (c1f3ee120bb61045b1c0a3ead620d1d65af47130) journal.c (8e8a4603b5422c9145880e73b23bc4c2c4de0098)
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * journal.c
5 *
6 * Defines functions of journalling api
7 *
8 * Copyright (C) 2003, 2004 Oracle. All rights reserved.

--- 1109 unchanged lines hidden (view full) ---

1118 * serious enough to warrant halting the rest of
1119 * recovery. */
1120 status = ocfs2_begin_truncate_log_recovery(osb, slot_num, &tl_copy);
1121 if (status < 0)
1122 mlog_errno(status);
1123
1124 /* Likewise, this would be a strange but ultimately not so
1125 * harmful place to get an error... */
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * journal.c
5 *
6 * Defines functions of journalling api
7 *
8 * Copyright (C) 2003, 2004 Oracle. All rights reserved.

--- 1109 unchanged lines hidden (view full) ---

1118 * serious enough to warrant halting the rest of
1119 * recovery. */
1120 status = ocfs2_begin_truncate_log_recovery(osb, slot_num, &tl_copy);
1121 if (status < 0)
1122 mlog_errno(status);
1123
1124 /* Likewise, this would be a strange but ultimately not so
1125 * harmful place to get an error... */
1126 ocfs2_clear_slot(si, slot_num);
1127 status = ocfs2_update_disk_slots(osb, si);
1126 status = ocfs2_clear_slot(osb, slot_num);
1128 if (status < 0)
1129 mlog_errno(status);
1130
1131 /* This will kfree the memory pointed to by la_copy and tl_copy */
1132 ocfs2_queue_recovery_completion(osb->journal, slot_num, la_copy,
1133 tl_copy);
1134
1135 status = 0;

--- 367 unchanged lines hidden ---
1127 if (status < 0)
1128 mlog_errno(status);
1129
1130 /* This will kfree the memory pointed to by la_copy and tl_copy */
1131 ocfs2_queue_recovery_completion(osb->journal, slot_num, la_copy,
1132 tl_copy);
1133
1134 status = 0;

--- 367 unchanged lines hidden ---