fs: xfs: xfs_log: Change return type from int to void
[platform/kernel/linux-starfive.git] / fs / xfs / xfs_log_recover.c
index 1fc70ac..13d1d3e 100644 (file)
@@ -4875,12 +4875,11 @@ out:
  * A cancel occurs when the mount has failed and we're bailing out.
  * Release all pending log intent items so they don't pin the AIL.
  */
-STATIC int
+STATIC void
 xlog_recover_cancel_intents(
        struct xlog             *log)
 {
        struct xfs_log_item     *lip;
-       int                     error = 0;
        struct xfs_ail_cursor   cur;
        struct xfs_ail          *ailp;
 
@@ -4920,7 +4919,6 @@ xlog_recover_cancel_intents(
 
        xfs_trans_ail_cursor_done(&cur);
        spin_unlock(&ailp->ail_lock);
-       return error;
 }
 
 /*
@@ -5779,16 +5777,12 @@ xlog_recover_finish(
        return 0;
 }
 
-int
+void
 xlog_recover_cancel(
        struct xlog     *log)
 {
-       int             error = 0;
-
        if (log->l_flags & XLOG_RECOVERY_NEEDED)
-               error = xlog_recover_cancel_intents(log);
-
-       return error;
+               xlog_recover_cancel_intents(log);
 }
 
 #if defined(DEBUG)