Whamcloud - gitweb
LU-334 llite: Add LPROC_LL_OSC_{READ,WRITE}.
[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         cfs_atomic_inc(&lcm->lcm_refcount);
333         return lcm;
334 }
335
336 static inline void
337 lcm_put(struct llog_commit_master *lcm)
338 {
339         LASSERT_ATOMIC_POS(&lcm->lcm_refcount);
340         if (cfs_atomic_dec_and_test(&lcm->lcm_refcount))
341                 OBD_FREE_PTR(lcm);
342 }
343
344 struct llog_canceld_ctxt {
345         /**
346          * Llog context this llcd is attached to. Used for accessing
347          * ->loc_import and others in process of canceling cookies
348          * gathered in this llcd.
349          */
350         struct llog_ctxt          *llcd_ctxt;
351         /**
352          * Cancel thread control stucture pointer. Used for accessing
353          * it to see if should stop processing and other needs.
354          */
355         struct llog_commit_master *llcd_lcm;
356         /**
357          * Maximal llcd size. Used in calculations on how much of room
358          * left in llcd to cookie comming cookies.
359          */
360         int                        llcd_size;
361         /**
362          * Link to lcm llcds list.
363          */
364         cfs_list_t                 llcd_list;
365         /**
366          * Current llcd size while gathering cookies. This should not be
367          * more than ->llcd_size. Used for determining if we need to
368          * send this llcd (if full) and allocate new one. This is also
369          * used for copying new cookie at the end of buffer.
370          */
371         int                        llcd_cookiebytes;
372         /**
373          * Pointer to the start of cookies buffer.
374          */
375         struct llog_cookie         llcd_cookies[0];
376 };
377
378 /* ptlrpc/recov_thread.c */
379 extern struct llog_commit_master *llog_recov_thread_init(char *name);
380 extern void llog_recov_thread_fini(struct llog_commit_master *lcm,
381                                    int force);
382 extern int llog_recov_thread_start(struct llog_commit_master *lcm);
383 extern void llog_recov_thread_stop(struct llog_commit_master *lcm,
384                                     int force);
385
386 static inline void llog_gen_init(struct llog_ctxt *ctxt)
387 {
388         struct obd_device *obd = ctxt->loc_exp->exp_obd;
389
390         LASSERTF(obd->u.obt.obt_magic == OBT_MAGIC,
391                  "%s: wrong obt magic %#x\n",
392                  obd->obd_name, obd->u.obt.obt_magic);
393         ctxt->loc_gen.mnt_cnt = obd->u.obt.obt_mount_count;
394         ctxt->loc_gen.conn_cnt++;
395 }
396
397 static inline int llog_gen_lt(struct llog_gen a, struct llog_gen b)
398 {
399         if (a.mnt_cnt < b.mnt_cnt)
400                 return 1;
401         if (a.mnt_cnt > b.mnt_cnt)
402                 return 0;
403         return(a.conn_cnt < b.conn_cnt ? 1 : 0);
404 }
405
406 #define LLOG_PROC_BREAK 0x0001
407 #define LLOG_DEL_RECORD 0x0002
408
409 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
410                                struct llog_operations **lop)
411 {
412         if (ctxt == NULL)
413                 return -ENOTCONN;
414
415         *lop = ctxt->loc_logops;
416         if (*lop == NULL)
417                 return -EOPNOTSUPP;
418
419         return 0;
420 }
421
422 static inline int llog_handle2ops(struct llog_handle *loghandle,
423                                   struct llog_operations **lop)
424 {
425         if (loghandle == NULL)
426                 return -EINVAL;
427
428         return llog_obd2ops(loghandle->lgh_ctxt, lop);
429 }
430
431 static inline int llog_data_len(int len)
432 {
433         return cfs_size_round(len);
434 }
435
436 static inline struct llog_ctxt *llog_ctxt_get(struct llog_ctxt *ctxt)
437 {
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_ATOMIC_GT_LT(&ctxt->loc_refcount, 0, 0x5a5a5a);
449         CDEBUG(D_INFO, "PUTting ctxt %p : new refcount %d\n", ctxt,
450                cfs_atomic_read(&ctxt->loc_refcount) - 1);
451         __llog_ctxt_put(ctxt);
452 }
453
454 static inline void llog_group_init(struct obd_llog_group *olg, int group)
455 {
456         cfs_waitq_init(&olg->olg_waitq);
457         cfs_spin_lock_init(&olg->olg_lock);
458         cfs_sema_init(&olg->olg_cat_processing, 1);
459         olg->olg_seq = group;
460 }
461
462 static inline void llog_group_set_export(struct obd_llog_group *olg,
463                                          struct obd_export *exp)
464 {
465         LASSERT(exp != NULL);
466
467         cfs_spin_lock(&olg->olg_lock);
468         if (olg->olg_exp != NULL && olg->olg_exp != exp)
469                 CWARN("%s: export for group %d is changed: 0x%p -> 0x%p\n",
470                       exp->exp_obd->obd_name, olg->olg_seq,
471                       olg->olg_exp, exp);
472         olg->olg_exp = exp;
473         cfs_spin_unlock(&olg->olg_lock);
474 }
475
476 static inline int llog_group_set_ctxt(struct obd_llog_group *olg,
477                                       struct llog_ctxt *ctxt, int index)
478 {
479         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
480
481         cfs_spin_lock(&olg->olg_lock);
482         if (olg->olg_ctxts[index] != NULL) {
483                 cfs_spin_unlock(&olg->olg_lock);
484                 return -EEXIST;
485         }
486         olg->olg_ctxts[index] = ctxt;
487         cfs_spin_unlock(&olg->olg_lock);
488         return 0;
489 }
490
491 static inline struct llog_ctxt *llog_group_get_ctxt(struct obd_llog_group *olg,
492                                                     int index)
493 {
494         struct llog_ctxt *ctxt;
495
496         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
497
498         cfs_spin_lock(&olg->olg_lock);
499         if (olg->olg_ctxts[index] == NULL) {
500                 ctxt = NULL;
501         } else {
502                 ctxt = llog_ctxt_get(olg->olg_ctxts[index]);
503         }
504         cfs_spin_unlock(&olg->olg_lock);
505         return ctxt;
506 }
507
508 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
509                                                  int index)
510 {
511         return llog_group_get_ctxt(&obd->obd_olg, index);
512 }
513
514 static inline int llog_group_ctxt_null(struct obd_llog_group *olg, int index)
515 {
516         return (olg->olg_ctxts[index] == NULL);
517 }
518
519 static inline int llog_ctxt_null(struct obd_device *obd, int index)
520 {
521         return (llog_group_ctxt_null(&obd->obd_olg, index));
522 }
523
524 static inline int llog_write_rec(struct llog_handle *handle,
525                                  struct llog_rec_hdr *rec,
526                                  struct llog_cookie *logcookies,
527                                  int numcookies, void *buf, int idx)
528 {
529         struct llog_operations *lop;
530         int raised, rc, buflen;
531         ENTRY;
532
533         rc = llog_handle2ops(handle, &lop);
534         if (rc)
535                 RETURN(rc);
536         LASSERT(lop);
537         if (lop->lop_write_rec == NULL)
538                 RETURN(-EOPNOTSUPP);
539
540         /* FIXME:  Why doesn't caller just set the right lrh_len itself? */
541         if (buf)
542                 buflen = rec->lrh_len + sizeof(struct llog_rec_hdr)
543                                 + sizeof(struct llog_rec_tail);
544         else
545                 buflen = rec->lrh_len;
546         LASSERT(cfs_size_round(buflen) == buflen);
547
548         raised = cfs_cap_raised(CFS_CAP_SYS_RESOURCE);
549         if (!raised)
550                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
551         rc = lop->lop_write_rec(handle, rec, logcookies, numcookies, buf, idx);
552         if (!raised)
553                 cfs_cap_lower(CFS_CAP_SYS_RESOURCE);
554         RETURN(rc);
555 }
556
557 static inline int llog_read_header(struct llog_handle *handle)
558 {
559         struct llog_operations *lop;
560         int rc;
561         ENTRY;
562
563         rc = llog_handle2ops(handle, &lop);
564         if (rc)
565                 RETURN(rc);
566         if (lop->lop_read_header == NULL)
567                 RETURN(-EOPNOTSUPP);
568
569         rc = lop->lop_read_header(handle);
570         RETURN(rc);
571 }
572
573 static inline int llog_destroy(struct llog_handle *handle)
574 {
575         struct llog_operations *lop;
576         int rc;
577         ENTRY;
578
579         rc = llog_handle2ops(handle, &lop);
580         if (rc)
581                 RETURN(rc);
582         if (lop->lop_destroy == NULL)
583                 RETURN(-EOPNOTSUPP);
584
585         rc = lop->lop_destroy(handle);
586         RETURN(rc);
587 }
588
589 #if 0
590 static inline int llog_cancel(struct obd_export *exp,
591                               struct lov_stripe_md *lsm, int count,
592                               struct llog_cookie *cookies, int flags)
593 {
594         struct llog_operations *lop;
595         int rc;
596         ENTRY;
597
598         rc = llog_handle2ops(loghandle, &lop);
599         if (rc)
600                 RETURN(rc);
601         if (lop->lop_cancel == NULL)
602                 RETURN(-EOPNOTSUPP);
603
604         rc = lop->lop_cancel(exp, lsm, count, cookies, flags);
605         RETURN(rc);
606 }
607 #endif
608
609 static inline int llog_next_block(struct llog_handle *loghandle, int *cur_idx,
610                                   int next_idx, __u64 *cur_offset, void *buf,
611                                   int len)
612 {
613         struct llog_operations *lop;
614         int rc;
615         ENTRY;
616
617         rc = llog_handle2ops(loghandle, &lop);
618         if (rc)
619                 RETURN(rc);
620         if (lop->lop_next_block == NULL)
621                 RETURN(-EOPNOTSUPP);
622
623         rc = lop->lop_next_block(loghandle, cur_idx, next_idx, cur_offset, buf,
624                                  len);
625         RETURN(rc);
626 }
627
628 static inline int llog_prev_block(struct llog_handle *loghandle,
629                                   int prev_idx, void *buf, int len)
630 {
631         struct llog_operations *lop;
632         int rc;
633         ENTRY;
634
635         rc = llog_handle2ops(loghandle, &lop);
636         if (rc)
637                 RETURN(rc);
638         if (lop->lop_prev_block == NULL)
639                 RETURN(-EOPNOTSUPP);
640
641         rc = lop->lop_prev_block(loghandle, prev_idx, buf, len);
642         RETURN(rc);
643 }
644
645 static inline int llog_create(struct llog_ctxt *ctxt, struct llog_handle **res,
646                               struct llog_logid *logid, char *name)
647 {
648         struct llog_operations *lop;
649         int raised, rc;
650         ENTRY;
651
652         rc = llog_obd2ops(ctxt, &lop);
653         if (rc)
654                 RETURN(rc);
655         if (lop->lop_create == NULL)
656                 RETURN(-EOPNOTSUPP);
657
658         raised = cfs_cap_raised(CFS_CAP_SYS_RESOURCE);
659         if (!raised)
660                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
661         rc = lop->lop_create(ctxt, res, logid, name);
662         if (!raised)
663                 cfs_cap_lower(CFS_CAP_SYS_RESOURCE);
664         RETURN(rc);
665 }
666
667 static inline int llog_connect(struct llog_ctxt *ctxt,
668                                struct llog_logid *logid, struct llog_gen *gen,
669                                struct obd_uuid *uuid)
670 {
671         struct llog_operations *lop;
672         int rc;
673         ENTRY;
674
675         rc = llog_obd2ops(ctxt, &lop);
676         if (rc)
677                 RETURN(rc);
678         if (lop->lop_connect == NULL)
679                 RETURN(-EOPNOTSUPP);
680
681         rc = lop->lop_connect(ctxt, logid, gen, uuid);
682         RETURN(rc);
683 }
684
685 int lustre_process_log(struct super_block *sb, char *logname,
686                        struct config_llog_instance *cfg);
687 int lustre_end_log(struct super_block *sb, char *logname,
688                    struct config_llog_instance *cfg);
689
690 /** @} log */
691
692 #endif