Whamcloud - gitweb
LU-7443 llog: remove unused and empty llog
[fs/lustre-release.git] / lustre / obdclass / llog.c
index 334f752..0fdd8fe 100644 (file)
@@ -27,7 +27,7 @@
  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  *
- * Copyright (c) 2012, 2014, Intel Corporation.
+ * Copyright (c) 2012, 2015, Intel Corporation.
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
 #define DEBUG_SUBSYSTEM S_LOG
 
 #include <linux/kthread.h>
-#include <obd_class.h>
+#include <llog_swab.h>
 #include <lustre_log.h>
+#include <obd_class.h>
 #include "llog_internal.h"
-
 /*
  * Allocate a new log or catalog handle
  * Used inside llog_open().
@@ -104,18 +104,119 @@ void llog_handle_put(struct llog_handle *loghandle)
                llog_free_handle(loghandle);
 }
 
-static int llog_cancel_rec_internal(const struct lu_env *env,
-                                   struct llog_handle *loghandle, int index)
+static int llog_declare_destroy(const struct lu_env *env,
+                               struct llog_handle *handle,
+                               struct thandle *th)
+{
+       struct llog_operations *lop;
+       int rc;
+
+       ENTRY;
+
+       rc = llog_handle2ops(handle, &lop);
+       if (rc)
+               RETURN(rc);
+       if (lop->lop_declare_destroy == NULL)
+               RETURN(-EOPNOTSUPP);
+
+       rc = lop->lop_declare_destroy(env, handle, th);
+
+       RETURN(rc);
+}
+
+int llog_trans_destroy(const struct lu_env *env, struct llog_handle *handle,
+                      struct thandle *th)
+{
+       struct llog_operations  *lop;
+       int rc;
+       ENTRY;
+
+       rc = llog_handle2ops(handle, &lop);
+       if (rc < 0)
+               RETURN(rc);
+       if (lop->lop_destroy == NULL)
+               RETURN(-EOPNOTSUPP);
+
+       LASSERT(handle->lgh_obj != NULL);
+       if (!dt_object_exists(handle->lgh_obj))
+               RETURN(0);
+
+       rc = lop->lop_destroy(env, handle, th);
+
+       RETURN(rc);
+}
+
+int llog_destroy(const struct lu_env *env, struct llog_handle *handle)
+{
+       struct llog_operations  *lop;
+       struct dt_device        *dt;
+       struct thandle          *th;
+       int rc;
+
+       ENTRY;
+
+       rc = llog_handle2ops(handle, &lop);
+       if (rc < 0)
+               RETURN(rc);
+       if (lop->lop_destroy == NULL)
+               RETURN(-EOPNOTSUPP);
+
+       if (handle->lgh_obj == NULL) {
+               /* if lgh_obj == NULL, then it is from client side destroy */
+               rc = lop->lop_destroy(env, handle, NULL);
+               RETURN(rc);
+       }
+
+       if (!dt_object_exists(handle->lgh_obj))
+               RETURN(0);
+
+       dt = lu2dt_dev(handle->lgh_obj->do_lu.lo_dev);
+
+       th = dt_trans_create(env, dt);
+       if (IS_ERR(th))
+               RETURN(PTR_ERR(th));
+
+       rc = llog_declare_destroy(env, handle, th);
+       if (rc != 0)
+               GOTO(out_trans, rc);
+
+       rc = dt_trans_start_local(env, dt, th);
+       if (rc < 0)
+               GOTO(out_trans, rc);
+
+       rc = lop->lop_destroy(env, handle, th);
+
+out_trans:
+       dt_trans_stop(env, dt, th);
+
+       RETURN(rc);
+}
+EXPORT_SYMBOL(llog_destroy);
+
+/* returns negative on error; 0 if success; 1 if success & log destroyed */
+int llog_cancel_rec(const struct lu_env *env, struct llog_handle *loghandle,
+                   int index)
 {
+       struct llog_thread_info *lgi = llog_info(env);
        struct dt_device        *dt;
        struct llog_log_hdr     *llh = loghandle->lgh_hdr;
        struct thandle          *th;
        int                      rc;
+       int rc1;
+       bool subtract_count = false;
 
        ENTRY;
 
-       LASSERT(loghandle);
-       LASSERT(loghandle->lgh_ctxt);
+       CDEBUG(D_RPCTRACE, "Canceling %d in log "DOSTID"\n", index,
+              POSTID(&loghandle->lgh_id.lgl_oi));
+
+       if (index == 0) {
+               CERROR("Can't cancel index 0 which is header\n");
+               RETURN(-EINVAL);
+       }
+
+       LASSERT(loghandle != NULL);
+       LASSERT(loghandle->lgh_ctxt != NULL);
        LASSERT(loghandle->lgh_obj != NULL);
 
        dt = lu2dt_dev(loghandle->lgh_obj->do_lu.lo_dev);
@@ -128,6 +229,9 @@ static int llog_cancel_rec_internal(const struct lu_env *env,
        if (rc < 0)
                GOTO(out_trans, rc);
 
+       if ((llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY))
+               rc = llog_declare_destroy(env, loghandle, th);
+
        th->th_wait_submit = 1;
        rc = dt_trans_start_local(env, dt, th);
        if (rc < 0)
@@ -140,51 +244,25 @@ static int llog_cancel_rec_internal(const struct lu_env *env,
                CDEBUG(D_RPCTRACE, "Catalog index %u already clear?\n", index);
                GOTO(out_unlock, rc);
        }
+
+       loghandle->lgh_hdr->llh_count--;
+       subtract_count = true;
+       /* Pass this index to llog_osd_write_rec(), which will use the index
+        * to only update the necesary bitmap. */
+       lgi->lgi_cookie.lgc_index = index;
        /* update header */
-       rc = llog_write_rec(env, loghandle, &llh->llh_hdr, NULL,
+       rc = llog_write_rec(env, loghandle, &llh->llh_hdr, &lgi->lgi_cookie,
                            LLOG_HEADER_IDX, th);
-       if (rc == 0)
-               loghandle->lgh_hdr->llh_count--;
-       else
-               ext2_set_bit(index, LLOG_HDR_BITMAP(llh));
-out_unlock:
-       mutex_unlock(&loghandle->lgh_hdr_mutex);
-       up_write(&loghandle->lgh_lock);
-out_trans:
-       dt_trans_stop(env, dt, th);
-       RETURN(rc);
-}
-
-/* returns negative on error; 0 if success; 1 if success & log destroyed */
-int llog_cancel_rec(const struct lu_env *env, struct llog_handle *loghandle,
-                   int index)
-{
-        struct llog_log_hdr *llh = loghandle->lgh_hdr;
-        int rc = 0;
-        ENTRY;
-
-        CDEBUG(D_RPCTRACE, "Canceling %d in log "DOSTID"\n",
-               index, POSTID(&loghandle->lgh_id.lgl_oi));
-
-        if (index == 0) {
-                CERROR("Can't cancel index 0 which is header\n");
-                RETURN(-EINVAL);
-        }
-
-       rc = llog_cancel_rec_internal(env, loghandle, index);
-       if (rc < 0) {
-               CERROR("%s: fail to write header for llog #"DOSTID
-                      "#%08x: rc = %d\n",
-                      loghandle->lgh_ctxt->loc_obd->obd_name,
-                      POSTID(&loghandle->lgh_id.lgl_oi),
-                      loghandle->lgh_id.lgl_ogen, rc);
-               RETURN(rc);
-       }
+       if (rc != 0)
+               GOTO(out_unlock, rc);
 
        if ((llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY) &&
            (llh->llh_count == 1) &&
-           (loghandle->lgh_last_idx == LLOG_HDR_BITMAP_SIZE(llh) - 1)) {
-               rc = llog_destroy(env, loghandle);
+           ((loghandle->lgh_last_idx == LLOG_HDR_BITMAP_SIZE(llh) - 1) ||
+            (loghandle->u.phd.phd_cat_handle != NULL &&
+             loghandle->u.phd.phd_cat_handle->u.chd.chd_current_log !=
+               loghandle))) {
+               rc = llog_trans_destroy(env, loghandle, th);
                if (rc < 0) {
                        /* Sigh, can not destroy the final plain llog, but
                         * the bitmap has been clearly, so the record can not
@@ -195,20 +273,33 @@ int llog_cancel_rec(const struct lu_env *env, struct llog_handle *loghandle,
                               loghandle->lgh_ctxt->loc_obd->obd_name,
                               POSTID(&loghandle->lgh_id.lgl_oi),
                               loghandle->lgh_id.lgl_ogen, rc);
-                       RETURN(0);
+                       GOTO(out_unlock, rc);
                }
-               RETURN(LLOG_DEL_PLAIN);
+               rc = LLOG_DEL_PLAIN;
        }
 
-       RETURN(0);
+out_unlock:
+       mutex_unlock(&loghandle->lgh_hdr_mutex);
+       up_write(&loghandle->lgh_lock);
+out_trans:
+       rc1 = dt_trans_stop(env, dt, th);
+       if (rc == 0)
+               rc = rc1;
+       if (rc < 0 && subtract_count) {
+               mutex_lock(&loghandle->lgh_hdr_mutex);
+               loghandle->lgh_hdr->llh_count++;
+               ext2_set_bit(index, LLOG_HDR_BITMAP(llh));
+               mutex_unlock(&loghandle->lgh_hdr_mutex);
+       }
+       RETURN(rc);
 }
 
-static int llog_read_header(const struct lu_env *env,
-                           struct llog_handle *handle,
-                           struct obd_uuid *uuid)
+int llog_read_header(const struct lu_env *env, struct llog_handle *handle,
+                    const struct obd_uuid *uuid)
 {
        struct llog_operations *lop;
        int rc;
+       ENTRY;
 
        rc = llog_handle2ops(handle, &lop);
        if (rc)
@@ -223,6 +314,7 @@ static int llog_read_header(const struct lu_env *env,
 
                /* lrh_len should be initialized in llog_init_handle */
                handle->lgh_last_idx = 0; /* header is record with index 0 */
+               handle->lgh_write_offset = 0;
                llh->llh_count = 1;         /* for the header record */
                llh->llh_hdr.lrh_type = LLOG_HDR_MAGIC;
                LASSERT(handle->lgh_ctxt->loc_chunk_size >=
@@ -234,13 +326,19 @@ static int llog_read_header(const struct lu_env *env,
                        memcpy(&llh->llh_tgtuuid, uuid,
                               sizeof(llh->llh_tgtuuid));
                llh->llh_bitmap_offset = offsetof(typeof(*llh), llh_bitmap);
+               /* Since update llog header might also call this function,
+                * let's reset the bitmap to 0 here */
+               memset(LLOG_HDR_BITMAP(llh), 0, llh->llh_hdr.lrh_len -
+                                               llh->llh_bitmap_offset -
+                                               sizeof(llh->llh_tail));
                ext2_set_bit(0, LLOG_HDR_BITMAP(llh));
                LLOG_HDR_TAIL(llh)->lrt_len = llh->llh_hdr.lrh_len;
                LLOG_HDR_TAIL(llh)->lrt_index = llh->llh_hdr.lrh_index;
                rc = 0;
        }
-       return rc;
+       RETURN(rc);
 }
+EXPORT_SYMBOL(llog_read_header);
 
 int llog_init_handle(const struct lu_env *env, struct llog_handle *handle,
                     int flags, struct obd_uuid *uuid)
@@ -299,6 +397,7 @@ int llog_init_handle(const struct lu_env *env, struct llog_handle *handle,
                LASSERT(list_empty(&handle->u.chd.chd_head));
                INIT_LIST_HEAD(&handle->u.chd.chd_head);
                llh->llh_size = sizeof(struct llog_logid_rec);
+               llh->llh_flags |= LLOG_F_IS_FIXSIZE;
        } else if (!(flags & LLOG_F_IS_PLAIN)) {
                CERROR("%s: unknown flags: %#x (expected %#x or %#x)\n",
                       handle->lgh_ctxt->loc_obd->obd_name,
@@ -482,17 +581,30 @@ out:
                cd->lpcd_last_idx = last_called_index;
 
        if (unlikely(rc == -EIO && loghandle->lgh_obj != NULL)) {
-               /* something bad happened to the processing of a local
-                * llog file, probably I/O error or the log got corrupted..
-                * to be able to finally release the log we discard any
-                * remaining bits in the header */
-               CERROR("Local llog found corrupted\n");
-               while (index <= last_index) {
-                       if (ext2_test_bit(index, LLOG_HDR_BITMAP(llh)) != 0)
-                               llog_cancel_rec(lpi->lpi_env, loghandle, index);
-                       index++;
+               if (dt_object_remote(loghandle->lgh_obj)) {
+                       /* If it is remote object, then -EIO might means
+                        * disconnection or eviction, let's return -EAGAIN,
+                        * so for update recovery log processing, it will
+                        * retry until the umount or abort recovery, see
+                        * lod_sub_recovery_thread() */
+                       CERROR("%s retry remote llog process\n",
+                              loghandle->lgh_ctxt->loc_obd->obd_name);
+                       rc = -EAGAIN;
+               } else {
+                       /* something bad happened to the processing of a local
+                        * llog file, probably I/O error or the log got
+                        * corrupted to be able to finally release the log we
+                        * discard any remaining bits in the header */
+                       CERROR("Local llog found corrupted\n");
+                       while (index <= last_index) {
+                               if (ext2_test_bit(index,
+                                                 LLOG_HDR_BITMAP(llh)) != 0)
+                                       llog_cancel_rec(lpi->lpi_env, loghandle,
+                                                       index);
+                               index++;
+                       }
+                       rc = 0;
                }
-               rc = 0;
        }
 
        OBD_FREE_LARGE(buf, chunk_size);