Displaying 2 results from an estimated 2 matches for "log_error_status".
2004 Jun 06
1
[PATCH] use sb_getblk
...===============================================
--- src/super.c (revision 1014)
+++ src/super.c (working copy)
@@ -799,7 +799,7 @@
/* get first two blocks */
for (i=0; i<2; i++) {
- bhs[i] = getblk (OCFS_GET_BLOCKDEV(sb), i, 512);
+ bhs[i] = sb_getblk(sb, i);
if (bhs[i] == NULL) {
LOG_ERROR_STATUS(status = -EIO);
goto leave;
Index: src/journal.c
===================================================================
--- src/journal.c (revision 1014)
+++ src/journal.c (working copy)
@@ -583,8 +583,7 @@
* turned off later. */
LOG_ERROR_ARGS("block %lu was modified but never "...
2004 Jun 20
2
[PATCH] fixup journal-related ifdef mess
...) {
up_read(&osb->journal->trans_barrier);
@@ -411,7 +419,7 @@
/* actually stop the transaction. if we've set h_sync,
* it'll have been commited when we return */
- retval = ocfs_journal_stop(kern_handle);
+ retval = journal_stop(kern_handle);
if (retval < 0) {
LOG_ERROR_STATUS(retval);
LOG_ERROR_STR("Could not commit transaction");
@@ -583,7 +591,7 @@
/* want to force our handle to disk in abort case. */
handle->k_handle->h_sync = 1;
- retval = ocfs_journal_stop(handle->k_handle);
+ retval = journal_stop(handle->k_handle);
if (retval <...