Whamcloud - gitweb
LU-1302 llog: modify llog_write/llog_add to support OSD
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/include/lustre_log.h
37  *
38  * Generic infrastructure for managing a collection of logs.
39  * These logs are used for:
40  *
41  * - orphan recovery: OST adds record on create
42  * - mtime/size consistency: the OST adds a record on first write
43  * - open/unlinked objects: OST adds a record on destroy
44  *
45  * - mds unlink log: the MDS adds an entry upon delete
46  *
47  * - raid1 replication log between OST's
48  * - MDS replication logs
49  */
50
51 #ifndef _LUSTRE_LOG_H
52 #define _LUSTRE_LOG_H
53
54 /** \defgroup log log
55  *
56  * @{
57  */
58
59 #if defined(__linux__)
60 #include <linux/lustre_log.h>
61 #elif defined(__APPLE__)
62 #include <darwin/lustre_log.h>
63 #elif defined(__WINNT__)
64 #include <winnt/lustre_log.h>
65 #else
66 #error Unsupported operating system.
67 #endif
68
69 #include <obd_class.h>
70 #include <obd_ost.h>
71 #include <lustre/lustre_idl.h>
72 #include <dt_object.h>
73
74 #define LOG_NAME_LIMIT(logname, name)                   \
75         snprintf(logname, sizeof(logname), "LOGS/%s", name)
76 #define LLOG_EEMPTY 4711
77
78 enum llog_open_param {
79         LLOG_OPEN_EXISTS        = 0x0000,
80         LLOG_OPEN_NEW           = 0x0001,
81 };
82
83 struct plain_handle_data {
84         cfs_list_t          phd_entry;
85         struct llog_handle *phd_cat_handle;
86         struct llog_cookie  phd_cookie; /* cookie of this log in its cat */
87 };
88
89 struct cat_handle_data {
90         cfs_list_t              chd_head;
91         struct llog_handle     *chd_current_log; /* currently open log */
92         struct llog_handle      *chd_next_log; /* llog to be used next */
93 };
94
95 static inline void logid_to_fid(struct llog_logid *id, struct lu_fid *fid)
96 {
97         /* For compatibility purposes we identify pre-OSD (~< 2.3.51 MDS)
98          * logid's by non-zero ogen (inode generation) and convert them
99          * into IGIF */
100         if (id->lgl_ogen == 0) {
101                 fid->f_seq = id->lgl_oseq;
102                 fid->f_oid = id->lgl_oid;
103                 fid->f_ver = 0;
104         } else {
105                 lu_igif_build(fid, id->lgl_oid, id->lgl_ogen);
106         }
107 }
108
109 static inline void fid_to_logid(struct lu_fid *fid, struct llog_logid *id)
110 {
111         id->lgl_oseq = fid->f_seq;
112         id->lgl_oid = fid->f_oid;
113         id->lgl_ogen = 0;
114 }
115
116 struct llog_handle;
117
118 /* llog.c  -  general API */
119 typedef int (*llog_cb_t)(const struct lu_env *env, struct llog_handle *lgh,
120                          struct llog_rec_hdr *rec, void *data);
121 int llog_init_handle(const struct lu_env *env, struct llog_handle *handle,
122                      int flags, struct obd_uuid *uuid);
123 int llog_process(const struct lu_env *env, struct llog_handle *loghandle,
124                  llog_cb_t cb, void *data, void *catdata);
125 int llog_process_or_fork(const struct lu_env *env,
126                          struct llog_handle *loghandle,
127                          llog_cb_t cb, void *data, void *catdata, bool fork);
128 int llog_reverse_process(const struct lu_env *env,
129                          struct llog_handle *loghandle, llog_cb_t cb,
130                          void *data, void *catdata);
131 int llog_cancel_rec(const struct lu_env *env, struct llog_handle *loghandle,
132                     int index);
133 int llog_open(const struct lu_env *env, struct llog_ctxt *ctxt,
134               struct llog_handle **lgh, struct llog_logid *logid,
135               char *name, enum llog_open_param open_param);
136 int llog_close(const struct lu_env *env, struct llog_handle *cathandle);
137 int llog_get_size(struct llog_handle *loghandle);
138
139 /* llog_process flags */
140 #define LLOG_FLAG_NODEAMON 0x0001
141
142 /* llog_cat.c - catalog api */
143 struct llog_process_data {
144         /**
145          * Any useful data needed while processing catalog. This is
146          * passed later to process callback.
147          */
148         void                *lpd_data;
149         /**
150          * Catalog process callback function, called for each record
151          * in catalog.
152          */
153         llog_cb_t            lpd_cb;
154         /**
155          * Start processing the catalog from startcat/startidx
156          */
157         int                  lpd_startcat;
158         int                  lpd_startidx;
159 };
160
161 struct llog_process_cat_data {
162         /**
163          * Temporary stored first_idx while scanning log.
164          */
165         int                  lpcd_first_idx;
166         /**
167          * Temporary stored last_idx while scanning log.
168          */
169         int                  lpcd_last_idx;
170 };
171
172 struct llog_process_cat_args {
173         /**
174          * Llog context used in recovery thread on OST (recov_thread.c)
175          */
176         struct llog_ctxt    *lpca_ctxt;
177         /**
178          * Llog callback used in recovery thread on OST (recov_thread.c)
179          */
180         void                *lpca_cb;
181         /**
182          * Data pointer for llog callback.
183          */
184         void                *lpca_arg;
185 };
186
187 int cat_cancel_cb(const struct lu_env *env, struct llog_handle *cathandle,
188                   struct llog_rec_hdr *rec, void *data);
189 int llog_cat_close(const struct lu_env *env, struct llog_handle *cathandle);
190 int llog_cat_add(const struct lu_env *env, struct llog_handle *cathandle,
191                  struct llog_rec_hdr *rec, struct llog_cookie *reccookie,
192                  void *buf);
193 int llog_cat_cancel_records(const struct lu_env *env,
194                             struct llog_handle *cathandle, int count,
195                             struct llog_cookie *cookies);
196 int __llog_cat_process(const struct lu_env *env, struct llog_handle *cat_llh,
197                        llog_cb_t cb, void *data, int startcat, int startidx,
198                        int fork);
199 int llog_cat_process(const struct lu_env *env, struct llog_handle *cat_llh,
200                      llog_cb_t cb, void *data, int startcat, int startidx);
201 int llog_cat_process_thread(void *data);
202 int llog_cat_reverse_process(const struct lu_env *env,
203                              struct llog_handle *cat_llh, llog_cb_t cb,
204                              void *data);
205 int llog_cat_set_first_idx(struct llog_handle *cathandle, int index);
206
207 /* llog_obd.c */
208 int llog_setup_named(struct obd_device *obd, struct obd_llog_group *olg,
209                      int index, struct obd_device *disk_obd, int count,
210                      struct llog_logid *logid, const char *logname,
211                      struct llog_operations *op);
212 int llog_setup(struct obd_device *obd, struct obd_llog_group *olg, int index,
213                struct obd_device *disk_obd, int count, struct llog_logid *logid,
214                struct llog_operations *op);
215 int __llog_ctxt_put(struct llog_ctxt *ctxt);
216 int llog_cleanup(struct llog_ctxt *);
217 int llog_sync(struct llog_ctxt *ctxt, struct obd_export *exp, int flags);
218 int llog_obd_add(const struct lu_env *env, struct llog_ctxt *ctxt,
219                  struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
220                  struct llog_cookie *logcookies, int numcookies);
221 int llog_cancel(const struct lu_env *env, struct llog_ctxt *ctxt,
222                 struct lov_stripe_md *lsm, int count,
223                 struct llog_cookie *cookies, int flags);
224 int llog_obd_origin_setup(const struct lu_env *env, struct obd_device *obd,
225                           struct obd_llog_group *olg, int index,
226                           struct obd_device *disk_obd, int count,
227                           struct llog_logid *logid, const char *name);
228 int llog_obd_origin_cleanup(const struct lu_env *env, struct llog_ctxt *ctxt);
229 int llog_obd_origin_add(const struct lu_env *env, struct llog_ctxt *ctxt,
230                         struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
231                         struct llog_cookie *logcookies, int numcookies);
232
233 int obd_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
234                   struct obd_device *disk_obd, int *idx);
235
236 int obd_llog_finish(struct obd_device *obd, int count);
237
238 /* llog_ioctl.c */
239 int llog_ioctl(struct llog_ctxt *ctxt, int cmd, struct obd_ioctl_data *data);
240 int llog_catalog_list(struct obd_device *obd, int count,
241                       struct obd_ioctl_data *data);
242
243 /* llog_net.c */
244 int llog_initiator_connect(struct llog_ctxt *ctxt);
245 int llog_receptor_accept(struct llog_ctxt *ctxt, struct obd_import *imp);
246 int llog_origin_connect(struct llog_ctxt *ctxt,
247                         struct llog_logid *logid, struct llog_gen *gen,
248                         struct obd_uuid *uuid);
249 int llog_handle_connect(struct ptlrpc_request *req);
250
251 /* recov_thread.c */
252 int llog_obd_repl_cancel(const struct lu_env *env, struct llog_ctxt *ctxt,
253                          struct lov_stripe_md *lsm, int count,
254                          struct llog_cookie *cookies, int flags);
255 int llog_obd_repl_sync(struct llog_ctxt *ctxt, struct obd_export *exp,
256                        int flags);
257 int llog_obd_repl_connect(struct llog_ctxt *ctxt,
258                           struct llog_logid *logid, struct llog_gen *gen,
259                           struct obd_uuid *uuid);
260
261 struct llog_operations {
262         int (*lop_destroy)(const struct lu_env *env,
263                            struct llog_handle *handle);
264         int (*lop_next_block)(const struct lu_env *env, struct llog_handle *h,
265                               int *curr_idx, int next_idx, __u64 *offset,
266                               void *buf, int len);
267         int (*lop_prev_block)(const struct lu_env *env, struct llog_handle *h,
268                               int prev_idx, void *buf, int len);
269         int (*lop_read_header)(const struct lu_env *env,
270                                struct llog_handle *handle);
271         int (*lop_setup)(const struct lu_env *env, struct obd_device *obd,
272                          struct obd_llog_group *olg, int ctxt_idx,
273                          struct obd_device *disk_obd, int count,
274                          struct llog_logid *logid, const char *name);
275         int (*lop_sync)(struct llog_ctxt *ctxt, struct obd_export *exp,
276                         int flags);
277         int (*lop_cleanup)(const struct lu_env *env, struct llog_ctxt *ctxt);
278         int (*lop_cancel)(const struct lu_env *env, struct llog_ctxt *ctxt,
279                           struct lov_stripe_md *lsm, int count,
280                           struct llog_cookie *cookies, int flags);
281         int (*lop_connect)(struct llog_ctxt *ctxt, struct llog_logid *logid,
282                            struct llog_gen *gen, struct obd_uuid *uuid);
283         /**
284          * Any llog file must be opened first using llog_open().  Llog can be
285          * opened by name, logid or without both, in last case the new logid
286          * will be generated.
287          */
288         int (*lop_open)(const struct lu_env *env, struct llog_handle *lgh,
289                         struct llog_logid *logid, char *name,
290                         enum llog_open_param);
291         /**
292          * Opened llog may not exist and this must be checked where needed using
293          * the llog_exist() call.
294          */
295         int (*lop_exist)(struct llog_handle *lgh);
296         /**
297          * Close llog file and calls llog_free_handle() implicitly.
298          * Any opened llog must be closed by llog_close() call.
299          */
300         int (*lop_close)(const struct lu_env *env, struct llog_handle *handle);
301         /**
302          * Create new llog file. The llog must be opened.
303          * Must be used only for local llog operations.
304          */
305         int (*lop_declare_create)(const struct lu_env *env,
306                                   struct llog_handle *handle,
307                                   struct thandle *th);
308         int (*lop_create)(const struct lu_env *env, struct llog_handle *handle,
309                           struct thandle *th);
310         /**
311          * write new record in llog. It appends records usually but can edit
312          * existing records too.
313          */
314         int (*lop_declare_write_rec)(const struct lu_env *env,
315                                      struct llog_handle *lgh,
316                                      struct llog_rec_hdr *rec,
317                                      int idx, struct thandle *th);
318         int (*lop_write_rec)(const struct lu_env *env,
319                              struct llog_handle *loghandle,
320                              struct llog_rec_hdr *rec,
321                              struct llog_cookie *cookie, int cookiecount,
322                              void *buf, int idx, struct thandle *th);
323         /**
324          * Add new record in llog catalog. Does the same as llog_write_rec()
325          * but using llog catalog.
326          */
327         int (*lop_declare_add)(const struct lu_env *env,
328                                struct llog_handle *lgh,
329                                struct llog_rec_hdr *rec, struct thandle *th);
330         int (*lop_add)(const struct lu_env *env, struct llog_handle *lgh,
331                        struct llog_rec_hdr *rec, struct llog_cookie *cookie,
332                        void *buf, struct thandle *th);
333         /* Old llog_add version, used in MDS-LOV-OSC now and will gone with
334          * LOD/OSP replacement */
335         int (*lop_obd_add)(const struct lu_env *env, struct llog_ctxt *ctxt,
336                            struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
337                            struct llog_cookie *logcookies, int numcookies);
338 };
339
340 /* In-memory descriptor for a log object or log catalog */
341 struct llog_handle {
342         cfs_rw_semaphore_t       lgh_lock;
343         cfs_spinlock_t           lgh_hdr_lock; /* protect lgh_hdr data */
344         struct llog_logid        lgh_id; /* id of this log */
345         struct llog_log_hdr     *lgh_hdr;
346         struct file             *lgh_file;
347         struct dt_object        *lgh_obj;
348         int                      lgh_last_idx;
349         int                      lgh_cur_idx; /* used during llog_process */
350         __u64                    lgh_cur_offset; /* used during llog_process */
351         struct llog_ctxt        *lgh_ctxt;
352         union {
353                 struct plain_handle_data         phd;
354                 struct cat_handle_data           chd;
355         } u;
356         char                    *lgh_name;
357         void                    *private_data;
358         struct llog_operations  *lgh_logops;
359 };
360
361 /* llog_lvfs.c */
362 extern struct llog_operations llog_lvfs_ops;
363 int llog_get_cat_list(struct obd_device *disk_obd,
364                       char *name, int idx, int count,
365                       struct llog_catid *idarray);
366
367 int llog_put_cat_list(struct obd_device *disk_obd,
368                       char *name, int idx, int count, struct llog_catid *idarray);
369
370 #define LLOG_CTXT_FLAG_UNINITIALIZED     0x00000001
371 #define LLOG_CTXT_FLAG_STOP              0x00000002
372
373 struct llog_ctxt {
374         int                      loc_idx; /* my index the obd array of ctxt's */
375         struct llog_gen          loc_gen;
376         struct obd_device       *loc_obd; /* points back to the containing obd*/
377         struct obd_llog_group   *loc_olg; /* group containing that ctxt */
378         struct obd_export       *loc_exp; /* parent "disk" export (e.g. MDS) */
379         struct obd_import       *loc_imp; /* to use in RPC's: can be backward
380                                              pointing import */
381         struct llog_operations  *loc_logops;
382         struct llog_handle      *loc_handle;
383         struct llog_commit_master *loc_lcm;
384         struct llog_canceld_ctxt *loc_llcd;
385         cfs_mutex_t              loc_mutex; /* protects loc_llcd and loc_imp */
386         cfs_atomic_t             loc_refcount;
387         void                    *llog_proc_cb;
388         long                     loc_flags; /* flags, see above defines */
389         struct dt_object        *loc_dir;
390 };
391
392 #define LCM_NAME_SIZE 64
393
394 struct llog_commit_master {
395         /**
396          * Thread control flags (start, stop, etc.)
397          */
398         long                       lcm_flags;
399         /**
400          * Number of llcds onthis lcm.
401          */
402         cfs_atomic_t               lcm_count;
403         /**
404          * The refcount for lcm
405          */
406          cfs_atomic_t              lcm_refcount;
407         /**
408          * Thread control structure. Used for control commit thread.
409          */
410         struct ptlrpcd_ctl         lcm_pc;
411         /**
412          * Lock protecting list of llcds.
413          */
414         cfs_spinlock_t             lcm_lock;
415         /**
416          * Llcds in flight for debugging purposes.
417          */
418         cfs_list_t                 lcm_llcds;
419         /**
420          * Commit thread name buffer. Only used for thread start.
421          */
422         char                       lcm_name[LCM_NAME_SIZE];
423 };
424
425 static inline struct llog_commit_master
426 *lcm_get(struct llog_commit_master *lcm)
427 {
428         cfs_atomic_inc(&lcm->lcm_refcount);
429         return lcm;
430 }
431
432 static inline void
433 lcm_put(struct llog_commit_master *lcm)
434 {
435         LASSERT_ATOMIC_POS(&lcm->lcm_refcount);
436         if (cfs_atomic_dec_and_test(&lcm->lcm_refcount))
437                 OBD_FREE_PTR(lcm);
438 }
439
440 struct llog_canceld_ctxt {
441         /**
442          * Llog context this llcd is attached to. Used for accessing
443          * ->loc_import and others in process of canceling cookies
444          * gathered in this llcd.
445          */
446         struct llog_ctxt          *llcd_ctxt;
447         /**
448          * Cancel thread control stucture pointer. Used for accessing
449          * it to see if should stop processing and other needs.
450          */
451         struct llog_commit_master *llcd_lcm;
452         /**
453          * Maximal llcd size. Used in calculations on how much of room
454          * left in llcd to cookie comming cookies.
455          */
456         int                        llcd_size;
457         /**
458          * Link to lcm llcds list.
459          */
460         cfs_list_t                 llcd_list;
461         /**
462          * Current llcd size while gathering cookies. This should not be
463          * more than ->llcd_size. Used for determining if we need to
464          * send this llcd (if full) and allocate new one. This is also
465          * used for copying new cookie at the end of buffer.
466          */
467         int                        llcd_cookiebytes;
468         /**
469          * Pointer to the start of cookies buffer.
470          */
471         struct llog_cookie         llcd_cookies[0];
472 };
473
474 /* ptlrpc/recov_thread.c */
475 extern struct llog_commit_master *llog_recov_thread_init(char *name);
476 extern void llog_recov_thread_fini(struct llog_commit_master *lcm,
477                                    int force);
478 extern int llog_recov_thread_start(struct llog_commit_master *lcm);
479 extern void llog_recov_thread_stop(struct llog_commit_master *lcm,
480                                     int force);
481
482 static inline void llog_gen_init(struct llog_ctxt *ctxt)
483 {
484         struct obd_device *obd = ctxt->loc_exp->exp_obd;
485
486         LASSERTF(obd->u.obt.obt_magic == OBT_MAGIC,
487                  "%s: wrong obt magic %#x\n",
488                  obd->obd_name, obd->u.obt.obt_magic);
489         ctxt->loc_gen.mnt_cnt = obd->u.obt.obt_mount_count;
490         ctxt->loc_gen.conn_cnt++;
491 }
492
493 static inline int llog_gen_lt(struct llog_gen a, struct llog_gen b)
494 {
495         if (a.mnt_cnt < b.mnt_cnt)
496                 return 1;
497         if (a.mnt_cnt > b.mnt_cnt)
498                 return 0;
499         return(a.conn_cnt < b.conn_cnt ? 1 : 0);
500 }
501
502 #define LLOG_PROC_BREAK 0x0001
503 #define LLOG_DEL_RECORD 0x0002
504
505 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
506                                struct llog_operations **lop)
507 {
508         if (ctxt == NULL)
509                 return -ENOTCONN;
510
511         *lop = ctxt->loc_logops;
512         if (*lop == NULL)
513                 return -EOPNOTSUPP;
514
515         return 0;
516 }
517
518 static inline int llog_handle2ops(struct llog_handle *loghandle,
519                                   struct llog_operations **lop)
520 {
521         if (loghandle == NULL || loghandle->lgh_logops == NULL)
522                 return -EINVAL;
523
524         *lop = loghandle->lgh_logops;
525         return 0;
526 }
527
528 static inline int llog_data_len(int len)
529 {
530         return cfs_size_round(len);
531 }
532
533 static inline struct llog_ctxt *llog_ctxt_get(struct llog_ctxt *ctxt)
534 {
535         cfs_atomic_inc(&ctxt->loc_refcount);
536         CDEBUG(D_INFO, "GETting ctxt %p : new refcount %d\n", ctxt,
537                cfs_atomic_read(&ctxt->loc_refcount));
538         return ctxt;
539 }
540
541 static inline void llog_ctxt_put(struct llog_ctxt *ctxt)
542 {
543         if (ctxt == NULL)
544                 return;
545         LASSERT_ATOMIC_GT_LT(&ctxt->loc_refcount, 0, LI_POISON);
546         CDEBUG(D_INFO, "PUTting ctxt %p : new refcount %d\n", ctxt,
547                cfs_atomic_read(&ctxt->loc_refcount) - 1);
548         __llog_ctxt_put(ctxt);
549 }
550
551 static inline void llog_group_init(struct obd_llog_group *olg, int group)
552 {
553         cfs_waitq_init(&olg->olg_waitq);
554         cfs_spin_lock_init(&olg->olg_lock);
555         cfs_mutex_init(&olg->olg_cat_processing);
556         olg->olg_seq = group;
557 }
558
559 static inline void llog_group_set_export(struct obd_llog_group *olg,
560                                          struct obd_export *exp)
561 {
562         LASSERT(exp != NULL);
563
564         cfs_spin_lock(&olg->olg_lock);
565         if (olg->olg_exp != NULL && olg->olg_exp != exp)
566                 CWARN("%s: export for group %d is changed: 0x%p -> 0x%p\n",
567                       exp->exp_obd->obd_name, olg->olg_seq,
568                       olg->olg_exp, exp);
569         olg->olg_exp = exp;
570         cfs_spin_unlock(&olg->olg_lock);
571 }
572
573 static inline int llog_group_set_ctxt(struct obd_llog_group *olg,
574                                       struct llog_ctxt *ctxt, int index)
575 {
576         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
577
578         cfs_spin_lock(&olg->olg_lock);
579         if (olg->olg_ctxts[index] != NULL) {
580                 cfs_spin_unlock(&olg->olg_lock);
581                 return -EEXIST;
582         }
583         olg->olg_ctxts[index] = ctxt;
584         cfs_spin_unlock(&olg->olg_lock);
585         return 0;
586 }
587
588 static inline struct llog_ctxt *llog_group_get_ctxt(struct obd_llog_group *olg,
589                                                     int index)
590 {
591         struct llog_ctxt *ctxt;
592
593         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
594
595         cfs_spin_lock(&olg->olg_lock);
596         if (olg->olg_ctxts[index] == NULL) {
597                 ctxt = NULL;
598         } else {
599                 ctxt = llog_ctxt_get(olg->olg_ctxts[index]);
600         }
601         cfs_spin_unlock(&olg->olg_lock);
602         return ctxt;
603 }
604
605 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
606                                                  int index)
607 {
608         return llog_group_get_ctxt(&obd->obd_olg, index);
609 }
610
611 static inline int llog_group_ctxt_null(struct obd_llog_group *olg, int index)
612 {
613         return (olg->olg_ctxts[index] == NULL);
614 }
615
616 static inline int llog_ctxt_null(struct obd_device *obd, int index)
617 {
618         return (llog_group_ctxt_null(&obd->obd_olg, index));
619 }
620
621 static inline int llog_destroy(const struct lu_env *env,
622                                struct llog_handle *handle)
623 {
624         struct llog_operations *lop;
625         int rc;
626
627         ENTRY;
628
629         rc = llog_handle2ops(handle, &lop);
630         if (rc)
631                 RETURN(rc);
632         if (lop->lop_destroy == NULL)
633                 RETURN(-EOPNOTSUPP);
634
635         rc = lop->lop_destroy(env, handle);
636         RETURN(rc);
637 }
638
639 static inline int llog_next_block(const struct lu_env *env,
640                                   struct llog_handle *loghandle, int *cur_idx,
641                                   int next_idx, __u64 *cur_offset, void *buf,
642                                   int len)
643 {
644         struct llog_operations *lop;
645         int rc;
646
647         ENTRY;
648
649         rc = llog_handle2ops(loghandle, &lop);
650         if (rc)
651                 RETURN(rc);
652         if (lop->lop_next_block == NULL)
653                 RETURN(-EOPNOTSUPP);
654
655         rc = lop->lop_next_block(env, loghandle, cur_idx, next_idx,
656                                  cur_offset, buf, len);
657         RETURN(rc);
658 }
659
660 static inline int llog_prev_block(const struct lu_env *env,
661                                   struct llog_handle *loghandle,
662                                   int prev_idx, void *buf, int len)
663 {
664         struct llog_operations *lop;
665         int rc;
666
667         ENTRY;
668
669         rc = llog_handle2ops(loghandle, &lop);
670         if (rc)
671                 RETURN(rc);
672         if (lop->lop_prev_block == NULL)
673                 RETURN(-EOPNOTSUPP);
674
675         rc = lop->lop_prev_block(env, loghandle, prev_idx, buf, len);
676         RETURN(rc);
677 }
678
679 static inline int llog_connect(struct llog_ctxt *ctxt,
680                                struct llog_logid *logid, struct llog_gen *gen,
681                                struct obd_uuid *uuid)
682 {
683         struct llog_operations  *lop;
684         int                      rc;
685
686         ENTRY;
687
688         rc = llog_obd2ops(ctxt, &lop);
689         if (rc)
690                 RETURN(rc);
691         if (lop->lop_connect == NULL)
692                 RETURN(-EOPNOTSUPP);
693
694         rc = lop->lop_connect(ctxt, logid, gen, uuid);
695         RETURN(rc);
696 }
697
698 /* llog.c */
699 int llog_exist(struct llog_handle *loghandle);
700 int llog_declare_create(const struct lu_env *env,
701                         struct llog_handle *loghandle, struct thandle *th);
702 int llog_create(const struct lu_env *env, struct llog_handle *handle,
703                 struct thandle *th);
704 int llog_declare_write_rec(const struct lu_env *env,
705                            struct llog_handle *handle,
706                            struct llog_rec_hdr *rec, int idx,
707                            struct thandle *th);
708 int llog_write_rec(const struct lu_env *env, struct llog_handle *handle,
709                    struct llog_rec_hdr *rec, struct llog_cookie *logcookies,
710                    int numcookies, void *buf, int idx, struct thandle *th);
711 int llog_add(const struct lu_env *env, struct llog_handle *lgh,
712              struct llog_rec_hdr *rec, struct llog_cookie *logcookies,
713              void *buf, struct thandle *th);
714 int llog_declare_add(const struct lu_env *env, struct llog_handle *lgh,
715                      struct llog_rec_hdr *rec, struct thandle *th);
716 int lustre_process_log(struct super_block *sb, char *logname,
717                        struct config_llog_instance *cfg);
718 int lustre_end_log(struct super_block *sb, char *logname,
719                    struct config_llog_instance *cfg);
720 int llog_open_create(const struct lu_env *env, struct llog_ctxt *ctxt,
721                      struct llog_handle **res, struct llog_logid *logid,
722                      char *name);
723 int llog_erase(const struct lu_env *env, struct llog_ctxt *ctxt,
724                struct llog_logid *logid, char *name);
725 int llog_write(const struct lu_env *env, struct llog_handle *loghandle,
726                struct llog_rec_hdr *rec, struct llog_cookie *reccookie,
727                int cookiecount, void *buf, int idx);
728
729 /** @} log */
730
731 #endif