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