Whamcloud - gitweb
8c0845d816dc3b30b826ca2f82eaf0113c42ff75
[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 (c) 2007, 2010, Oracle and/or its affiliates. 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         ctxt->loc_gen.mnt_cnt = obd->u.obt.obt_mount_count;
393         ctxt->loc_gen.conn_cnt++;
394 }
395
396 static inline int llog_gen_lt(struct llog_gen a, struct llog_gen b)
397 {
398         if (a.mnt_cnt < b.mnt_cnt)
399                 return 1;
400         if (a.mnt_cnt > b.mnt_cnt)
401                 return 0;
402         return(a.conn_cnt < b.conn_cnt ? 1 : 0);
403 }
404
405 #define LLOG_PROC_BREAK 0x0001
406 #define LLOG_DEL_RECORD 0x0002
407
408 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
409                                struct llog_operations **lop)
410 {
411         if (ctxt == NULL)
412                 return -ENOTCONN;
413
414         *lop = ctxt->loc_logops;
415         if (*lop == NULL)
416                 return -EOPNOTSUPP;
417
418         return 0;
419 }
420
421 static inline int llog_handle2ops(struct llog_handle *loghandle,
422                                   struct llog_operations **lop)
423 {
424         if (loghandle == NULL)
425                 return -EINVAL;
426
427         return llog_obd2ops(loghandle->lgh_ctxt, lop);
428 }
429
430 static inline int llog_data_len(int len)
431 {
432         return cfs_size_round(len);
433 }
434
435 static inline struct llog_ctxt *llog_ctxt_get(struct llog_ctxt *ctxt)
436 {
437         LASSERT(cfs_atomic_read(&ctxt->loc_refcount) > 0);
438         cfs_atomic_inc(&ctxt->loc_refcount);
439         CDEBUG(D_INFO, "GETting ctxt %p : new refcount %d\n", ctxt,
440                cfs_atomic_read(&ctxt->loc_refcount));
441         return ctxt;
442 }
443
444 static inline void llog_ctxt_put(struct llog_ctxt *ctxt)
445 {
446         if (ctxt == NULL)
447                 return;
448         LASSERT(cfs_atomic_read(&ctxt->loc_refcount) > 0);
449         LASSERT(cfs_atomic_read(&ctxt->loc_refcount) < 0x5a5a5a);
450         CDEBUG(D_INFO, "PUTting ctxt %p : new refcount %d\n", ctxt,
451                cfs_atomic_read(&ctxt->loc_refcount) - 1);
452         __llog_ctxt_put(ctxt);
453 }
454
455 static inline void llog_group_init(struct obd_llog_group *olg, int group)
456 {
457         cfs_waitq_init(&olg->olg_waitq);
458         cfs_spin_lock_init(&olg->olg_lock);
459         cfs_sema_init(&olg->olg_cat_processing, 1);
460         olg->olg_seq = group;
461 }
462
463 static inline void llog_group_set_export(struct obd_llog_group *olg,
464                                          struct obd_export *exp)
465 {
466         LASSERT(exp != NULL);
467
468         cfs_spin_lock(&olg->olg_lock);
469         if (olg->olg_exp != NULL && olg->olg_exp != exp)
470                 CWARN("%s: export for group %d is changed: 0x%p -> 0x%p\n",
471                       exp->exp_obd->obd_name, olg->olg_seq,
472                       olg->olg_exp, exp);
473         olg->olg_exp = exp;
474         cfs_spin_unlock(&olg->olg_lock);
475 }
476
477 static inline int llog_group_set_ctxt(struct obd_llog_group *olg,
478                                       struct llog_ctxt *ctxt, int index)
479 {
480         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
481
482         cfs_spin_lock(&olg->olg_lock);
483         if (olg->olg_ctxts[index] != NULL) {
484                 cfs_spin_unlock(&olg->olg_lock);
485                 return -EEXIST;
486         }
487         olg->olg_ctxts[index] = ctxt;
488         cfs_spin_unlock(&olg->olg_lock);
489         return 0;
490 }
491
492 static inline struct llog_ctxt *llog_group_get_ctxt(struct obd_llog_group *olg,
493                                                     int index)
494 {
495         struct llog_ctxt *ctxt;
496
497         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
498
499         cfs_spin_lock(&olg->olg_lock);
500         if (olg->olg_ctxts[index] == NULL) {
501                 ctxt = NULL;
502         } else {
503                 ctxt = llog_ctxt_get(olg->olg_ctxts[index]);
504         }
505         cfs_spin_unlock(&olg->olg_lock);
506         return ctxt;
507 }
508
509 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
510                                                  int index)
511 {
512         return llog_group_get_ctxt(&obd->obd_olg, index);
513 }
514
515 static inline int llog_group_ctxt_null(struct obd_llog_group *olg, int index)
516 {
517         return (olg->olg_ctxts[index] == NULL);
518 }
519
520 static inline int llog_ctxt_null(struct obd_device *obd, int index)
521 {
522         return (llog_group_ctxt_null(&obd->obd_olg, index));
523 }
524
525 static inline int llog_write_rec(struct llog_handle *handle,
526                                  struct llog_rec_hdr *rec,
527                                  struct llog_cookie *logcookies,
528                                  int numcookies, void *buf, int idx)
529 {
530         struct llog_operations *lop;
531         int raised, rc, buflen;
532         ENTRY;
533
534         rc = llog_handle2ops(handle, &lop);
535         if (rc)
536                 RETURN(rc);
537         LASSERT(lop);
538         if (lop->lop_write_rec == NULL)
539                 RETURN(-EOPNOTSUPP);
540
541         /* FIXME:  Why doesn't caller just set the right lrh_len itself? */
542         if (buf)
543                 buflen = rec->lrh_len + sizeof(struct llog_rec_hdr)
544                                 + sizeof(struct llog_rec_tail);
545         else
546                 buflen = rec->lrh_len;
547         LASSERT(cfs_size_round(buflen) == buflen);
548
549         raised = cfs_cap_raised(CFS_CAP_SYS_RESOURCE);
550         if (!raised)
551                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
552         rc = lop->lop_write_rec(handle, rec, logcookies, numcookies, buf, idx);
553         if (!raised)
554                 cfs_cap_lower(CFS_CAP_SYS_RESOURCE);
555         RETURN(rc);
556 }
557
558 static inline int llog_read_header(struct llog_handle *handle)
559 {
560         struct llog_operations *lop;
561         int rc;
562         ENTRY;
563
564         rc = llog_handle2ops(handle, &lop);
565         if (rc)
566                 RETURN(rc);
567         if (lop->lop_read_header == NULL)
568                 RETURN(-EOPNOTSUPP);
569
570         rc = lop->lop_read_header(handle);
571         RETURN(rc);
572 }
573
574 static inline int llog_destroy(struct llog_handle *handle)
575 {
576         struct llog_operations *lop;
577         int rc;
578         ENTRY;
579
580         rc = llog_handle2ops(handle, &lop);
581         if (rc)
582                 RETURN(rc);
583         if (lop->lop_destroy == NULL)
584                 RETURN(-EOPNOTSUPP);
585
586         rc = lop->lop_destroy(handle);
587         RETURN(rc);
588 }
589
590 #if 0
591 static inline int llog_cancel(struct obd_export *exp,
592                               struct lov_stripe_md *lsm, int count,
593                               struct llog_cookie *cookies, int flags)
594 {
595         struct llog_operations *lop;
596         int rc;
597         ENTRY;
598
599         rc = llog_handle2ops(loghandle, &lop);
600         if (rc)
601                 RETURN(rc);
602         if (lop->lop_cancel == NULL)
603                 RETURN(-EOPNOTSUPP);
604
605         rc = lop->lop_cancel(exp, lsm, count, cookies, flags);
606         RETURN(rc);
607 }
608 #endif
609
610 static inline int llog_next_block(struct llog_handle *loghandle, int *cur_idx,
611                                   int next_idx, __u64 *cur_offset, void *buf,
612                                   int len)
613 {
614         struct llog_operations *lop;
615         int rc;
616         ENTRY;
617
618         rc = llog_handle2ops(loghandle, &lop);
619         if (rc)
620                 RETURN(rc);
621         if (lop->lop_next_block == NULL)
622                 RETURN(-EOPNOTSUPP);
623
624         rc = lop->lop_next_block(loghandle, cur_idx, next_idx, cur_offset, buf,
625                                  len);
626         RETURN(rc);
627 }
628
629 static inline int llog_prev_block(struct llog_handle *loghandle,
630                                   int prev_idx, void *buf, int len)
631 {
632         struct llog_operations *lop;
633         int rc;
634         ENTRY;
635
636         rc = llog_handle2ops(loghandle, &lop);
637         if (rc)
638                 RETURN(rc);
639         if (lop->lop_prev_block == NULL)
640                 RETURN(-EOPNOTSUPP);
641
642         rc = lop->lop_prev_block(loghandle, prev_idx, buf, len);
643         RETURN(rc);
644 }
645
646 static inline int llog_create(struct llog_ctxt *ctxt, struct llog_handle **res,
647                               struct llog_logid *logid, char *name)
648 {
649         struct llog_operations *lop;
650         int raised, rc;
651         ENTRY;
652
653         rc = llog_obd2ops(ctxt, &lop);
654         if (rc)
655                 RETURN(rc);
656         if (lop->lop_create == NULL)
657                 RETURN(-EOPNOTSUPP);
658
659         raised = cfs_cap_raised(CFS_CAP_SYS_RESOURCE);
660         if (!raised)
661                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
662         rc = lop->lop_create(ctxt, res, logid, name);
663         if (!raised)
664                 cfs_cap_lower(CFS_CAP_SYS_RESOURCE);
665         RETURN(rc);
666 }
667
668 static inline int llog_connect(struct llog_ctxt *ctxt,
669                                struct llog_logid *logid, struct llog_gen *gen,
670                                struct obd_uuid *uuid)
671 {
672         struct llog_operations *lop;
673         int rc;
674         ENTRY;
675
676         rc = llog_obd2ops(ctxt, &lop);
677         if (rc)
678                 RETURN(rc);
679         if (lop->lop_connect == NULL)
680                 RETURN(-EOPNOTSUPP);
681
682         rc = lop->lop_connect(ctxt, logid, gen, uuid);
683         RETURN(rc);
684 }
685
686 int lustre_process_log(struct super_block *sb, char *logname,
687                        struct config_llog_instance *cfg);
688 int lustre_end_log(struct super_block *sb, char *logname,
689                    struct config_llog_instance *cfg);
690
691 /** @} log */
692
693 #endif