Whamcloud - gitweb
LU-17482 llite: short read could mess up next read offset
[fs/lustre-release.git] / lustre / include / lustre_log.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/include/lustre_log.h
32  *
33  * Generic infrastructure for managing a collection of logs.
34  * These logs are used for:
35  *
36  * - orphan recovery: OST adds record on create
37  * - mtime/size consistency: the OST adds a record on first write
38  * - open/unlinked objects: OST adds a record on destroy
39  *
40  * - mds unlink log: the MDS adds an entry upon delete
41  *
42  * - raid1 replication log between OST's
43  * - MDS replication logs
44  */
45
46 #ifndef _LUSTRE_LOG_H
47 #define _LUSTRE_LOG_H
48
49 /** \defgroup log log
50  *
51  * @{
52  */
53
54 #include <obd_class.h>
55 #include <dt_object.h>
56 #include <uapi/linux/lustre/lustre_idl.h>
57 #include <uapi/linux/lustre/lustre_log_user.h>
58
59 #define LOG_NAME_LIMIT(logname, name) \
60         snprintf(logname, sizeof(logname), "LOGS/%s", name)
61 #define LLOG_EEMPTY 4711
62
63 enum llog_open_param {
64         LLOG_OPEN_EXISTS        = 0x0000,
65         LLOG_OPEN_NEW           = 0x0001,
66 };
67
68 struct plain_handle_data {
69         struct list_head        phd_entry;
70         struct llog_handle      *phd_cat_handle;
71         /* cookie of this log in its cat */
72         struct llog_cookie      phd_cookie;
73 };
74
75 struct cat_handle_data {
76         struct list_head        chd_head;
77         struct llog_handle     *chd_current_log;/* currently open log */
78         struct llog_handle     *chd_next_log;   /* llog to be used next */
79 };
80
81 struct llog_handle;
82
83 /* llog.c  -  general API */
84 int llog_init_handle(const struct lu_env *env, struct llog_handle *handle,
85                      int flags, struct obd_uuid *uuid);
86 int llog_copy_handler(const struct lu_env *env, struct llog_handle *llh,
87                       struct llog_rec_hdr *rec, void *data);
88 int llog_process(const struct lu_env *env, struct llog_handle *loghandle,
89                  llog_cb_t cb, void *data, void *catdata);
90 int llog_process_or_fork(const struct lu_env *env,
91                          struct llog_handle *loghandle,
92                          llog_cb_t cb, void *data, void *catdata, bool fork);
93 int llog_reverse_process(const struct lu_env *env,
94                          struct llog_handle *loghandle, llog_cb_t cb,
95                          void *data, void *catdata);
96 int llog_cancel_rec(const struct lu_env *env, struct llog_handle *loghandle,
97                     int index);
98 int llog_cancel_arr_rec(const struct lu_env *env, struct llog_handle *loghandle,
99                     int num, int *index);
100 int llog_open(const struct lu_env *env, struct llog_ctxt *ctxt,
101               struct llog_handle **lgh, struct llog_logid *logid,
102               char *name, enum llog_open_param open_param);
103 int llog_close(const struct lu_env *env, struct llog_handle *cathandle);
104 int llog_is_empty(const struct lu_env *env, struct llog_ctxt *ctxt,
105                   char *name);
106 int llog_backup(const struct lu_env *env, struct obd_device *obd,
107                 struct llog_ctxt *ctxt, struct llog_ctxt *bak_ctxt,
108                 char *name, char *backup);
109 int llog_read_header(const struct lu_env *env, struct llog_handle *handle,
110                      const struct obd_uuid *uuid);
111 __u64 llog_size(const struct lu_env *env, struct llog_handle *llh);
112 int llog_retain(const struct lu_env *env, struct llog_handle *log);
113
114 /* llog_process flags */
115 #define LLOG_FLAG_NODEAMON 0x0001
116
117 /* llog read mode, LLOG_READ_MODE_RAW will process llog canceled records */
118 enum llog_read_mode {
119         LLOG_READ_MODE_NORMAL   = 0x0000,
120         LLOG_READ_MODE_RAW      = 0x0001,
121 };
122
123
124 /* llog_cat.c - catalog api */
125 struct llog_process_data {
126         /**
127          * Any useful data needed while processing catalog. This is
128          * passed later to process callback.
129          */
130         void                *lpd_data;
131         /**
132          * Catalog process callback function, called for each record
133          * in catalog.
134          */
135         llog_cb_t            lpd_cb;
136         /**
137          * Start processing the catalog from startcat/startidx
138          */
139         int                  lpd_startcat;
140         int                  lpd_startidx;
141 };
142
143 struct llog_process_cat_data {
144         /**
145          * Temporary stored first_idx while scanning log.
146          */
147         int                  lpcd_first_idx;
148         /**
149          * Temporary stored last_idx while scanning log.
150          */
151         int                  lpcd_last_idx;
152         /**
153          * llog read mode
154          */
155         enum llog_read_mode  lpcd_read_mode;
156 };
157
158 int llog_cat_close(const struct lu_env *env, struct llog_handle *cathandle);
159 int llog_cat_add_rec(const struct lu_env *env, struct llog_handle *cathandle,
160                      struct llog_rec_hdr *rec, struct llog_cookie *reccookie,
161                      struct thandle *th);
162 int llog_cat_declare_add_rec(const struct lu_env *env,
163                              struct llog_handle *cathandle,
164                              struct llog_rec_hdr *rec, struct thandle *th);
165 int llog_cat_add(const struct lu_env *env, struct llog_handle *cathandle,
166                  struct llog_rec_hdr *rec, struct llog_cookie *reccookie);
167 int llog_cat_cancel_arr_rec(const struct lu_env *env,
168                             struct llog_handle *cathandle,
169                             struct llog_logid *lgl, int count, int *index);
170 int llog_cat_cancel_records(const struct lu_env *env,
171                             struct llog_handle *cathandle, int count,
172                             struct llog_cookie *cookies);
173 int llog_cat_process_or_fork(const struct lu_env *env,
174                              struct llog_handle *cat_llh, llog_cb_t cat_cb,
175                              llog_cb_t cb, void *data, int startcat,
176                              int startidx, bool fork);
177 int llog_cat_process(const struct lu_env *env, struct llog_handle *cat_llh,
178                      llog_cb_t cb, void *data, int startcat, int startidx);
179 __u64 llog_cat_size(const struct lu_env *env, struct llog_handle *cat_llh);
180 __u32 llog_cat_free_space(struct llog_handle *cat_llh);
181 int llog_cat_reverse_process(const struct lu_env *env,
182                              struct llog_handle *cat_llh, llog_cb_t cb,
183                              void *data);
184 int llog_cat_retain_cb(const struct lu_env *env, struct llog_handle *cat,
185                        struct llog_rec_hdr *rec, void *data);
186 /* llog_obd.c */
187 int llog_setup(const struct lu_env *env, struct obd_device *obd,
188                struct obd_llog_group *olg, int index,
189                struct obd_device *disk_obd, const struct llog_operations *op);
190 int __llog_ctxt_put(const struct lu_env *env, struct llog_ctxt *ctxt);
191 int llog_cleanup(const struct lu_env *env, struct llog_ctxt *ctx);
192 int llog_sync(struct llog_ctxt *ctxt, struct obd_export *exp, int flags);
193
194 /* llog_ioctl.c */
195 struct obd_ioctl_data;
196 int llog_print_cb(const struct lu_env *env, struct llog_handle *handle,
197                   struct llog_rec_hdr *rec, void *data);
198 int llog_ioctl(const struct lu_env *env, struct llog_ctxt *ctxt,
199                unsigned int cmd, struct obd_ioctl_data *data);
200 int llog_catalog_list(const struct lu_env *env, struct dt_device *d,
201                       int count, struct obd_ioctl_data *data,
202                       const struct lu_fid *fid);
203
204 struct llog_print_data {
205         struct obd_ioctl_data *lprd_data;
206         unsigned int           lprd_cfg_flags;
207         bool                   lprd_raw;
208 };
209
210 /* llog_net.c */
211 int llog_initiator_connect(struct llog_ctxt *ctxt);
212
213 struct llog_operations {
214         int (*lop_declare_destroy)(const struct lu_env *env,
215                            struct llog_handle *handle, struct thandle *th);
216         int (*lop_destroy)(const struct lu_env *env,
217                            struct llog_handle *handle, struct thandle *th);
218         int (*lop_next_block)(const struct lu_env *env, struct llog_handle *h,
219                               int *curr_idx, int next_idx, __u64 *offset,
220                               void *buf, int len);
221         int (*lop_prev_block)(const struct lu_env *env, struct llog_handle *h,
222                               int prev_idx, void *buf, int len);
223         int (*lop_read_header)(const struct lu_env *env,
224                                struct llog_handle *handle);
225         int (*lop_setup)(const struct lu_env *env, struct obd_device *obd,
226                          struct obd_llog_group *olg, int ctxt_idx,
227                          struct obd_device *disk_obd);
228         int (*lop_sync)(struct llog_ctxt *ctxt, struct obd_export *exp,
229                         int flags);
230         int (*lop_cleanup)(const struct lu_env *env, struct llog_ctxt *ctxt);
231         int (*lop_connect)(struct llog_ctxt *ctxt, struct llog_logid *logid,
232                            struct llog_gen *gen, struct obd_uuid *uuid);
233         /**
234          * Any llog file must be opened first using llog_open().  Llog can be
235          * opened by name, logid or without both, in last case the new logid
236          * will be generated.
237          */
238         int (*lop_open)(const struct lu_env *env, struct llog_handle *lgh,
239                         struct llog_logid *logid, char *name,
240                         enum llog_open_param);
241         /**
242          * Opened llog may not exist and this must be checked where needed using
243          * the llog_exist() call.
244          */
245         int (*lop_exist)(struct llog_handle *lgh);
246         /**
247          * Close llog file and calls llog_free_handle() implicitly.
248          * Any opened llog must be closed by llog_close() call.
249          */
250         int (*lop_close)(const struct lu_env *env, struct llog_handle *handle);
251         /**
252          * Create new llog file. The llog must be opened.
253          * Must be used only for local llog operations.
254          */
255         int (*lop_declare_create)(const struct lu_env *env,
256                                   struct llog_handle *handle,
257                                   struct thandle *th);
258         int (*lop_create)(const struct lu_env *env, struct llog_handle *handle,
259                           struct thandle *th);
260         /**
261          * write new record in llog. It appends records usually but can edit
262          * existing records too.
263          */
264         int (*lop_declare_write_rec)(const struct lu_env *env,
265                                      struct llog_handle *lgh,
266                                      struct llog_rec_hdr *rec,
267                                      int idx, struct thandle *th);
268         int (*lop_write_rec)(const struct lu_env *env,
269                              struct llog_handle *loghandle,
270                              struct llog_rec_hdr *rec,
271                              struct llog_cookie *cookie,
272                              int idx, struct thandle *th);
273         /**
274          * Add new record in llog catalog. Does the same as llog_write_rec()
275          * but using llog catalog.
276          */
277         int (*lop_declare_add)(const struct lu_env *env,
278                                struct llog_handle *lgh,
279                                struct llog_rec_hdr *rec, struct thandle *th);
280         int (*lop_add)(const struct lu_env *env, struct llog_handle *lgh,
281                        struct llog_rec_hdr *rec, struct llog_cookie *cookie,
282                        struct thandle *th);
283 };
284
285 /* In-memory descriptor for a log object or log catalog */
286 struct llog_handle {
287         struct rw_semaphore      lgh_lock;
288         struct mutex             lgh_hdr_mutex; /* protect lgh_hdr data */
289         struct llog_logid        lgh_id; /* id of this log */
290         struct llog_log_hdr     *lgh_hdr; /* may be vmalloc'd */
291         size_t                  lgh_hdr_size;
292         struct dt_object        *lgh_obj;
293         /* For a Catalog, is the last/newest used index for a plain slot.
294          * Used in conjunction with llh_cat_idx to handle Catalog wrap-around
295          * case, after it will have reached LLOG_HDR_BITMAP_SIZE, llh_cat_idx
296          * will become its upper limit
297          */
298         int                      lgh_last_idx;
299         struct rw_semaphore      lgh_last_sem;
300         __u64                    lgh_cur_offset; /* used for test only */
301         struct llog_ctxt        *lgh_ctxt;
302         union {
303                 struct plain_handle_data         phd;
304                 struct cat_handle_data           chd;
305         } u;
306         char                    *lgh_name;
307         void                    *private_data;
308         const struct llog_operations    *lgh_logops;
309         refcount_t               lgh_refcount;
310
311         int                     lgh_max_size;
312         bool                    lgh_destroyed;
313 };
314
315 /* llog_osd.c */
316 extern const struct llog_operations llog_osd_ops;
317 extern const struct llog_operations llog_common_cat_ops;
318 int llog_osd_get_cat_list(const struct lu_env *env, struct dt_device *d,
319                           int idx, int count, struct llog_catid *idarray,
320                           const struct lu_fid *fid);
321 int llog_osd_put_cat_list(const struct lu_env *env, struct dt_device *d,
322                           int idx, int count, struct llog_catid *idarray,
323                           const struct lu_fid *fid);
324
325 #define LLOG_CTXT_FLAG_UNINITIALIZED     0x00000001
326 #define LLOG_CTXT_FLAG_STOP              0x00000002
327
328 /* Indicate the llog objects under this context are normal FID objects,
329  * instead of objects with local FID.
330  */
331 #define LLOG_CTXT_FLAG_NORMAL_FID        0x00000004
332
333 struct llog_ctxt {
334         int                      loc_idx; /* my index the obd array of ctxt's */
335         struct obd_device       *loc_obd; /* points back to the containing obd*/
336         struct obd_llog_group   *loc_olg; /* group containing that ctxt */
337         struct obd_export       *loc_exp; /* parent "disk" export (e.g. MDS) */
338         /* to use in RPC's: can be backward pointing import */
339         struct obd_import       *loc_imp;
340         const struct llog_operations  *loc_logops;
341         struct llog_handle      *loc_handle;
342         struct mutex             loc_mutex; /* protect loc_imp */
343         atomic_t                 loc_refcount;
344         long                     loc_flags; /* flags, see above defines */
345         struct dt_object        *loc_dir;
346         struct local_oid_storage *loc_los_nameless;
347         struct local_oid_storage *loc_los_named;
348         /* llog chunk/llog record size, can not be bigger than loc_chunk_size */
349         __u32                    loc_chunk_size;
350 };
351
352 #define LLOG_PROC_BREAK 0x0001
353 #define LLOG_DEL_RECORD 0x0002
354 #define LLOG_DEL_PLAIN  0x0003
355 #define LLOG_SKIP_PLAIN 0x0004
356
357 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
358                                const struct llog_operations **lop)
359 {
360         if (ctxt == NULL)
361                 return -ENOTCONN;
362
363         *lop = ctxt->loc_logops;
364         if (*lop == NULL)
365                 return -EOPNOTSUPP;
366
367         return 0;
368 }
369
370 static inline int llog_handle2ops(struct llog_handle *loghandle,
371                                   const struct llog_operations **lop)
372 {
373         if (loghandle == NULL || loghandle->lgh_logops == NULL)
374                 return -EINVAL;
375
376         *lop = loghandle->lgh_logops;
377         return 0;
378 }
379
380 static inline int llog_data_len(int len)
381 {
382         return round_up(len, 8);
383 }
384
385 static inline int llog_get_size(struct llog_handle *loghandle)
386 {
387         if (loghandle && loghandle->lgh_hdr)
388                 return loghandle->lgh_hdr->llh_count;
389         return 0;
390 }
391
392 static inline struct llog_ctxt *llog_ctxt_get(struct llog_ctxt *ctxt)
393 {
394         atomic_inc(&ctxt->loc_refcount);
395         CDEBUG(D_INFO, "GETting ctxt %p : new refcount %d\n", ctxt,
396                atomic_read(&ctxt->loc_refcount));
397         return ctxt;
398 }
399
400 static inline void llog_ctxt_put(struct llog_ctxt *ctxt)
401 {
402         int refcount;
403
404         if (!ctxt)
405                 return;
406
407         refcount = atomic_read(&ctxt->loc_refcount);
408         LASSERT(refcount > 0 && refcount < LI_POISON);
409
410         CDEBUG(D_INFO, "PUTting ctxt %p : new refcount %d\n", ctxt,
411                atomic_read(&ctxt->loc_refcount) - 1);
412         __llog_ctxt_put(NULL, ctxt);
413 }
414
415 static inline void llog_group_init(struct obd_llog_group *olg)
416 {
417         init_waitqueue_head(&olg->olg_waitq);
418         spin_lock_init(&olg->olg_lock);
419 }
420
421 static inline int llog_group_set_ctxt(struct obd_llog_group *olg,
422                                       struct llog_ctxt *ctxt, int index)
423 {
424         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
425
426         spin_lock(&olg->olg_lock);
427         if (olg->olg_ctxts[index] != NULL) {
428                 spin_unlock(&olg->olg_lock);
429                 return -EEXIST;
430         }
431         olg->olg_ctxts[index] = ctxt;
432         spin_unlock(&olg->olg_lock);
433         return 0;
434 }
435
436 static inline struct llog_ctxt *llog_group_get_ctxt(struct obd_llog_group *olg,
437                                                     int index)
438 {
439         struct llog_ctxt *ctxt;
440
441         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
442
443         spin_lock(&olg->olg_lock);
444         if (olg->olg_ctxts[index] == NULL)
445                 ctxt = NULL;
446         else
447                 ctxt = llog_ctxt_get(olg->olg_ctxts[index]);
448         spin_unlock(&olg->olg_lock);
449         return ctxt;
450 }
451
452 static inline void llog_group_clear_ctxt(struct obd_llog_group *olg, int index)
453 {
454         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
455         spin_lock(&olg->olg_lock);
456         olg->olg_ctxts[index] = NULL;
457         spin_unlock(&olg->olg_lock);
458 }
459
460 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
461                                                  int index)
462 {
463         return llog_group_get_ctxt(&obd->obd_olg, index);
464 }
465
466 static inline int llog_group_ctxt_null(struct obd_llog_group *olg, int index)
467 {
468         return (olg->olg_ctxts[index] == NULL);
469 }
470
471 static inline int llog_ctxt_null(struct obd_device *obd, int index)
472 {
473         return llog_group_ctxt_null(&obd->obd_olg, index);
474 }
475
476 static inline int llog_next_block(const struct lu_env *env,
477                                   struct llog_handle *loghandle, int *cur_idx,
478                                   int next_idx, __u64 *cur_offset, void *buf,
479                                   int len)
480 {
481         const struct llog_operations *lop;
482         int rc;
483
484         ENTRY;
485
486         rc = llog_handle2ops(loghandle, &lop);
487         if (rc)
488                 RETURN(rc);
489         if (lop->lop_next_block == NULL)
490                 RETURN(-EOPNOTSUPP);
491
492         rc = lop->lop_next_block(env, loghandle, cur_idx, next_idx,
493                                  cur_offset, buf, len);
494         RETURN(rc);
495 }
496
497 static inline int llog_prev_block(const struct lu_env *env,
498                                   struct llog_handle *loghandle,
499                                   int prev_idx, void *buf, int len)
500 {
501         const struct llog_operations *lop;
502         int rc;
503
504         ENTRY;
505
506         rc = llog_handle2ops(loghandle, &lop);
507         if (rc)
508                 RETURN(rc);
509         if (lop->lop_prev_block == NULL)
510                 RETURN(-EOPNOTSUPP);
511
512         rc = lop->lop_prev_block(env, loghandle, prev_idx, buf, len);
513         RETURN(rc);
514 }
515
516 static inline int llog_connect(struct llog_ctxt *ctxt,
517                                struct llog_logid *logid, struct llog_gen *gen,
518                                struct obd_uuid *uuid)
519 {
520         const struct llog_operations *lop;
521         int rc;
522
523         ENTRY;
524
525         rc = llog_obd2ops(ctxt, &lop);
526         if (rc)
527                 RETURN(rc);
528         if (lop->lop_connect == NULL)
529                 RETURN(-EOPNOTSUPP);
530
531         rc = lop->lop_connect(ctxt, logid, gen, uuid);
532         RETURN(rc);
533 }
534
535
536 static inline int llog_max_idx(struct llog_log_hdr *lh)
537 {
538         if (CFS_FAIL_PRECHECK(OBD_FAIL_CAT_RECORDS) &&
539             unlikely(lh->llh_flags & LLOG_F_IS_CAT))
540                 return cfs_fail_val;
541         else
542                 return LLOG_HDR_BITMAP_SIZE(lh) - 1;
543 }
544
545 static inline int llog_is_full(struct llog_handle *llh)
546 {
547         return llh->lgh_last_idx >= llog_max_idx(llh->lgh_hdr);
548 }
549
550 /* Determine if a llog plain of a catalog could be skiped based on record
551  * custom indexes.
552  * This assumes that indexes follow each other. The number of records to skip
553  * can be computed base on a starting offset and the index of the current
554  * record (in llog catalog callback).
555  */
556 static inline int llog_is_plain_skipable(struct llog_log_hdr *lh,
557                                          struct llog_rec_hdr *rec,
558                                          __u64 curr, __u64 start)
559 {
560         if (start == 0 || curr >= start)
561                 return 0;
562
563         return (LLOG_HDR_BITMAP_SIZE(lh) - rec->lrh_index) < (start - curr);
564 }
565
566 static inline bool llog_cat_is_wrapped(struct llog_handle *cat)
567 {
568         struct llog_log_hdr *llh = cat->lgh_hdr;
569
570         return llh->llh_cat_idx >= cat->lgh_last_idx && llh->llh_count > 1;
571 }
572
573 struct llog_cfg_rec {
574         struct llog_rec_hdr     lcr_hdr;
575         struct lustre_cfg       lcr_cfg;
576         struct llog_rec_tail    lcr_tail;
577 };
578
579 struct llog_cfg_rec *lustre_cfg_rec_new(int cmd, struct lustre_cfg_bufs *bufs);
580 void lustre_cfg_rec_free(struct llog_cfg_rec *lcr);
581
582 enum {
583         LLOG_NEXT_IDX = -1,
584         LLOG_HEADER_IDX = 0,
585 };
586
587 /* llog.c */
588 int llog_exist(struct llog_handle *loghandle);
589 int llog_declare_create(const struct lu_env *env,
590                         struct llog_handle *loghandle, struct thandle *th);
591 int llog_create(const struct lu_env *env, struct llog_handle *handle,
592                 struct thandle *th);
593 int llog_trans_destroy(const struct lu_env *env, struct llog_handle *handle,
594                        struct thandle *th);
595 int llog_destroy(const struct lu_env *env, struct llog_handle *handle);
596
597 int llog_declare_write_rec(const struct lu_env *env,
598                            struct llog_handle *handle,
599                            struct llog_rec_hdr *rec, int idx,
600                            struct thandle *th);
601 int llog_write_rec(const struct lu_env *env, struct llog_handle *handle,
602                    struct llog_rec_hdr *rec, struct llog_cookie *logcookies,
603                    int idx, struct thandle *th);
604 int llog_add(const struct lu_env *env, struct llog_handle *lgh,
605              struct llog_rec_hdr *rec, struct llog_cookie *logcookies,
606              struct thandle *th);
607 int llog_declare_add(const struct lu_env *env, struct llog_handle *lgh,
608                      struct llog_rec_hdr *rec, struct thandle *th);
609 int lustre_process_log(struct super_block *sb, char *logname,
610                        struct config_llog_instance *cfg);
611 int lustre_end_log(struct super_block *sb, char *logname,
612                    struct config_llog_instance *cfg);
613 int llog_open_create(const struct lu_env *env, struct llog_ctxt *ctxt,
614                      struct llog_handle **res, struct llog_logid *logid,
615                      char *name);
616 int llog_erase(const struct lu_env *env, struct llog_ctxt *ctxt,
617                struct llog_logid *logid, char *name);
618 int llog_write(const struct lu_env *env, struct llog_handle *loghandle,
619                struct llog_rec_hdr *rec, int idx);
620
621 /** @} log */
622
623 #endif