Whamcloud - gitweb
LU-5577 obdclass: change lu_site->ls_purge_start to unsigned
[fs/lustre-release.git] / lustre / obdclass / llog_internal.h
index 5bf0493..2833245 100644 (file)
@@ -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