Whamcloud - gitweb
66ebc179b5ea5febe7f3678d71ca3bc4457de969
[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
129 struct llog_process_cat_data {
130         /**
131          * Temporary stored first_idx while scanning log.
132          */
133         int                  lpcd_first_idx;
134         /**
135          * Temporary stored last_idx while scanning log.
136          */
137         int                  lpcd_last_idx;
138 };
139
140 struct llog_process_cat_args {
141         /**
142          * Llog context used in recovery thread on OST (recov_thread.c)
143          */
144         struct llog_ctxt    *lpca_ctxt;
145         /**
146          * Llog callback used in recovery thread on OST (recov_thread.c)
147          */
148         void                *lpca_cb;
149         /**
150          * Data pointer for llog callback.
151          */
152         void                *lpca_arg;
153 };
154
155 int llog_cat_put(struct llog_handle *cathandle);
156 int llog_cat_add_rec(struct llog_handle *cathandle, struct llog_rec_hdr *rec,
157                      struct llog_cookie *reccookie, void *buf);
158 int llog_cat_cancel_records(struct llog_handle *cathandle, int count,
159                             struct llog_cookie *cookies);
160 int llog_cat_process(struct llog_handle *cat_llh, llog_cb_t cb, void *data);
161 int llog_cat_process_thread(void *data);
162 int llog_cat_reverse_process(struct llog_handle *cat_llh, llog_cb_t cb, void *data);
163 int llog_cat_set_first_idx(struct llog_handle *cathandle, int index);
164
165 /* llog_obd.c */
166 int llog_setup(struct obd_device *obd, struct obd_llog_group *olg, int index,
167                struct obd_device *disk_obd, int count,  struct llog_logid *logid,
168                struct llog_operations *op);
169 int __llog_ctxt_put(struct llog_ctxt *ctxt);
170 int llog_cleanup(struct llog_ctxt *);
171 int llog_sync(struct llog_ctxt *ctxt, struct obd_export *exp);
172 int llog_add(struct llog_ctxt *ctxt, struct llog_rec_hdr *rec,
173              struct lov_stripe_md *lsm, struct llog_cookie *logcookies,
174              int numcookies);
175 int llog_cancel(struct llog_ctxt *, struct lov_stripe_md *lsm,
176                 int count, struct llog_cookie *cookies, int flags);
177
178 int llog_obd_origin_setup(struct obd_device *obd, struct obd_llog_group *olg,
179                           int index, struct obd_device *disk_obd, int count,
180                           struct llog_logid *logid);
181 int llog_obd_origin_cleanup(struct llog_ctxt *ctxt);
182 int llog_obd_origin_add(struct llog_ctxt *ctxt,
183                         struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
184                         struct llog_cookie *logcookies, int numcookies);
185
186 int llog_cat_initialize(struct obd_device *obd, struct obd_llog_group *olg,
187                         int count, struct obd_uuid *uuid);
188 int obd_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
189                   struct obd_device *disk_obd, int count,
190                   struct llog_catid *logid, struct obd_uuid *uuid);
191
192 int obd_llog_finish(struct obd_device *obd, int count);
193
194 /* llog_ioctl.c */
195 int llog_ioctl(struct llog_ctxt *ctxt, int cmd, struct obd_ioctl_data *data);
196 int llog_catalog_list(struct obd_device *obd, int count,
197                       struct obd_ioctl_data *data);
198
199 /* llog_net.c */
200 int llog_initiator_connect(struct llog_ctxt *ctxt);
201 int llog_receptor_accept(struct llog_ctxt *ctxt, struct obd_import *imp);
202 int llog_origin_connect(struct llog_ctxt *ctxt, int count,
203                         struct llog_logid *logid, struct llog_gen *gen,
204                         struct obd_uuid *uuid);
205 int llog_handle_connect(struct ptlrpc_request *req);
206
207 /* recov_thread.c */
208 int llog_obd_repl_cancel(struct llog_ctxt *ctxt,
209                          struct lov_stripe_md *lsm, int count,
210                          struct llog_cookie *cookies, int flags);
211 int llog_obd_repl_sync(struct llog_ctxt *ctxt, struct obd_export *exp);
212 int llog_obd_repl_connect(struct llog_ctxt *ctxt, int count,
213                           struct llog_logid *logid, struct llog_gen *gen,
214                           struct obd_uuid *uuid);
215
216 struct llog_operations {
217         int (*lop_write_rec)(struct llog_handle *loghandle,
218                              struct llog_rec_hdr *rec,
219                              struct llog_cookie *logcookies, int numcookies,
220                              void *, int idx);
221         int (*lop_destroy)(struct llog_handle *handle);
222         int (*lop_next_block)(struct llog_handle *h, int *curr_idx,
223                               int next_idx, __u64 *offset, void *buf, int len);
224         int (*lop_prev_block)(struct llog_handle *h,
225                               int prev_idx, void *buf, int len);
226         int (*lop_create)(struct llog_ctxt *ctxt, struct llog_handle **,
227                           struct llog_logid *logid, char *name);
228         int (*lop_close)(struct llog_handle *handle);
229         int (*lop_read_header)(struct llog_handle *handle);
230
231         int (*lop_setup)(struct obd_device *obd, struct obd_llog_group *olg, 
232                          int ctxt_idx, struct obd_device *disk_obd, int count,
233                          struct llog_logid *logid);
234         int (*lop_sync)(struct llog_ctxt *ctxt, struct obd_export *exp);
235         int (*lop_cleanup)(struct llog_ctxt *ctxt);
236         int (*lop_add)(struct llog_ctxt *ctxt, struct llog_rec_hdr *rec,
237                        struct lov_stripe_md *lsm,
238                        struct llog_cookie *logcookies, int numcookies);
239         int (*lop_cancel)(struct llog_ctxt *ctxt, struct lov_stripe_md *lsm,
240                           int count, struct llog_cookie *cookies, int flags);
241         int (*lop_connect)(struct llog_ctxt *ctxt, int count,
242                            struct llog_logid *logid, struct llog_gen *gen,
243                            struct obd_uuid *uuid);
244         /* XXX add 2 more: commit callbacks and llog recovery functions */
245 };
246
247 /* llog_lvfs.c */
248 extern struct llog_operations llog_lvfs_ops;
249 int llog_get_cat_list(struct obd_device *obd, struct obd_device *disk_obd,
250                       char *name, int count, struct llog_catid *idarray);
251
252 struct llog_ctxt {
253         int                      loc_idx; /* my index the obd array of ctxt's */
254         struct llog_gen          loc_gen;
255         struct obd_device       *loc_obd; /* points back to the containing obd*/
256         struct obd_llog_group   *loc_olg; /* group containing that ctxt */
257         struct obd_export       *loc_exp; /* parent "disk" export (e.g. MDS) */
258         struct obd_import       *loc_imp; /* to use in RPC's: can be backward
259                                              pointing import */
260         struct llog_operations  *loc_logops;
261         struct llog_handle      *loc_handle;
262         struct llog_commit_master *loc_lcm;
263         struct llog_canceld_ctxt *loc_llcd;
264         struct semaphore         loc_sem; /* protects loc_llcd and loc_imp */
265         atomic_t                 loc_refcount;
266         void                    *llog_proc_cb;
267 };
268
269 #define LCM_NAME_SIZE 64
270
271 struct llog_commit_master {
272         /**
273          * Thread control flags (start, stop, etc.)
274          */
275         long                       lcm_flags;
276         /**
277          * Number of llcds onthis lcm.
278          */
279         atomic_t                   lcm_count;
280         /**
281          * Ptlrpc requests set. All cancel rpcs go via this request set.
282          */
283         struct ptlrpc_request_set *lcm_set;
284         /**
285          * Thread control structure. Used for control commit thread.
286          */
287         struct ptlrpcd_ctl         lcm_pc;
288         /**
289          * Busy resources waitq
290          */
291         cfs_waitq_t                lcm_waitq;
292         /**
293          * Commit thread name buffer. Only used for thread start.
294          */
295         char                       lcm_name[LCM_NAME_SIZE];
296 };
297
298 struct llog_canceld_ctxt {
299         /**
300          * Llog context this llcd is attached to. Used for accessing
301          * ->loc_import and others in process of canceling cookies
302          * gathered in this llcd.
303          */
304         struct llog_ctxt          *llcd_ctxt;
305         /**
306          * Cancel thread control stucture pointer. Used for accessing
307          * it to see if should stop processing and other needs.
308          */
309         struct llog_commit_master *llcd_lcm;
310         /**
311          * Maximal llcd size. Used in calculations on how much of room
312          * left in llcd to cookie comming cookies.
313          */
314         int                        llcd_size;
315         /**
316          * Current llcd size while gathering cookies. This should not be
317          * more than ->llcd_size. Used for determining if we need to
318          * send this llcd (if full) and allocate new one. This is also
319          * used for copying new cookie at the end of buffer.
320          */
321         int                        llcd_cookiebytes;
322         /**
323          * Pointer to the start of cookies buffer.
324          */
325         struct llog_cookie         llcd_cookies[0];
326 };
327
328 /* ptlrpc/recov_thread.c */
329 extern struct llog_commit_master *llog_recov_thread_init(char *name);
330 extern void llog_recov_thread_fini(struct llog_commit_master *lcm, 
331                                    int force);
332 extern int llog_recov_thread_start(struct llog_commit_master *lcm);
333 extern void llog_recov_thread_stop(struct llog_commit_master *lcm, 
334                                     int force);
335
336 #ifndef __KERNEL__
337
338 #define cap_raise(c, flag) do {} while(0)
339
340 #define CAP_SYS_RESOURCE 24
341
342 #endif   /* !__KERNEL__ */
343
344 static inline void llog_gen_init(struct llog_ctxt *ctxt)
345 {
346         struct obd_device *obd = ctxt->loc_exp->exp_obd;
347
348         if (!strcmp(obd->obd_type->typ_name, LUSTRE_MDS_NAME))
349                 ctxt->loc_gen.mnt_cnt = obd->u.mds.mds_mount_count;
350         else if (!strstr(obd->obd_type->typ_name, LUSTRE_OST_NAME))
351                 ctxt->loc_gen.mnt_cnt = obd->u.filter.fo_mount_count;
352         else
353                 ctxt->loc_gen.mnt_cnt = 0;
354 }
355
356 static inline int llog_gen_lt(struct llog_gen a, struct llog_gen b)
357 {
358         if (a.mnt_cnt < b.mnt_cnt)
359                 return 1;
360         if (a.mnt_cnt > b.mnt_cnt)
361                 return 0;
362         return(a.conn_cnt < b.conn_cnt ? 1 : 0);
363 }
364
365 #define LLOG_GEN_INC(gen)  ((gen).conn_cnt ++)
366 #define LLOG_PROC_BREAK 0x0001
367 #define LLOG_DEL_RECORD 0x0002
368
369 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
370                                struct llog_operations **lop)
371 {
372         if (ctxt == NULL)
373                 return -ENOTCONN;
374
375         *lop = ctxt->loc_logops;
376         if (*lop == NULL)
377                 return -EOPNOTSUPP;
378
379         return 0;
380 }
381
382 static inline int llog_handle2ops(struct llog_handle *loghandle,
383                                   struct llog_operations **lop)
384 {
385         if (loghandle == NULL)
386                 return -EINVAL;
387
388         return llog_obd2ops(loghandle->lgh_ctxt, lop);
389 }
390
391 static inline int llog_data_len(int len)
392 {
393         return size_round(len);
394 }
395
396 static inline struct llog_ctxt *llog_ctxt_get(struct llog_ctxt *ctxt)
397 {
398         LASSERT(atomic_read(&ctxt->loc_refcount) > 0);
399         atomic_inc(&ctxt->loc_refcount);
400         CDEBUG(D_INFO, "GETting ctxt %p : new refcount %d\n", ctxt,
401                atomic_read(&ctxt->loc_refcount));
402         return ctxt;
403 }
404
405 static inline void llog_ctxt_put(struct llog_ctxt *ctxt)
406 {
407         if (ctxt == NULL)
408                 return;
409         LASSERT(atomic_read(&ctxt->loc_refcount) > 0);
410         LASSERT(atomic_read(&ctxt->loc_refcount) < 0x5a5a5a);
411         CDEBUG(D_INFO, "PUTting ctxt %p : new refcount %d\n", ctxt,
412                atomic_read(&ctxt->loc_refcount) - 1);
413         __llog_ctxt_put(ctxt);
414 }
415
416 static inline void llog_group_init(struct obd_llog_group *olg, int group)
417 {
418         cfs_waitq_init(&olg->olg_waitq);
419         spin_lock_init(&olg->olg_lock);
420         olg->olg_group = group;
421 }
422
423 static inline void llog_group_set_export(struct obd_llog_group *olg,
424                                          struct obd_export *exp)
425 {
426         LASSERT(exp != NULL);
427         
428         spin_lock(&olg->olg_lock);
429         if (olg->olg_exp != NULL && olg->olg_exp != exp)
430                 CWARN("%s: export for group %d is changed: 0x%p -> 0x%p\n",
431                       exp->exp_obd->obd_name, olg->olg_group,
432                       olg->olg_exp, exp);
433         olg->olg_exp = exp;
434         spin_unlock(&olg->olg_lock);
435 }
436
437 static inline int llog_group_set_ctxt(struct obd_llog_group *olg,
438                                       struct llog_ctxt *ctxt, int index)
439 {
440         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
441
442         spin_lock(&olg->olg_lock);  
443         if (olg->olg_ctxts[index] != NULL) {
444                 spin_unlock(&olg->olg_lock);
445                 return -EEXIST;
446         }
447         olg->olg_ctxts[index] = ctxt;
448         spin_unlock(&olg->olg_lock);
449         return 0;
450 }
451
452 static inline struct llog_ctxt *llog_group_get_ctxt(struct obd_llog_group *olg,
453                                                     int index)
454 {
455         struct llog_ctxt *ctxt;
456
457         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
458
459         spin_lock(&olg->olg_lock);  
460         if (olg->olg_ctxts[index] == NULL) {
461                 ctxt = NULL;
462         } else {
463                 ctxt = llog_ctxt_get(olg->olg_ctxts[index]);
464         }
465         spin_unlock(&olg->olg_lock);
466         return ctxt;
467 }
468
469 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
470                                                  int index)
471 {
472         return llog_group_get_ctxt(&obd->obd_olg, index);
473 }
474
475 static inline int llog_group_ctxt_null(struct obd_llog_group *olg, int index)
476 {
477         return (olg->olg_ctxts[index] == NULL);
478 }
479
480 static inline int llog_ctxt_null(struct obd_device *obd, int index)
481 {
482         return (llog_group_ctxt_null(&obd->obd_olg, index));
483 }
484
485 static inline int llog_write_rec(struct llog_handle *handle,
486                                  struct llog_rec_hdr *rec,
487                                  struct llog_cookie *logcookies,
488                                  int numcookies, void *buf, int idx)
489 {
490         struct llog_operations *lop;
491         __u32 cap;
492         int rc, buflen;
493         ENTRY;
494
495         rc = llog_handle2ops(handle, &lop);
496         if (rc)
497                 RETURN(rc);
498         LASSERT(lop);
499         if (lop->lop_write_rec == NULL)
500                 RETURN(-EOPNOTSUPP);
501
502         if (buf)
503                 buflen = rec->lrh_len + sizeof(struct llog_rec_hdr)
504                                 + sizeof(struct llog_rec_tail);
505         else
506                 buflen = rec->lrh_len;
507         LASSERT(size_round(buflen) == buflen);
508
509         cap = current->cap_effective;             
510         cap_raise(current->cap_effective, CAP_SYS_RESOURCE); 
511         rc = lop->lop_write_rec(handle, rec, logcookies, numcookies, buf, idx);
512         current->cap_effective = cap; 
513         RETURN(rc);
514 }
515
516 static inline int llog_read_header(struct llog_handle *handle)
517 {
518         struct llog_operations *lop;
519         int rc;
520         ENTRY;
521
522         rc = llog_handle2ops(handle, &lop);
523         if (rc)
524                 RETURN(rc);
525         if (lop->lop_read_header == NULL)
526                 RETURN(-EOPNOTSUPP);
527
528         rc = lop->lop_read_header(handle);
529         RETURN(rc);
530 }
531
532 static inline int llog_destroy(struct llog_handle *handle)
533 {
534         struct llog_operations *lop;
535         int rc;
536         ENTRY;
537
538         rc = llog_handle2ops(handle, &lop);
539         if (rc)
540                 RETURN(rc);
541         if (lop->lop_destroy == NULL)
542                 RETURN(-EOPNOTSUPP);
543
544         rc = lop->lop_destroy(handle);
545         RETURN(rc);
546 }
547
548 #if 0
549 static inline int llog_cancel(struct obd_export *exp,
550                               struct lov_stripe_md *lsm, int count,
551                               struct llog_cookie *cookies, int flags)
552 {
553         struct llog_operations *lop;
554         int rc;
555         ENTRY;
556
557         rc = llog_handle2ops(loghandle, &lop);
558         if (rc)
559                 RETURN(rc);
560         if (lop->lop_cancel == NULL)
561                 RETURN(-EOPNOTSUPP);
562
563         rc = lop->lop_cancel(exp, lsm, count, cookies, flags);
564         RETURN(rc);
565 }
566 #endif
567
568 static inline int llog_next_block(struct llog_handle *loghandle, int *cur_idx,
569                                   int next_idx, __u64 *cur_offset, void *buf,
570                                   int len)
571 {
572         struct llog_operations *lop;
573         int rc;
574         ENTRY;
575
576         rc = llog_handle2ops(loghandle, &lop);
577         if (rc)
578                 RETURN(rc);
579         if (lop->lop_next_block == NULL)
580                 RETURN(-EOPNOTSUPP);
581
582         rc = lop->lop_next_block(loghandle, cur_idx, next_idx, cur_offset, buf,
583                                  len);
584         RETURN(rc);
585 }
586
587 static inline int llog_prev_block(struct llog_handle *loghandle,
588                                   int prev_idx, void *buf, int len)
589 {
590         struct llog_operations *lop;
591         int rc;
592         ENTRY;
593
594         rc = llog_handle2ops(loghandle, &lop);
595         if (rc)
596                 RETURN(rc);
597         if (lop->lop_prev_block == NULL)
598                 RETURN(-EOPNOTSUPP);
599
600         rc = lop->lop_prev_block(loghandle, prev_idx, buf, len);
601         RETURN(rc);
602 }
603
604 static inline int llog_create(struct llog_ctxt *ctxt, struct llog_handle **res,
605                               struct llog_logid *logid, char *name)
606 {
607         struct llog_operations *lop;
608         __u32 cap;
609         int rc;
610         ENTRY;
611
612         rc = llog_obd2ops(ctxt, &lop);
613         if (rc)
614                 RETURN(rc);
615         if (lop->lop_create == NULL)
616                 RETURN(-EOPNOTSUPP);
617
618         cap = current->cap_effective;             
619         cap_raise(current->cap_effective, CAP_SYS_RESOURCE);
620         rc = lop->lop_create(ctxt, res, logid, name);
621         current->cap_effective = cap; 
622         RETURN(rc);
623 }
624
625 static inline int llog_connect(struct llog_ctxt *ctxt, int count,
626                                struct llog_logid *logid, struct llog_gen *gen,
627                                struct obd_uuid *uuid)
628 {
629         struct llog_operations *lop;
630         int rc;
631         ENTRY;
632
633         rc = llog_obd2ops(ctxt, &lop);
634         if (rc)
635                 RETURN(rc);
636         if (lop->lop_connect == NULL)
637                 RETURN(-EOPNOTSUPP);
638
639         rc = lop->lop_connect(ctxt, count, logid, gen, uuid);
640         RETURN(rc);
641 }
642
643 #endif