Whamcloud - gitweb
LU-6527 ext4: journal_commit_callback optimization
[fs/lustre-release.git] / lustre / obdclass / llog_internal.h
index 5bf0493..7795d03 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/
@@ -57,6 +57,7 @@ struct llog_thread_info {
        struct lu_buf                    lgi_buf;
        loff_t                           lgi_off;
        struct llog_logid_rec            lgi_logid;
+       struct dt_insert_rec             lgi_dt_rec;
 };
 
 extern struct lu_context_key llog_thread_key;
@@ -94,4 +95,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