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