Whamcloud - gitweb
LU-6158 mdt: always shrink_capsule in getxattr_all
[fs/lustre-release.git] / lustre / obdclass / llog_internal.h
index f90be39..2950864 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, 2013, Intel Corporation.
+ * Copyright (c) 2012, 2014, Intel Corporation.
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
@@ -47,7 +47,6 @@ struct llog_process_info {
         int                 lpi_rc;
        struct completion       lpi_completion;
        const struct lu_env     *lpi_env;
-
 };
 
 struct llog_thread_info {
@@ -56,9 +55,10 @@ struct llog_thread_info {
        struct dt_object_format          lgi_dof;
        struct lu_buf                    lgi_buf;
        loff_t                           lgi_off;
-       struct llog_rec_hdr              lgi_lrh;
-       struct llog_rec_tail             lgi_tail;
        struct llog_logid_rec            lgi_logid;
+       struct dt_insert_rec             lgi_dt_rec;
+       struct lu_seq_range              lgi_range;
+       char                             lgi_name[32];
 };
 
 extern struct lu_context_key llog_thread_key;
@@ -96,4 +96,9 @@ int llog_process_or_fork(const struct lu_env *env,
                         llog_cb_t cb, void *data, void *catdata, bool fork);
 int llog_cat_cleanup(const struct lu_env *env, struct llog_handle *cathandle,
                     struct llog_handle *loghandle, int index);
+
+static inline struct llog_rec_hdr *llog_rec_hdr_next(struct llog_rec_hdr *rec)
+{
+       return (struct llog_rec_hdr *)((char *)rec + rec->lrh_len);
+}
 #endif