Whamcloud - gitweb
2effa256c045e1ce2d2d7257d6efb33b305b0847
[fs/lustre-release.git] / lustre / include / lustre_log.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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
73 #define LOG_NAME_LIMIT(logname, name)                   \
74         snprintf(logname, sizeof(logname), "LOGS/%s", name)
75 #define LLOG_EEMPTY 4711
76
77 struct plain_handle_data {
78         cfs_list_t          phd_entry;
79         struct llog_handle *phd_cat_handle;
80         struct llog_cookie  phd_cookie; /* cookie of this log in its cat */
81         int                 phd_last_idx;
82 };
83
84 struct cat_handle_data {
85         cfs_list_t              chd_head;
86         struct llog_handle     *chd_current_log; /* currently open log */
87 };
88
89 /* In-memory descriptor for a log object or log catalog */
90 struct llog_handle {
91         cfs_rw_semaphore_t      lgh_lock;
92         struct llog_logid       lgh_id;              /* id of this log */
93         struct llog_log_hdr    *lgh_hdr;
94         struct file            *lgh_file;
95         int                     lgh_last_idx;
96         int                     lgh_cur_idx;    /* used during llog_process */
97         __u64                   lgh_cur_offset; /* used during llog_process */
98         struct llog_ctxt       *lgh_ctxt;
99         union {
100                 struct plain_handle_data phd;
101                 struct cat_handle_data   chd;
102         } u;
103 };
104
105 /* llog.c  -  general API */
106 typedef int (*llog_cb_t)(struct llog_handle *, struct llog_rec_hdr *, void *);
107 typedef int (*llog_fill_rec_cb_t)(struct llog_rec_hdr *rec, void *data);
108 extern struct llog_handle *llog_alloc_handle(void);
109 int llog_init_handle(struct llog_handle *handle, int flags,
110                      struct obd_uuid *uuid);
111 extern void llog_free_handle(struct llog_handle *handle);
112 int llog_process(struct llog_handle *loghandle, llog_cb_t cb,
113                  void *data, void *catdata);
114 int llog_process_flags(struct llog_handle *loghandle, llog_cb_t cb,
115                  void *data, void *catdata, int flags);
116 int llog_reverse_process(struct llog_handle *loghandle, llog_cb_t cb,
117                          void *data, void *catdata);
118 extern int llog_cancel_rec(struct llog_handle *loghandle, int index);
119 extern int llog_close(struct llog_handle *cathandle);
120 extern int llog_get_size(struct llog_handle *loghandle);
121
122 /* llog_process flags */
123 #define LLOG_FLAG_NODEAMON 0x0001
124
125 /* llog_cat.c - catalog api */
126 struct llog_process_data {
127         /**
128          * Any useful data needed while processing catalog. This is
129          * passed later to process callback.
130          */
131         void                *lpd_data;
132         /**
133          * Catalog process callback function, called for each record
134          * in catalog.
135          */
136         llog_cb_t            lpd_cb;
137         /**
138          * Start processing the catalog from startcat/startidx
139          */
140         int                  lpd_startcat;
141         int                  lpd_startidx;
142         int                  lpd_flags;  /** llog_process flags */
143 };
144
145 struct llog_process_cat_data {
146         /**
147          * Temporary stored first_idx while scanning log.
148          */
149         int                  lpcd_first_idx;
150         /**
151          * Temporary stored last_idx while scanning log.
152          */
153         int                  lpcd_last_idx;
154 };
155
156 struct llog_process_cat_args {
157         /**
158          * Llog context used in recovery thread on OST (recov_thread.c)
159          */
160         struct llog_ctxt    *lpca_ctxt;
161         /**
162          * Llog callback used in recovery thread on OST (recov_thread.c)
163          */
164         void                *lpca_cb;
165         /**
166          * Data pointer for llog callback.
167          */
168         void                *lpca_arg;
169 };
170
171 int llog_cat_put(struct llog_handle *cathandle);
172 int llog_cat_add_rec(struct llog_handle *cathandle, struct llog_rec_hdr *rec,
173                      struct llog_cookie *reccookie, void *buf);
174 int llog_cat_cancel_records(struct llog_handle *cathandle, int count,
175                             struct llog_cookie *cookies);
176 int llog_cat_process(struct llog_handle *cat_llh, llog_cb_t cb, void *data,
177                      int startcat, int startidx);
178 int llog_cat_process_flags(struct llog_handle *cat_llh, llog_cb_t cb, void *data,
179                      int flags, int startcat, int startidx);
180 int llog_cat_process_thread(void *data);
181 int llog_cat_reverse_process(struct llog_handle *cat_llh, llog_cb_t cb, void *data);
182 int llog_cat_set_first_idx(struct llog_handle *cathandle, int index);
183
184 /* llog_obd.c */
185 int llog_setup_named(struct obd_device *obd, struct obd_llog_group *olg,
186                      int index, struct obd_device *disk_obd, int count,
187                      struct llog_logid *logid, const char *logname,
188                      struct llog_operations *op);
189 int llog_setup(struct obd_device *obd, struct obd_llog_group *olg, int index,
190                struct obd_device *disk_obd, int count, struct llog_logid *logid,
191                struct llog_operations *op);
192 int __llog_ctxt_put(struct llog_ctxt *ctxt);
193 int llog_cleanup(struct llog_ctxt *);
194 int llog_sync(struct llog_ctxt *ctxt, struct obd_export *exp);
195 int llog_add(struct llog_ctxt *ctxt, struct llog_rec_hdr *rec,
196              struct lov_stripe_md *lsm, struct llog_cookie *logcookies,
197              int numcookies);
198 int llog_cancel(struct llog_ctxt *, struct lov_stripe_md *lsm,
199                 int count, struct llog_cookie *cookies, int flags);
200
201 int llog_obd_origin_setup(struct obd_device *obd, struct obd_llog_group *olg,
202                           int index, struct obd_device *disk_obd, int count,
203                           struct llog_logid *logid, const char *name);
204 int llog_obd_origin_cleanup(struct llog_ctxt *ctxt);
205 int llog_obd_origin_add(struct llog_ctxt *ctxt,
206                         struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
207                         struct llog_cookie *logcookies, int numcookies);
208
209 int obd_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
210                   struct obd_device *disk_obd, int *idx);
211
212 int obd_llog_finish(struct obd_device *obd, int count);
213
214 /* llog_ioctl.c */
215 int llog_ioctl(struct llog_ctxt *ctxt, int cmd, struct obd_ioctl_data *data);
216 int llog_catalog_list(struct obd_device *obd, int count,
217                       struct obd_ioctl_data *data);
218
219 /* llog_net.c */
220 int llog_initiator_connect(struct llog_ctxt *ctxt);
221 int llog_receptor_accept(struct llog_ctxt *ctxt, struct obd_import *imp);
222 int llog_origin_connect(struct llog_ctxt *ctxt,
223                         struct llog_logid *logid, struct llog_gen *gen,
224                         struct obd_uuid *uuid);
225 int llog_handle_connect(struct ptlrpc_request *req);
226
227 /* recov_thread.c */
228 int llog_obd_repl_cancel(struct llog_ctxt *ctxt,
229                          struct lov_stripe_md *lsm, int count,
230                          struct llog_cookie *cookies, int flags);
231 int llog_obd_repl_sync(struct llog_ctxt *ctxt, struct obd_export *exp);
232 int llog_obd_repl_connect(struct llog_ctxt *ctxt,
233                           struct llog_logid *logid, struct llog_gen *gen,
234                           struct obd_uuid *uuid);
235
236 struct llog_operations {
237         int (*lop_write_rec)(struct llog_handle *loghandle,
238                              struct llog_rec_hdr *rec,
239                              struct llog_cookie *logcookies, int numcookies,
240                              void *, int idx);
241         int (*lop_destroy)(struct llog_handle *handle);
242         int (*lop_next_block)(struct llog_handle *h, int *curr_idx,
243                               int next_idx, __u64 *offset, void *buf, int len);
244         int (*lop_prev_block)(struct llog_handle *h,
245                               int prev_idx, void *buf, int len);
246         int (*lop_create)(struct llog_ctxt *ctxt, struct llog_handle **,
247                           struct llog_logid *logid, char *name);
248         int (*lop_close)(struct llog_handle *handle);
249         int (*lop_read_header)(struct llog_handle *handle);
250
251         int (*lop_setup)(struct obd_device *obd, struct obd_llog_group *olg,
252                          int ctxt_idx, struct obd_device *disk_obd, int count,
253                          struct llog_logid *logid, const char *name);
254         int (*lop_sync)(struct llog_ctxt *ctxt, struct obd_export *exp);
255         int (*lop_cleanup)(struct llog_ctxt *ctxt);
256         int (*lop_add)(struct llog_ctxt *ctxt, struct llog_rec_hdr *rec,
257                        struct lov_stripe_md *lsm,
258                        struct llog_cookie *logcookies, int numcookies);
259         int (*lop_cancel)(struct llog_ctxt *ctxt, struct lov_stripe_md *lsm,
260                           int count, struct llog_cookie *cookies, int flags);
261         int (*lop_connect)(struct llog_ctxt *ctxt,
262                            struct llog_logid *logid, struct llog_gen *gen,
263                            struct obd_uuid *uuid);
264         /* XXX add 2 more: commit callbacks and llog recovery functions */
265 };
266
267 /* llog_lvfs.c */
268 extern struct llog_operations llog_lvfs_ops;
269 int llog_get_cat_list(struct obd_device *disk_obd,
270                       char *name, int idx, int count,
271                       struct llog_catid *idarray);
272
273 int llog_put_cat_list(struct obd_device *disk_obd,
274                       char *name, int idx, int count, struct llog_catid *idarray);
275
276 #define LLOG_CTXT_FLAG_UNINITIALIZED     0x00000001
277
278 struct llog_ctxt {
279         int                      loc_idx; /* my index the obd array of ctxt's */
280         struct llog_gen          loc_gen;
281         struct obd_device       *loc_obd; /* points back to the containing obd*/
282         struct obd_llog_group   *loc_olg; /* group containing that ctxt */
283         struct obd_export       *loc_exp; /* parent "disk" export (e.g. MDS) */
284         struct obd_import       *loc_imp; /* to use in RPC's: can be backward
285                                              pointing import */
286         struct llog_operations  *loc_logops;
287         struct llog_handle      *loc_handle;
288         struct llog_commit_master *loc_lcm;
289         struct llog_canceld_ctxt *loc_llcd;
290         cfs_semaphore_t          loc_sem; /* protects loc_llcd and loc_imp */
291         cfs_atomic_t             loc_refcount;
292         void                    *llog_proc_cb;
293         long                     loc_flags; /* flags, see above defines */
294 };
295
296 #define LCM_NAME_SIZE 64
297
298 struct llog_commit_master {
299         /**
300          * Thread control flags (start, stop, etc.)
301          */
302         long                       lcm_flags;
303         /**
304          * Number of llcds onthis lcm.
305          */
306         cfs_atomic_t               lcm_count;
307         /**
308          * The refcount for lcm
309          */
310          cfs_atomic_t              lcm_refcount;
311         /**
312          * Thread control structure. Used for control commit thread.
313          */
314         struct ptlrpcd_ctl         lcm_pc;
315         /**
316          * Lock protecting list of llcds.
317          */
318         cfs_spinlock_t             lcm_lock;
319         /**
320          * Llcds in flight for debugging purposes.
321          */
322         cfs_list_t                 lcm_llcds;
323         /**
324          * Commit thread name buffer. Only used for thread start.
325          */
326         char                       lcm_name[LCM_NAME_SIZE];
327 };
328
329 static inline struct llog_commit_master
330 *lcm_get(struct llog_commit_master *lcm)
331 {
332         LASSERT(cfs_atomic_read(&lcm->lcm_refcount) > 0);
333         cfs_atomic_inc(&lcm->lcm_refcount);
334         return lcm;
335 }
336
337 static inline void
338 lcm_put(struct llog_commit_master *lcm)
339 {
340         if (!cfs_atomic_dec_and_test(&lcm->lcm_refcount)) {
341                 return ;
342         }
343         OBD_FREE_PTR(lcm);
344 }
345
346 struct llog_canceld_ctxt {
347         /**
348          * Llog context this llcd is attached to. Used for accessing
349          * ->loc_import and others in process of canceling cookies
350          * gathered in this llcd.
351          */
352         struct llog_ctxt          *llcd_ctxt;
353         /**
354          * Cancel thread control stucture pointer. Used for accessing
355          * it to see if should stop processing and other needs.
356          */
357         struct llog_commit_master *llcd_lcm;
358         /**
359          * Maximal llcd size. Used in calculations on how much of room
360          * left in llcd to cookie comming cookies.
361          */
362         int                        llcd_size;
363         /**
364          * Link to lcm llcds list.
365          */
366         cfs_list_t                 llcd_list;
367         /**
368          * Current llcd size while gathering cookies. This should not be
369          * more than ->llcd_size. Used for determining if we need to
370          * send this llcd (if full) and allocate new one. This is also
371          * used for copying new cookie at the end of buffer.
372          */
373         int                        llcd_cookiebytes;
374         /**
375          * Pointer to the start of cookies buffer.
376          */
377         struct llog_cookie         llcd_cookies[0];
378 };
379
380 /* ptlrpc/recov_thread.c */
381 extern struct llog_commit_master *llog_recov_thread_init(char *name);
382 extern void llog_recov_thread_fini(struct llog_commit_master *lcm,
383                                    int force);
384 extern int llog_recov_thread_start(struct llog_commit_master *lcm);
385 extern void llog_recov_thread_stop(struct llog_commit_master *lcm,
386                                     int force);
387
388 static inline void llog_gen_init(struct llog_ctxt *ctxt)
389 {
390         struct obd_device *obd = ctxt->loc_exp->exp_obd;
391
392         if (!strcmp(obd->obd_type->typ_name, LUSTRE_MDS_NAME))
393                 ctxt->loc_gen.mnt_cnt = obd->u.mds.mds_mount_count;
394         else if (!strstr(obd->obd_type->typ_name, LUSTRE_OST_NAME))
395                 ctxt->loc_gen.mnt_cnt = obd->u.filter.fo_mount_count;
396         else
397                 ctxt->loc_gen.mnt_cnt = 0;
398         ctxt->loc_gen.conn_cnt++;
399 }
400
401 static inline int llog_gen_lt(struct llog_gen a, struct llog_gen b)
402 {
403         if (a.mnt_cnt < b.mnt_cnt)
404                 return 1;
405         if (a.mnt_cnt > b.mnt_cnt)
406                 return 0;
407         return(a.conn_cnt < b.conn_cnt ? 1 : 0);
408 }
409
410 #define LLOG_PROC_BREAK 0x0001
411 #define LLOG_DEL_RECORD 0x0002
412
413 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
414                                struct llog_operations **lop)
415 {
416         if (ctxt == NULL)
417                 return -ENOTCONN;
418
419         *lop = ctxt->loc_logops;
420         if (*lop == NULL)
421                 return -EOPNOTSUPP;
422
423         return 0;
424 }
425
426 static inline int llog_handle2ops(struct llog_handle *loghandle,
427                                   struct llog_operations **lop)
428 {
429         if (loghandle == NULL)
430                 return -EINVAL;
431
432         return llog_obd2ops(loghandle->lgh_ctxt, lop);
433 }
434
435 static inline int llog_data_len(int len)
436 {
437         return cfs_size_round(len);
438 }
439
440 static inline struct llog_ctxt *llog_ctxt_get(struct llog_ctxt *ctxt)
441 {
442         LASSERT(cfs_atomic_read(&ctxt->loc_refcount) > 0);
443         cfs_atomic_inc(&ctxt->loc_refcount);
444         CDEBUG(D_INFO, "GETting ctxt %p : new refcount %d\n", ctxt,
445                cfs_atomic_read(&ctxt->loc_refcount));
446         return ctxt;
447 }
448
449 static inline void llog_ctxt_put(struct llog_ctxt *ctxt)
450 {
451         if (ctxt == NULL)
452                 return;
453         LASSERT(cfs_atomic_read(&ctxt->loc_refcount) > 0);
454         LASSERT(cfs_atomic_read(&ctxt->loc_refcount) < 0x5a5a5a);
455         CDEBUG(D_INFO, "PUTting ctxt %p : new refcount %d\n", ctxt,
456                cfs_atomic_read(&ctxt->loc_refcount) - 1);
457         __llog_ctxt_put(ctxt);
458 }
459
460 static inline void llog_group_init(struct obd_llog_group *olg, int group)
461 {
462         cfs_waitq_init(&olg->olg_waitq);
463         cfs_spin_lock_init(&olg->olg_lock);
464         cfs_sema_init(&olg->olg_cat_processing, 1);
465         olg->olg_group = group;
466 }
467
468 static inline void llog_group_set_export(struct obd_llog_group *olg,
469                                          struct obd_export *exp)
470 {
471         LASSERT(exp != NULL);
472
473         cfs_spin_lock(&olg->olg_lock);
474         if (olg->olg_exp != NULL && olg->olg_exp != exp)
475                 CWARN("%s: export for group %d is changed: 0x%p -> 0x%p\n",
476                       exp->exp_obd->obd_name, olg->olg_group,
477                       olg->olg_exp, exp);
478         olg->olg_exp = exp;
479         cfs_spin_unlock(&olg->olg_lock);
480 }
481
482 static inline int llog_group_set_ctxt(struct obd_llog_group *olg,
483                                       struct llog_ctxt *ctxt, int index)
484 {
485         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
486
487         cfs_spin_lock(&olg->olg_lock);
488         if (olg->olg_ctxts[index] != NULL) {
489                 cfs_spin_unlock(&olg->olg_lock);
490                 return -EEXIST;
491         }
492         olg->olg_ctxts[index] = ctxt;
493         cfs_spin_unlock(&olg->olg_lock);
494         return 0;
495 }
496
497 static inline struct llog_ctxt *llog_group_get_ctxt(struct obd_llog_group *olg,
498                                                     int index)
499 {
500         struct llog_ctxt *ctxt;
501
502         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
503
504         cfs_spin_lock(&olg->olg_lock);
505         if (olg->olg_ctxts[index] == NULL) {
506                 ctxt = NULL;
507         } else {
508                 ctxt = llog_ctxt_get(olg->olg_ctxts[index]);
509         }
510         cfs_spin_unlock(&olg->olg_lock);
511         return ctxt;
512 }
513
514 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
515                                                  int index)
516 {
517         return llog_group_get_ctxt(&obd->obd_olg, index);
518 }
519
520 static inline int llog_group_ctxt_null(struct obd_llog_group *olg, int index)
521 {
522         return (olg->olg_ctxts[index] == NULL);
523 }
524
525 static inline int llog_ctxt_null(struct obd_device *obd, int index)
526 {
527         return (llog_group_ctxt_null(&obd->obd_olg, index));
528 }
529
530 static inline int llog_write_rec(struct llog_handle *handle,
531                                  struct llog_rec_hdr *rec,
532                                  struct llog_cookie *logcookies,
533                                  int numcookies, void *buf, int idx)
534 {
535         struct llog_operations *lop;
536         int raised, rc, buflen;
537         ENTRY;
538
539         rc = llog_handle2ops(handle, &lop);
540         if (rc)
541                 RETURN(rc);
542         LASSERT(lop);
543         if (lop->lop_write_rec == NULL)
544                 RETURN(-EOPNOTSUPP);
545
546         /* FIXME:  Why doesn't caller just set the right lrh_len itself? */
547         if (buf)
548                 buflen = rec->lrh_len + sizeof(struct llog_rec_hdr)
549                                 + sizeof(struct llog_rec_tail);
550         else
551                 buflen = rec->lrh_len;
552         LASSERT(cfs_size_round(buflen) == buflen);
553
554         raised = cfs_cap_raised(CFS_CAP_SYS_RESOURCE);
555         if (!raised)
556                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
557         rc = lop->lop_write_rec(handle, rec, logcookies, numcookies, buf, idx);
558         if (!raised)
559                 cfs_cap_lower(CFS_CAP_SYS_RESOURCE);
560         RETURN(rc);
561 }
562
563 static inline int llog_read_header(struct llog_handle *handle)
564 {
565         struct llog_operations *lop;
566         int rc;
567         ENTRY;
568
569         rc = llog_handle2ops(handle, &lop);
570         if (rc)
571                 RETURN(rc);
572         if (lop->lop_read_header == NULL)
573                 RETURN(-EOPNOTSUPP);
574
575         rc = lop->lop_read_header(handle);
576         RETURN(rc);
577 }
578
579 static inline int llog_destroy(struct llog_handle *handle)
580 {
581         struct llog_operations *lop;
582         int rc;
583         ENTRY;
584
585         rc = llog_handle2ops(handle, &lop);
586         if (rc)
587                 RETURN(rc);
588         if (lop->lop_destroy == NULL)
589                 RETURN(-EOPNOTSUPP);
590
591         rc = lop->lop_destroy(handle);
592         RETURN(rc);
593 }
594
595 #if 0
596 static inline int llog_cancel(struct obd_export *exp,
597                               struct lov_stripe_md *lsm, int count,
598                               struct llog_cookie *cookies, int flags)
599 {
600         struct llog_operations *lop;
601         int rc;
602         ENTRY;
603
604         rc = llog_handle2ops(loghandle, &lop);
605         if (rc)
606                 RETURN(rc);
607         if (lop->lop_cancel == NULL)
608                 RETURN(-EOPNOTSUPP);
609
610         rc = lop->lop_cancel(exp, lsm, count, cookies, flags);
611         RETURN(rc);
612 }
613 #endif
614
615 static inline int llog_next_block(struct llog_handle *loghandle, int *cur_idx,
616                                   int next_idx, __u64 *cur_offset, void *buf,
617                                   int len)
618 {
619         struct llog_operations *lop;
620         int rc;
621         ENTRY;
622
623         rc = llog_handle2ops(loghandle, &lop);
624         if (rc)
625                 RETURN(rc);
626         if (lop->lop_next_block == NULL)
627                 RETURN(-EOPNOTSUPP);
628
629         rc = lop->lop_next_block(loghandle, cur_idx, next_idx, cur_offset, buf,
630                                  len);
631         RETURN(rc);
632 }
633
634 static inline int llog_prev_block(struct llog_handle *loghandle,
635                                   int prev_idx, void *buf, int len)
636 {
637         struct llog_operations *lop;
638         int rc;
639         ENTRY;
640
641         rc = llog_handle2ops(loghandle, &lop);
642         if (rc)
643                 RETURN(rc);
644         if (lop->lop_prev_block == NULL)
645                 RETURN(-EOPNOTSUPP);
646
647         rc = lop->lop_prev_block(loghandle, prev_idx, buf, len);
648         RETURN(rc);
649 }
650
651 static inline int llog_create(struct llog_ctxt *ctxt, struct llog_handle **res,
652                               struct llog_logid *logid, char *name)
653 {
654         struct llog_operations *lop;
655         int raised, rc;
656         ENTRY;
657
658         rc = llog_obd2ops(ctxt, &lop);
659         if (rc)
660                 RETURN(rc);
661         if (lop->lop_create == NULL)
662                 RETURN(-EOPNOTSUPP);
663
664         raised = cfs_cap_raised(CFS_CAP_SYS_RESOURCE);
665         if (!raised)
666                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
667         rc = lop->lop_create(ctxt, res, logid, name);
668         if (!raised)
669                 cfs_cap_lower(CFS_CAP_SYS_RESOURCE);
670         RETURN(rc);
671 }
672
673 static inline int llog_connect(struct llog_ctxt *ctxt,
674                                struct llog_logid *logid, struct llog_gen *gen,
675                                struct obd_uuid *uuid)
676 {
677         struct llog_operations *lop;
678         int rc;
679         ENTRY;
680
681         rc = llog_obd2ops(ctxt, &lop);
682         if (rc)
683                 RETURN(rc);
684         if (lop->lop_connect == NULL)
685                 RETURN(-EOPNOTSUPP);
686
687         rc = lop->lop_connect(ctxt, logid, gen, uuid);
688         RETURN(rc);
689 }
690
691 int lustre_process_log(struct super_block *sb, char *logname,
692                        struct config_llog_instance *cfg);
693 int lustre_end_log(struct super_block *sb, char *logname,
694                    struct config_llog_instance *cfg);
695
696 /** @} log */
697
698 #endif