Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / lov / lov_obd.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  * Author: Phil Schwan <phil@clusterfs.com>
6  *         Peter Braam <braam@clusterfs.com>
7  *         Mike Shaver <shaver@clusterfs.com>
8  *
9  *   This file is part of Lustre, http://www.lustre.org.
10  *
11  *   Lustre is free software; you can redistribute it and/or
12  *   modify it under the terms of version 2 of the GNU General Public
13  *   License as published by the Free Software Foundation.
14  *
15  *   Lustre is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with Lustre; if not, write to the Free Software
22  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 #ifndef EXPORT_SYMTAB
26 # define EXPORT_SYMTAB
27 #endif
28 #define DEBUG_SUBSYSTEM S_LOV
29 #ifdef __KERNEL__
30 #include <linux/slab.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/slab.h>
34 #include <linux/pagemap.h>
35 #include <linux/seq_file.h>
36 #include <asm/div64.h>
37 #else
38 #include <liblustre.h>
39 #endif
40
41 #include <linux/obd_support.h>
42 #include <linux/lustre_lib.h>
43 #include <linux/lustre_net.h>
44 #include <linux/lustre_idl.h>
45 #include <linux/lustre_dlm.h>
46 #include <linux/lustre_mds.h>
47 #include <linux/obd_class.h>
48 #include <linux/obd_lov.h>
49 #include <linux/obd_ost.h>
50 #include <linux/lprocfs_status.h>
51 #include <linux/lustre_audit.h>
52 #include "lov_internal.h"
53
54 /* obd methods */
55 #define MAX_STRING_SIZE 128
56 static int lov_connect_obd(struct obd_device *obd, struct lov_tgt_desc *tgt,
57                            int activate, struct obd_connect_data *conn_data,
58                            unsigned long connect_flags)
59 {
60         struct obd_uuid lov_osc_uuid = { "LOV_OSC_UUID" };
61         struct obd_uuid *tgt_uuid = &tgt->uuid;
62
63 #ifdef __KERNEL__
64         struct proc_dir_entry *lov_proc_dir;
65 #endif
66         struct lov_obd *lov = &obd->u.lov;
67         struct lustre_handle conn = {0, };
68         struct obd_device *tgt_obd;
69         int rc;
70         ENTRY;
71
72         tgt_obd = class_find_client_obd(tgt_uuid, OBD_OSC_DEVICENAME,
73                                         &obd->obd_uuid);
74
75         if (!tgt_obd) {
76                 CERROR("Target %s not attached\n", tgt_uuid->uuid);
77                 RETURN(-EINVAL);
78         }
79
80         if (!tgt_obd->obd_set_up) {
81                 CERROR("Target %s not set up\n", tgt_uuid->uuid);
82                 RETURN(-EINVAL);
83         }
84
85         if (activate) {
86                 tgt_obd->obd_no_recov = 0;
87                 ptlrpc_activate_import(tgt_obd->u.cli.cl_import);
88         }
89
90         if (tgt_obd->u.cli.cl_import->imp_invalid) {
91                 CERROR("not connecting OSC %s; administratively "
92                        "disabled\n", tgt_uuid->uuid);
93                 rc = obd_register_observer(tgt_obd, obd);
94                 if (rc) {
95                         CERROR("Target %s register_observer error %d; "
96                                "will not be able to reactivate\n",
97                                tgt_uuid->uuid, rc);
98                 }
99                 RETURN(0);
100         }
101
102         rc = obd_connect(&conn, tgt_obd, &lov_osc_uuid, conn_data,
103                          connect_flags);
104         if (rc) {
105                 CERROR("Target %s connect error %d\n", tgt_uuid->uuid, rc);
106                 RETURN(rc);
107         }
108         tgt->ltd_exp = class_conn2export(&conn);
109
110         rc = obd_register_observer(tgt_obd, obd);
111         if (rc) {
112                 CERROR("Target %s register_observer error %d\n",
113                        tgt_uuid->uuid, rc);
114                 obd_disconnect(tgt->ltd_exp, 0);
115                 tgt->ltd_exp = NULL;
116                 RETURN(rc);
117         }
118
119         lov_tgt_set_flags(lov, tgt, LTD_ACTIVE);
120
121 #ifdef __KERNEL__
122         lov_proc_dir = lprocfs_srch(obd->obd_proc_entry, "target_obds");
123         if (lov_proc_dir) {
124                 struct obd_device *osc_obd = class_conn2obd(&conn);
125                 struct proc_dir_entry *osc_symlink;
126                 char name[MAX_STRING_SIZE + 1];
127
128                 LASSERT(osc_obd != NULL);
129                 LASSERT(osc_obd->obd_type != NULL);
130                 LASSERT(osc_obd->obd_type->typ_name != NULL);
131                 name[MAX_STRING_SIZE] = '\0';
132                 snprintf(name, MAX_STRING_SIZE, "../../../%s/%s",
133                          osc_obd->obd_type->typ_name,
134                          osc_obd->obd_name);
135                 osc_symlink = proc_symlink(osc_obd->obd_name, lov_proc_dir,
136                                            name);
137                 if (osc_symlink == NULL) {
138                         CERROR("could not register LOV target "
139                                "/proc/fs/lustre/%s/%s/target_obds/%s\n",
140                                obd->obd_type->typ_name, obd->obd_name,
141                                osc_obd->obd_name);
142                         lprocfs_remove(lov_proc_dir);
143                         lov_proc_dir = NULL;
144                 }
145         }
146 #endif
147
148         RETURN(0);
149 }
150
151 static int lov_connect(struct lustre_handle *conn, struct obd_device *obd,
152                        struct obd_uuid *cluuid, struct obd_connect_data *data,
153                        unsigned long flags)
154 {
155 #ifdef __KERNEL__
156         struct proc_dir_entry *lov_proc_dir;
157 #endif
158         struct lov_obd *lov = &obd->u.lov;
159         struct lov_tgt_desc *tgt;
160         struct obd_export *exp;
161         int rc, rc2, i;
162         ENTRY;
163
164         rc = class_connect(conn, obd, cluuid);
165         if (rc)
166                 RETURN(rc);
167
168         exp = class_conn2export(conn);
169
170         /* We don't want to actually do the underlying connections more than
171          * once, so keep track. */
172         lov->refcount++;
173         if (lov->refcount > 1) {
174                 class_export_put(exp);
175                 RETURN(0);
176         }
177
178 #ifdef __KERNEL__
179         lov_proc_dir = lprocfs_register("target_obds", obd->obd_proc_entry,
180                                         NULL, NULL);
181         if (IS_ERR(lov_proc_dir)) {
182                 CERROR("could not register /proc/fs/lustre/%s/%s/target_obds.",
183                        obd->obd_type->typ_name, obd->obd_name);
184                 lov_proc_dir = NULL;
185         }
186 #endif
187
188         /* connect_flags is the MDS number, save for use in lov_add_obd */
189         lov->lov_connect_flags = flags;
190         for (i = 0, tgt = lov->tgts; i < lov->desc.ld_tgt_count; i++, tgt++) {
191                 if (obd_uuid_empty(&tgt->uuid))
192                         continue;
193                 rc = lov_connect_obd(obd, tgt, 0, data, flags);
194                 if (rc)
195                         GOTO(out_disc, rc);
196         }
197
198         class_export_put(exp);
199         RETURN (0);
200
201  out_disc:
202 #ifdef __KERNEL__
203         if (lov_proc_dir)
204                 lprocfs_remove(lov_proc_dir);
205 #endif
206
207         while (i-- > 0) {
208                 struct obd_uuid uuid;
209                 --tgt;
210                 lov_tgt_clear_flags(lov, tgt, LTD_ACTIVE);
211
212                 /* save for CERROR below; (we know it's terminated) */
213                 uuid = tgt->uuid;
214                 rc2 = obd_disconnect(tgt->ltd_exp, 0);
215                 if (rc2)
216                         CERROR("error: LOV target %s disconnect on OST idx %d: "
217                                "rc = %d\n", uuid.uuid, i, rc2);
218         }
219         class_disconnect(exp, 0);
220         RETURN (rc);
221 }
222
223 static int lov_disconnect_obd(struct obd_device *obd, 
224                               struct lov_tgt_desc *tgt,
225                               unsigned long flags)
226 {
227 #ifdef __KERNEL__
228         struct proc_dir_entry *lov_proc_dir;
229 #endif
230         struct obd_device *osc_obd = class_exp2obd(tgt->ltd_exp);
231         struct lov_obd *lov = &obd->u.lov;
232         int rc;
233         ENTRY;
234
235 #ifdef __KERNEL__
236         lov_proc_dir = lprocfs_srch(obd->obd_proc_entry, "target_obds");
237         if (lov_proc_dir) {
238                 struct proc_dir_entry *osc_symlink;
239
240                 osc_symlink = lprocfs_srch(lov_proc_dir, osc_obd->obd_name);
241                 if (osc_symlink) {
242                         lprocfs_remove(osc_symlink);
243                 } else {
244                         CERROR("/proc/fs/lustre/%s/%s/target_obds/%s missing\n",
245                                obd->obd_type->typ_name, obd->obd_name,
246                                osc_obd->obd_name);
247                 }
248         }
249 #endif
250         if (obd->obd_no_recov) {
251                 /* Pass it on to our clients.
252                  * XXX This should be an argument to disconnect,
253                  * XXX not a back-door flag on the OBD.  Ah well.
254                  */
255                 if (osc_obd)
256                         osc_obd->obd_no_recov = 1;
257         }
258
259         /* XXX - shouldn't this be after the obd_disconnect() ? */
260         obd_register_observer(tgt->ltd_exp->exp_obd, NULL);
261
262         rc = obd_disconnect(tgt->ltd_exp, flags);
263         if (rc) {
264                 if (lov_tgt_active(lov, tgt, 0)) {
265                         lov_tgt_decref(lov, tgt);
266                         CERROR("Target %s disconnect error %d\n",
267                                tgt->uuid.uuid, rc);
268                 }
269         }
270
271         CDEBUG(D_CONFIG, "idx: %d flags: 0x%x active: %d\n",
272                tgt - lov->tgts, tgt->ltd_flags,
273                lov->desc.ld_active_tgt_count);
274
275         lov_tgt_clear_flags(lov, tgt, LTD_ACTIVE);
276         tgt->ltd_exp = NULL;
277         RETURN(0);
278 }
279
280 static int lov_disconnect(struct obd_export *exp, unsigned long flags)
281 {
282         struct obd_device *obd = class_exp2obd(exp);
283 #ifdef __KERNEL__
284         struct proc_dir_entry *lov_proc_dir;
285 #endif
286         struct lov_obd *lov = &obd->u.lov;
287         struct lov_tgt_desc *tgt;
288         int rc, i;
289         ENTRY;
290
291         if (!lov->tgts)
292                 goto out_local;
293
294         /* Only disconnect the underlying layers on the final disconnect. */
295         lov->refcount--;
296         if (lov->refcount != 0)
297                 goto out_local;
298
299         for (i = 0, tgt = lov->tgts; i < lov->desc.ld_tgt_count; i++, tgt++) {
300                 if (tgt->ltd_exp)
301                         lov_disconnect_obd(obd, tgt, flags);
302         }
303
304 #ifdef __KERNEL__
305         lov_proc_dir = lprocfs_srch(obd->obd_proc_entry, "target_obds");
306         if (lov_proc_dir) {
307                 lprocfs_remove(lov_proc_dir);
308         } else {
309                 CERROR("/proc/fs/lustre/%s/%s/target_obds missing.",
310                        obd->obd_type->typ_name, obd->obd_name);
311         }
312 #endif
313         
314  out_local:
315         rc = class_disconnect(exp, 0);
316         RETURN(rc);
317 }
318
319 /* Error codes:
320  *
321  *  -EINVAL  : UUID can't be found in the LOV's target list
322  *  -ENOTCONN: The UUID is found, but the target connection is bad (!)
323  *  -EBADF   : The UUID is found, but the OBD is the wrong type (!)
324  */
325 static int lov_set_osc_active(struct lov_obd *lov, struct obd_uuid *uuid,
326                               int activate)
327 {
328         struct lov_tgt_desc *tgt;
329         int i, rc = 0;
330         ENTRY;
331
332         CDEBUG(D_INFO, "Searching in lov %p for uuid %s (activate=%d)\n",
333                lov, uuid->uuid, activate);
334
335         lov_tgts_lock(lov);
336         for (i = 0, tgt = lov->tgts; i < lov->desc.ld_tgt_count; i++, tgt++) {
337                 if (tgt->ltd_exp == NULL)
338                         continue;
339
340                 CDEBUG(D_INFO, "lov idx %d is %s conn "LPX64"\n",
341                        i, tgt->uuid.uuid, tgt->ltd_exp->exp_handle.h_cookie);
342                 
343                 if (obd_uuid_equals(uuid, &tgt->uuid))
344                         break;
345         }
346
347         if (i == lov->desc.ld_tgt_count)
348                 GOTO(out, rc = -EINVAL);
349
350         if (activate) {
351                 if (tgt->ltd_flags & LTD_ACTIVE) {
352                         CDEBUG(D_CONFIG|D_INFO, "OSC %s already active!\n",
353                                uuid->uuid);
354                         GOTO(out, rc);
355                 }
356                 CDEBUG(D_INFO, "Marking OSC %s active\n", uuid->uuid);
357                 tgt->ltd_flags |= LTD_ACTIVE;
358                 lov->desc.ld_active_tgt_count++;
359         } else {
360                 if ((tgt->ltd_flags & LTD_ACTIVE) == 0) {
361                         CDEBUG(D_CONFIG|D_INFO, "OSC %s already inactive!\n",
362                                uuid->uuid);
363                         GOTO(out, rc);
364                 }
365                 CDEBUG(D_INFO, "Marking OSC %s inactive\n", uuid->uuid);
366                 tgt->ltd_flags &= ~LTD_ACTIVE;
367                 lov->desc.ld_active_tgt_count--;
368         }
369  
370         EXIT;
371  out:
372         lov_tgts_unlock(lov);
373         return rc;
374 }
375
376 static int lov_notify(struct obd_device *obd, struct obd_device *watched,
377                       int active, void *data)
378 {
379         struct obd_uuid *uuid;
380         int rc;
381         ENTRY;
382
383         if (strcmp(watched->obd_type->typ_name, OBD_OSC_DEVICENAME)) {
384                 CERROR("unexpected notification of %s %s!\n",
385                        watched->obd_type->typ_name,
386                        watched->obd_name);
387                 return -EINVAL;
388         }
389
390         uuid = &watched->u.cli.cl_import->imp_target_uuid;
391
392         /* Set OSC as active before notifying the observer, so the
393          * observer can use the OSC normally.  
394          */
395         rc = lov_set_osc_active(&obd->u.lov, uuid, active);
396         if (rc) {
397                 CERROR("%sactivation of %s failed: %d\n",
398                        active ? "" : "de", uuid->uuid, rc);
399                 RETURN(rc);
400         }
401
402         if (obd->obd_observer)
403                 /* Pass the notification up the chain. */
404                 rc = obd_notify(obd->obd_observer, watched, active, data);
405
406         RETURN(rc);
407 }
408
409 int lov_attach(struct obd_device *dev, obd_count len, void *data)
410 {
411         struct lprocfs_static_vars lvars;
412         int rc;
413
414         lprocfs_init_vars(lov, &lvars);
415         rc = lprocfs_obd_attach(dev, lvars.obd_vars);
416         if (rc == 0) {
417 #ifdef __KERNEL__
418                 struct proc_dir_entry *entry;
419
420                 entry = create_proc_entry("target_obd_status", 0444, 
421                                           dev->obd_proc_entry);
422                 if (entry == NULL) {
423                         rc = -ENOMEM;
424                 } else {
425                         entry->proc_fops = &lov_proc_target_fops;
426                         entry->data = dev;
427                 }
428 #endif
429         }
430         return rc;
431 }
432
433 int lov_detach(struct obd_device *dev)
434 {
435         return lprocfs_obd_detach(dev);
436 }
437
438 static int lov_setup(struct obd_device *obd, obd_count len, void *buf)
439 {
440         struct lov_obd *lov = &obd->u.lov;
441         struct lustre_cfg *lcfg = buf;
442         struct lov_desc *desc;
443         int count;
444         ENTRY;
445
446         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
447                 CERROR("LOV setup requires a descriptor\n");
448                 RETURN(-EINVAL);
449         }
450
451         desc = (struct lov_desc *)lustre_cfg_string(lcfg, 1);
452         if (sizeof(*desc) > LUSTRE_CFG_BUFLEN(lcfg, 1)) {
453                 CERROR("descriptor size wrong: %d > %d\n",
454                        (int)sizeof(*desc), LUSTRE_CFG_BUFLEN(lcfg, 1));
455                 RETURN(-EINVAL);
456         }
457  
458         /* Because of 64-bit divide/mod operations only work with a 32-bit
459          * divisor in a 32-bit kernel, we cannot support a stripe width
460          * of 4GB or larger on 32-bit CPUs.
461          */
462        
463         count = desc->ld_default_stripe_count;
464         if (count && (count * desc->ld_default_stripe_size) > ~0UL) {
465                 CERROR("LOV: stripe width "LPU64"x%u > %lu on 32-bit system\n",
466                        desc->ld_default_stripe_size, count, ~0UL);
467                 RETURN(-EINVAL);
468         }
469
470         lov->bufsize = sizeof(struct lov_tgt_desc) * LOV_MAX_TGT_COUNT;  
471         OBD_ALLOC(lov->tgts, lov->bufsize);
472         if (lov->tgts == NULL) {
473                 lov->bufsize = 0;
474                 CERROR("couldn't allocate %d bytes for target table.\n",
475                        lov->bufsize);
476                 RETURN(-EINVAL);
477         }
478
479         desc->ld_tgt_count = 0;
480         desc->ld_active_tgt_count = 0;
481         lov->desc = *desc;
482         spin_lock_init(&lov->lov_lock);
483         sema_init(&lov->lov_llog_sem, 1);
484         init_waitqueue_head(&lov->lov_tgt_waitq);
485
486         RETURN(0);
487 }
488
489 static int lov_cleanup(struct obd_device *obd, int flags)
490 {
491         struct lov_obd *lov = &obd->u.lov;
492
493         OBD_FREE(lov->tgts, lov->bufsize);
494         RETURN(0);
495 }
496
497 static int
498 lov_add_obd(struct obd_device *obd, struct obd_uuid *uuidp, int index, int gen)
499 {
500         struct lov_obd *lov = &obd->u.lov;
501         struct lov_tgt_desc *tgt;
502         int rc;
503         ENTRY;
504
505         CDEBUG(D_CONFIG, "uuid: %s idx: %d gen: %d\n",
506                uuidp->uuid, index, gen);
507
508         if ((index < 0) || (index >= LOV_MAX_TGT_COUNT)) {
509                 CERROR("request to add OBD %s at invalid index: %d\n",
510                        uuidp->uuid, index);
511                 RETURN(-EINVAL);
512         }
513
514         if (gen <= 0) {
515                 CERROR("request to add OBD %s with invalid generation: %d\n",
516                        uuidp->uuid, gen);
517                 RETURN(-EINVAL);
518         }
519
520         tgt = lov->tgts + index;
521
522         lov_tgts_lock(lov);
523
524         if (!obd_uuid_empty(&tgt->uuid)) {
525                 lov_tgts_unlock(lov);
526                 CERROR("OBD already assigned at LOV target index %d\n",
527                        index);
528                 RETURN(-EEXIST);
529         }
530
531         tgt->uuid = *uuidp;
532         /* XXX - add a sanity check on the generation number. */
533         tgt->ltd_gen = gen;
534         tgt->ltd_flags = 0;
535
536         if (index >= lov->desc.ld_tgt_count)
537                 lov->desc.ld_tgt_count = index + 1;
538
539         lov_tgts_unlock(lov);
540
541         CDEBUG(D_CONFIG, "idx: %d ltd_gen: %d ld_tgt_count: %d\n",
542                 index, tgt->ltd_gen, lov->desc.ld_tgt_count);
543
544         if (lov->refcount == 0)
545                 RETURN(0);
546
547         /* We don't need to lock the tgt entry here because the
548          * config events are single threaded. Therefore only the
549          * current thread can be changing the tgts tbl. */
550         if (tgt->ltd_exp) {
551                 struct obd_device *osc_obd;
552
553                 osc_obd = class_exp2obd(tgt->ltd_exp);
554                 if (osc_obd)
555                         osc_obd->obd_no_recov = 0;
556         }
557
558         rc = lov_connect_obd(obd, tgt, 0, NULL, lov->lov_connect_flags);
559         if (rc)
560                 GOTO(out, rc);
561
562         if (obd->obd_observer) {
563                 /* tell the mds_lov about the new target */
564                 rc = obd_notify(obd->obd_observer, tgt->ltd_exp->exp_obd, 1,
565                                 (void *)index);
566         }
567
568         GOTO(out, rc);
569  out:
570         if (rc && tgt->ltd_exp != NULL)
571                 lov_disconnect_obd(obd, tgt, 0);
572         return rc;
573 }
574
575 static int
576 lov_del_obd(struct obd_device *obd, struct obd_uuid *uuidp, int index, int gen)
577 {
578         struct lov_obd *lov = &obd->u.lov;
579         struct lov_tgt_desc *tgt;
580         struct l_wait_info lwi = { 0 };
581         int count = lov->desc.ld_tgt_count;
582         int rc = 0;
583         ENTRY;
584
585         CDEBUG(D_CONFIG, "uuid: %s idx: %d gen: %d\n",
586                uuidp->uuid, index, gen);
587
588         if (index >= count) {
589                 CERROR("LOV target index %d >= number of LOV OBDs %d.\n",
590                        index, count);
591                 RETURN(-EINVAL);
592         }
593
594         tgt = lov->tgts + index;
595
596         if (obd_uuid_empty(&tgt->uuid)) {
597                 CERROR("LOV target at index %d is not setup.\n", index);
598                 RETURN(-EINVAL);
599         }
600
601         if (!obd_uuid_equals(uuidp, &tgt->uuid)) {
602                 CERROR("LOV target UUID %s at index %d doesn't match %s.\n",
603                        tgt->uuid.uuid, index, uuidp->uuid);
604                 RETURN(-EINVAL);
605         }
606
607         lov_tgt_set_flags(lov, tgt, LTD_DEL_PENDING);
608
609         if (tgt->ltd_exp) {
610                 struct obd_device *osc_obd;
611
612                 rc = obd_cancel_unused(tgt->ltd_exp, NULL,
613                                        LDLM_FL_CONFIG_CHANGE, NULL);
614                 if (rc != 0)
615                         CWARN("obd_cancel_unused(osc): %d\n", rc);
616
617                 osc_obd = class_exp2obd(tgt->ltd_exp);
618                 if (osc_obd) {
619                         osc_obd->obd_no_recov = 1;
620                         rc = obd_llog_finish(osc_obd, &osc_obd->obd_llogs, 1);
621                         if (rc)
622                                 CERROR("osc_llog_finish error: %d\n", rc);
623                 }
624
625                 lov_disconnect_obd(obd, tgt, 0);
626         }
627
628         CDEBUG(D_CONFIG, "Sleeping until LOV target index %d UUID %s "
629                "is quiesced; ltd_refcount: %d ld_active_tgt_count: %d.\n",
630                index, uuidp->uuid, tgt->ltd_refcount,
631                lov->desc.ld_active_tgt_count);
632
633         /* XXX - should we set a timeout ? */
634         lwi = LWI_TIMEOUT_INTR(0, NULL, NULL, NULL);
635         rc = l_wait_event(lov->lov_tgt_waitq, (tgt->ltd_refcount == 0), &lwi);
636         if (rc) {
637                 lov_tgt_clear_flags(lov, tgt, LTD_DEL_PENDING);
638                 CERROR("LOV target delete UUID %s index %d aborted: %d.\n",
639                        uuidp->uuid, index, rc);
640                 RETURN(rc);
641         }
642
643         CDEBUG(D_CONFIG, "LOV target index %d UUID %s is quiesced; "
644                "ltd_refcount: %d ld_active_tgt_count: %d.\n",
645                index, uuidp->uuid, tgt->ltd_refcount,
646                lov->desc.ld_active_tgt_count);
647
648         /* XXX - right now there is a dependency on ld_tgt_count being the
649          * maximum tgt index for computing the mds_max_easize. So we can't
650          * shrink it. */
651
652         /* lt_gen = 0 will mean it will not match the gen of any valid loi */
653         memset(tgt, 0, sizeof(*tgt));
654         RETURN(rc);
655 }
656
657 static int lov_process_config(struct obd_device *obd, obd_count len, void *buf)
658 {
659         struct lustre_cfg *lcfg = buf;
660         struct obd_uuid obd_uuid;
661         int cmd;
662         int index;
663         int gen;
664         int rc = 0;
665         ENTRY;
666
667         switch(cmd = lcfg->lcfg_command) {
668         case LCFG_LOV_ADD_OBD:
669         case LCFG_LOV_DEL_OBD: {
670                 if (LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(obd_uuid.uuid))
671                         GOTO(out, rc = -EINVAL);
672
673                 obd_str2uuid(&obd_uuid, lustre_cfg_string(lcfg, 1));
674
675                 if (sscanf(lustre_cfg_buf(lcfg, 2), "%d", &index) != 1)
676                         GOTO(out, rc = -EINVAL);
677                 if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", &gen) != 1)
678                         GOTO(out, rc = -EINVAL);
679                 if (cmd == LCFG_LOV_ADD_OBD)
680                         rc = lov_add_obd(obd, &obd_uuid, index, gen);
681                 else
682                         rc = lov_del_obd(obd, &obd_uuid, index, gen);
683                 GOTO(out, rc);
684         }
685         default: {
686                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
687                 GOTO(out, rc = -EINVAL);
688
689         }
690         }
691 out:
692         RETURN(rc);
693 }
694
695 #ifndef log2
696 #define log2(n) ffz(~(n))
697 #endif
698
699 static int lov_clear_orphans(struct obd_export *export,
700                              struct obdo *src_oa,
701                              struct lov_stripe_md **ea,
702                              struct obd_trans_info *oti)
703 {
704         struct lov_obd *lov;
705         struct obdo *tmp_oa;
706         struct obd_uuid *ost_uuid = NULL;
707         struct lov_tgt_desc *tgt;
708         int rc = 0, i;
709         ENTRY;
710
711         LASSERT(src_oa->o_valid & OBD_MD_FLFLAGS &&
712                 src_oa->o_flags == OBD_FL_DELORPHAN);
713
714         lov = &export->exp_obd->u.lov;
715
716         tmp_oa = obdo_alloc();
717         if (tmp_oa == NULL)
718                 RETURN(-ENOMEM);
719
720         if (src_oa->o_valid & OBD_MD_FLINLINE) {
721                 ost_uuid = (struct obd_uuid *)src_oa->o_inline;
722                 CDEBUG(D_HA, "clearing orphans only for %s\n",
723                        ost_uuid->uuid);
724         }
725
726         for (i = 0, tgt = lov->tgts; i < lov->desc.ld_tgt_count; i++, tgt++) {
727                 struct lov_stripe_md obj_md;
728                 struct lov_stripe_md *obj_mdp = &obj_md;
729                 int active = 0;
730                 int err;
731
732                 /* if called for a specific target, we don't
733                    care if it is not active. */
734                 if (lov_tgt_active(lov, tgt, 0)) {
735                         active = 1;
736                 } else if (ost_uuid == NULL) {
737                         CDEBUG(D_HA, "lov idx %d inactive\n", i);
738                         continue;
739                 }
740
741                 if (ost_uuid && !obd_uuid_equals(ost_uuid, &tgt->uuid)) {
742                         if (active)
743                                 lov_tgt_decref(lov, tgt);
744                         continue;
745                 }
746
747                 /* 
748                  * setting up objid OSS objects should be destroyed starting
749                  * from it.
750                  */
751                 memcpy(tmp_oa, src_oa, sizeof(*tmp_oa));
752                 tmp_oa->o_valid |= OBD_MD_FLID;
753                 tmp_oa->o_id = oti->oti_objid[i];
754
755                 /* XXX: LOV STACKING: use real "obj_mdp" sub-data */
756                 err = obd_create(tgt->ltd_exp, tmp_oa, NULL, 0, &obj_mdp, oti);
757                 if (err)
758                         /* This export will be disabled until it is recovered,
759                            and then orphan recovery will be completed. */
760                         CERROR("error in orphan recovery on OST idx %d/%d: "
761                                "rc = %d\n", i, lov->desc.ld_tgt_count, err);
762
763                 if (active)
764                         lov_tgt_decref(lov, tgt);
765
766                 if (ost_uuid)
767                         break;
768         }
769
770         obdo_free(tmp_oa);
771         RETURN(rc);
772 }
773
774 /* the LOV expects oa->o_id to be set to the LOV object id */
775 static int
776 lov_create(struct obd_export *exp, struct obdo *src_oa,
777            void *acl, int acl_size, struct lov_stripe_md **ea,
778            struct obd_trans_info *oti)
779 {
780         struct lov_request_set *set = NULL;
781         struct list_head *pos;
782         struct lov_obd *lov;
783         int rc = 0;
784         ENTRY;
785
786         LASSERT(ea != NULL);
787         if (exp == NULL)
788                 RETURN(-EINVAL);
789
790         if ((src_oa->o_valid & OBD_MD_FLFLAGS) &&
791             src_oa->o_flags == OBD_FL_DELORPHAN) {
792                 rc = lov_clear_orphans(exp, src_oa, ea, oti);
793                 RETURN(rc);
794         }
795
796         LASSERT(oti->oti_flags & OBD_MODE_CROW);
797                 
798         /* main creation loop */
799         rc = lov_prep_create_set(exp, ea, src_oa, oti, &set);
800         if (rc)
801                 RETURN(rc);
802
803         lov = &exp->exp_obd->u.lov;
804
805         list_for_each (pos, &set->set_list) {
806                 struct lov_request *req = 
807                         list_entry(pos, struct lov_request, rq_link);
808
809                 /* XXX: LOV STACKING: use real "obj_mdp" sub-data */
810                 rc = obd_create(lov->tgts[req->rq_idx].ltd_exp,
811                                 req->rq_oa, NULL, 0, &req->rq_md, oti);
812                 lov_update_create_set(set, req, rc);
813         }
814         rc = lov_fini_create_set(set, ea);
815         RETURN(rc);
816 }
817
818 #define lsm_bad_magic(LSMP)                                     \
819 ({                                                              \
820         struct lov_stripe_md *_lsm__ = (LSMP);                  \
821         int _ret__ = 0;                                         \
822         if (!_lsm__) {                                          \
823                 CERROR("LOV requires striping ea\n");           \
824                 _ret__ = 1;                                     \
825         } else if (_lsm__->lsm_magic != LOV_MAGIC) {            \
826                 CERROR("LOV striping magic bad %#x != %#x\n",   \
827                        _lsm__->lsm_magic, LOV_MAGIC);           \
828                 _ret__ = 1;                                     \
829         }                                                       \
830         _ret__;                                                 \
831 })
832
833 static int lov_destroy(struct obd_export *exp, struct obdo *oa,
834                        struct lov_stripe_md *lsm, struct obd_trans_info *oti)
835 {
836         struct lov_request_set *set;
837         struct lov_request *req;
838         struct list_head *pos;
839         struct lov_obd *lov;
840         int rc = 0;
841         ENTRY;
842
843         if (lsm_bad_magic(lsm))
844                 RETURN(-EINVAL);
845
846         if (!exp || !exp->exp_obd)
847                 RETURN(-ENODEV);
848
849         lov = &exp->exp_obd->u.lov;
850         rc = lov_prep_destroy_set(exp, oa, lsm, oti, &set);
851         if (rc)
852                 RETURN(rc);
853
854         list_for_each (pos, &set->set_list) {
855                 int err;
856                 req = list_entry(pos, struct lov_request, rq_link);
857
858                 /* XXX update the cookie position */
859                 oti->oti_logcookies = set->set_cookies + req->rq_stripe;
860                 rc = obd_destroy(lov->tgts[req->rq_idx].ltd_exp, req->rq_oa,
861                                  NULL, oti);
862                 err = lov_update_common_set(set, req, rc);
863                 if (rc) {
864                         CERROR("error: destroying objid "LPX64" subobj "
865                                LPX64" on OST idx %d: rc = %d\n", 
866                                set->set_oa->o_id, req->rq_oa->o_id, 
867                                req->rq_idx, rc);
868                         if (!rc)
869                                 rc = err;
870                 }
871         }
872         lov_fini_destroy_set(set);
873         RETURN(rc);
874 }
875
876 static int lov_getattr(struct obd_export *exp, struct obdo *oa,
877                        struct lov_stripe_md *lsm)
878 {
879         struct lov_request_set *set;
880         struct lov_request *req;
881         struct list_head *pos;
882         struct lov_obd *lov;
883         int err = 0, rc = 0;
884         ENTRY;
885
886         if (lsm_bad_magic(lsm))
887                 RETURN(-EINVAL);
888
889         if (!exp || !exp->exp_obd)
890                 RETURN(-ENODEV);
891
892         lov = &exp->exp_obd->u.lov;
893         
894         rc = lov_prep_getattr_set(exp, oa, lsm, &set);
895         if (rc)
896                 RETURN(rc);
897
898         list_for_each (pos, &set->set_list) {
899                 req = list_entry(pos, struct lov_request, rq_link);
900                 
901                 CDEBUG(D_INFO, "objid "LPX64"[%d] has subobj "LPX64" at idx "
902                        "%u\n", oa->o_id, req->rq_stripe, req->rq_oa->o_id, 
903                        req->rq_idx);
904
905                 rc = obd_getattr(lov->tgts[req->rq_idx].ltd_exp, 
906                                  req->rq_oa, NULL);
907                 err = lov_update_common_set(set, req, rc);
908                 if (err) {
909                         CERROR("error: getattr objid "LPX64" subobj "
910                                LPX64" on OST idx %d: rc = %d\n",
911                                set->set_oa->o_id, req->rq_oa->o_id, 
912                                req->rq_idx, err);
913                         break;
914                 }
915         }
916         
917         rc = lov_fini_getattr_set(set);
918         if (err)
919                 rc = err;
920         RETURN(rc);
921 }
922
923 static int lov_getattr_interpret(struct ptlrpc_request_set *rqset, void *data,
924                                  int rc)
925 {
926         struct lov_request_set *lovset = (struct lov_request_set *)data;
927         ENTRY;
928
929         /* don't do attribute merge if this aysnc op failed */
930         if (rc) {
931                 lovset->set_completes = 0;
932                 lov_fini_getattr_set(lovset);
933         } else {
934                 rc = lov_fini_getattr_set(lovset);
935         }
936         RETURN (rc);
937 }
938
939 static int lov_getattr_async(struct obd_export *exp, struct obdo *oa,
940                               struct lov_stripe_md *lsm,
941                               struct ptlrpc_request_set *rqset)
942 {
943         struct lov_request_set *lovset;
944         struct lov_obd *lov;
945         struct list_head *pos;
946         struct lov_request *req;
947         int rc = 0;
948         ENTRY;
949
950         if (lsm_bad_magic(lsm))
951                 RETURN(-EINVAL);
952
953         if (!exp || !exp->exp_obd)
954                 RETURN(-ENODEV);
955
956         lov = &exp->exp_obd->u.lov;
957
958         rc = lov_prep_getattr_set(exp, oa, lsm, &lovset);
959         if (rc)
960                 RETURN(rc);
961
962         CDEBUG(D_INFO, "objid "LPX64": %ux%u byte stripes\n",
963                lsm->lsm_object_id, lsm->lsm_stripe_count, lsm->lsm_stripe_size);
964
965         list_for_each (pos, &lovset->set_list) {
966                 req = list_entry(pos, struct lov_request, rq_link);
967                 
968                 CDEBUG(D_INFO, "objid "LPX64"[%d] has subobj "LPX64" at idx "
969                        "%u\n", oa->o_id, req->rq_stripe, req->rq_oa->o_id, 
970                        req->rq_idx);
971                 rc = obd_getattr_async(lov->tgts[req->rq_idx].ltd_exp,
972                                        req->rq_oa, NULL, rqset);
973                 if (rc) {
974                         CERROR("error: getattr objid "LPX64" subobj "
975                                LPX64" on OST idx %d: rc = %d\n",
976                                lovset->set_oa->o_id, req->rq_oa->o_id, 
977                                req->rq_idx, rc);
978                         GOTO(out, rc);
979                 }
980                 lov_update_common_set(lovset, req, rc);
981         }
982         
983         LASSERT(rc == 0);
984         LASSERT (rqset->set_interpret == NULL);
985         rqset->set_interpret = lov_getattr_interpret;
986         rqset->set_arg = (void *)lovset;
987         RETURN(rc);
988 out:
989         LASSERT(rc);
990         lov_fini_getattr_set(lovset);
991         RETURN(rc);
992 }
993
994 static int lov_setattr(struct obd_export *exp, struct obdo *src_oa,
995                        struct lov_stripe_md *lsm, struct obd_trans_info *oti,
996                        struct lustre_capa *capa)
997 {
998         struct lov_request_set *set;
999         struct lov_obd *lov;
1000         struct list_head *pos;
1001         struct lov_request *req;
1002         int err = 0, rc = 0;
1003         ENTRY;
1004
1005         if (lsm_bad_magic(lsm))
1006                 RETURN(-EINVAL);
1007
1008         if (!exp || !exp->exp_obd)
1009                 RETURN(-ENODEV);
1010
1011         LASSERT(!(src_oa->o_valid & ~(OBD_MD_FLID|OBD_MD_FLTYPE | OBD_MD_FLMODE|
1012                                       OBD_MD_FLATIME | OBD_MD_FLMTIME |
1013                                       OBD_MD_FLCTIME | OBD_MD_FLFLAGS |
1014                                       OBD_MD_FLSIZE | OBD_MD_FLGROUP |
1015                                       OBD_MD_FLUID | OBD_MD_FLGID |
1016                                       OBD_MD_FLINLINE | OBD_MD_FLIFID)));
1017
1018         LASSERT(!(src_oa->o_valid & OBD_MD_FLGROUP) || src_oa->o_gr > 0);
1019
1020         lov = &exp->exp_obd->u.lov;
1021         rc = lov_prep_setattr_set(exp, src_oa, lsm, NULL, &set);
1022         if (rc)
1023                 RETURN(rc);
1024
1025         list_for_each (pos, &set->set_list) {
1026                 req = list_entry(pos, struct lov_request, rq_link);
1027                 
1028                 rc = obd_setattr(lov->tgts[req->rq_idx].ltd_exp, req->rq_oa,
1029                                  NULL, NULL, NULL);
1030                 err = lov_update_common_set(set, req, rc);
1031                 if (err) {
1032                         CERROR("error: setattr objid "LPX64" subobj "
1033                                LPX64" on OST idx %d: rc = %d\n",
1034                                set->set_oa->o_id, req->rq_oa->o_id,
1035                                req->rq_idx, err);
1036                         if (!rc)
1037                                 rc = err;
1038                 }
1039         }
1040         err = lov_fini_setattr_set(set);
1041         if (!rc)
1042                 rc = err;
1043         RETURN(rc);
1044 }
1045
1046 static int lov_revalidate_policy(struct lov_obd *lov, struct lov_stripe_md *lsm)
1047 {
1048         static int next_idx = 0;
1049         struct lov_tgt_desc *tgt;
1050         int i, count;
1051         ENTRY;
1052
1053         /* XXX - we should do something clever and take lsm
1054          * into account but just do round robin for now. */
1055
1056         /* last_idx must always be less that count because
1057          * ld_tgt_count currently cannot shrink. */
1058         count = lov->desc.ld_tgt_count;
1059
1060         for (i = next_idx, tgt = lov->tgts + i; i < count; i++, tgt++) {
1061                 if (lov_tgt_active(lov, tgt, 0)) {
1062                         next_idx = (i + 1) % count;
1063                         RETURN(i);
1064                 }
1065         }
1066
1067         for (i = 0, tgt = lov->tgts; i < next_idx; i++, tgt++) {
1068                 if (lov_tgt_active(lov, tgt, 0)) {
1069                         next_idx = (i + 1) % count;
1070                         RETURN(i);
1071                 }
1072         }
1073
1074         RETURN(-EIO);
1075 }
1076
1077 static int lov_revalidate_md(struct obd_export *exp, struct obdo *src_oa,
1078                              struct lov_stripe_md *ea,
1079                              struct obd_trans_info *oti)
1080 {
1081         struct obd_export *osc_exp;
1082         struct lov_obd *lov = &exp->exp_obd->u.lov;
1083         struct lov_stripe_md *lsm = ea;
1084         struct lov_stripe_md obj_md;
1085         struct lov_stripe_md *obj_mdp = &obj_md;
1086         struct lov_oinfo *loi;
1087         struct obdo *tmp_oa;
1088         int ost_idx, updates = 0, i;
1089         ENTRY;
1090
1091         tmp_oa = obdo_alloc();
1092         if (tmp_oa == NULL)
1093                 RETURN(-ENOMEM);
1094
1095         loi = lsm->lsm_oinfo;
1096         for (i = 0; i < lsm->lsm_stripe_count; i++, loi++) {
1097                 struct lov_tgt_desc *tgt;
1098                 int rc;
1099
1100                 if (!lov_tgt_changed(lov, loi))
1101                         continue;
1102
1103                 /* returns an active tgt. tgt->ltd_refcount is incremented. */
1104                 ost_idx = lov_revalidate_policy(lov, lsm);
1105                 if (ost_idx < 0) {
1106                         /* FIXME: punt for now. */
1107                         CERROR("lov_revalidate_policy failed; no active "
1108                                "OSCs?\n");
1109                         continue;
1110                 }
1111
1112                 /* create a new object */
1113                 memcpy(tmp_oa, src_oa, sizeof(*tmp_oa));
1114                 /* XXX: LOV STACKING: use real "obj_mdp" sub-data */
1115                 tgt = lov->tgts + ost_idx;
1116                 osc_exp = tgt->ltd_exp;
1117                 rc = obd_create(osc_exp, tmp_oa, NULL, 0, &obj_mdp, oti);
1118                 if (rc) {
1119                         lov_tgt_decref(lov, tgt);
1120                         CERROR("error creating new subobj at idx %d; "
1121                                "rc = %d\n", ost_idx, rc);
1122                         continue;
1123                 }
1124
1125                 CDEBUG(D_INODE,
1126                        "replacing idx %d gen %d objid "LPX64" subobj "LPX64" "
1127                        "with idx %d gen %d objid "LPX64" subobj "LPX64".\n",
1128                        loi->loi_ost_idx, loi->loi_ost_gen,
1129                        loi->loi_id, loi->loi_gr,
1130                        ost_idx, tgt->ltd_gen, tmp_oa->o_id, tmp_oa->o_gr);
1131
1132                 if (oti->oti_objid)
1133                         oti->oti_objid[ost_idx] = tmp_oa->o_id;
1134                 loi->loi_id = tmp_oa->o_id;
1135                 loi->loi_gr = tmp_oa->o_gr;
1136                 loi->loi_ost_idx = ost_idx;
1137                 loi->loi_ost_gen = tgt->ltd_gen;
1138                 lov_tgt_decref(lov, tgt);
1139                 updates = 1;
1140         }
1141
1142         /* If we got an error revalidating an entry there's no need to
1143          * cleanup up objects we allocated here because the bad entry
1144          * still points to a deleted OST. */
1145
1146         obdo_free(tmp_oa);
1147         RETURN(updates);
1148 }
1149
1150 /* FIXME: maybe we'll just make one node the authoritative attribute node, then
1151  * we can send this 'punch' to just the authoritative node and the nodes
1152  * that the punch will affect. */
1153 static int lov_punch(struct obd_export *exp, struct obdo *oa,
1154                      struct lov_stripe_md *lsm, obd_off start,
1155                      obd_off end, struct obd_trans_info *oti,
1156                      struct lustre_capa *capa)
1157 {
1158         struct lov_request_set *set;
1159         struct lov_obd *lov;
1160         struct list_head *pos;
1161         struct lov_request *req;
1162         int err = 0, rc = 0;
1163         ENTRY;
1164
1165         if (lsm_bad_magic(lsm))
1166                 RETURN(-EINVAL);
1167
1168         if (!exp || !exp->exp_obd)
1169                 RETURN(-ENODEV);
1170
1171         lov = &exp->exp_obd->u.lov;
1172         rc = lov_prep_punch_set(exp, oa, lsm, start, end, oti, &set);
1173         if (rc)
1174                 RETURN(rc);
1175
1176         list_for_each (pos, &set->set_list) {
1177                 req = list_entry(pos, struct lov_request, rq_link);
1178
1179                 rc = obd_punch(lov->tgts[req->rq_idx].ltd_exp, req->rq_oa, 
1180                                NULL, req->rq_extent.start, 
1181                                req->rq_extent.end, NULL, capa);
1182                 err = lov_update_punch_set(set, req, rc);
1183                 if (err) {
1184                         CERROR("error: punch objid "LPX64" subobj "LPX64
1185                                " on OST idx %d: rc = %d\n", set->set_oa->o_id,
1186                                req->rq_oa->o_id, req->rq_idx, rc);
1187                         if (!rc)
1188                                 rc = err;
1189                 }
1190         }
1191         err = lov_fini_punch_set(set);
1192         if (!rc)
1193                 rc = err;
1194         RETURN(rc);
1195 }
1196
1197 static int lov_sync(struct obd_export *exp, struct obdo *oa,
1198                     struct lov_stripe_md *lsm, obd_off start, obd_off end)
1199 {
1200         struct lov_request_set *set;
1201         struct lov_obd *lov;
1202         struct list_head *pos;
1203         struct lov_request *req;
1204         int err = 0, rc = 0;
1205         ENTRY;
1206
1207         if (lsm_bad_magic(lsm))
1208                 RETURN(-EINVAL);
1209
1210         if (!exp->exp_obd)
1211                 RETURN(-ENODEV);
1212
1213         lov = &exp->exp_obd->u.lov;
1214         rc = lov_prep_sync_set(exp, oa, lsm, start, end, &set);
1215         if (rc)
1216                 RETURN(rc);
1217
1218         list_for_each (pos, &set->set_list) {
1219                 req = list_entry(pos, struct lov_request, rq_link);
1220
1221                 rc = obd_sync(lov->tgts[req->rq_idx].ltd_exp, req->rq_oa, 
1222                               NULL, req->rq_extent.start, req->rq_extent.end);
1223                 err = lov_update_common_set(set, req, rc);
1224                 if (err) {
1225                         CERROR("error: fsync objid "LPX64" subobj "LPX64
1226                                " on OST idx %d: rc = %d\n", set->set_oa->o_id,
1227                                req->rq_oa->o_id, req->rq_idx, rc);
1228                         if (!rc)
1229                                 rc = err;
1230                 }
1231         }
1232         err = lov_fini_sync_set(set);
1233         if (!rc)
1234                 rc = err;
1235         RETURN(rc);
1236 }
1237
1238 static int lov_brw_check(struct lov_obd *lov, struct obdo *oa,
1239                          struct lov_stripe_md *lsm,
1240                          obd_count oa_bufs, struct brw_page *pga)
1241 {
1242         int i, rc = 0;
1243         ENTRY;
1244
1245         /* The caller just wants to know if there's a chance that this
1246          * I/O can succeed */
1247         for (i = 0; i < oa_bufs; i++) {
1248                 struct lov_oinfo *loi;
1249                 struct lov_tgt_desc *tgt;
1250                 int stripe;
1251                 obd_off start, end;
1252
1253                 if (!lov_stripe_intersects(lsm, i, pga[i].disk_offset,
1254                                            pga[i].disk_offset + pga[i].count,
1255                                            &start, &end))
1256                         continue;
1257
1258                 stripe = lov_stripe_number(lsm, pga[i].disk_offset);
1259                 loi = lsm->lsm_oinfo + stripe;
1260                 tgt = lov->tgts + loi->loi_ost_idx;
1261
1262                 if (!lov_tgt_ready(lov, tgt, loi->loi_ost_gen)) {
1263                         CDEBUG(D_HA, "lov idx %d inactive\n", loi->loi_ost_idx);
1264                         RETURN(-EIO);
1265                 }
1266                 rc = obd_brw(OBD_BRW_CHECK, tgt->ltd_exp, oa,
1267                              NULL, 1, &pga[i], NULL);
1268                 lov_tgt_decref(lov, tgt);
1269                 if (rc)
1270                         break;
1271         }
1272         RETURN(rc);
1273 }
1274
1275 static int lov_brw(int cmd, struct obd_export *exp, struct obdo *src_oa,
1276                    struct lov_stripe_md *lsm, obd_count oa_bufs,
1277                    struct brw_page *pga, struct obd_trans_info *oti)
1278 {
1279         struct lov_request_set *set;
1280         struct lov_request *req;
1281         struct list_head *pos;
1282         struct lov_obd *lov = &exp->exp_obd->u.lov;
1283         int err, rc = 0;
1284         ENTRY;
1285
1286         if (lsm_bad_magic(lsm))
1287                 RETURN(-EINVAL);
1288
1289         if (cmd == OBD_BRW_CHECK) {
1290                 rc = lov_brw_check(lov, src_oa, lsm, oa_bufs, pga);
1291                 RETURN(rc);
1292         }
1293
1294         rc = lov_prep_brw_set(exp, src_oa, lsm, oa_bufs, pga, oti, &set);
1295         if (rc)
1296                 RETURN(rc);
1297
1298         list_for_each (pos, &set->set_list) {
1299                 struct obd_export *sub_exp;
1300                 struct brw_page *sub_pga;
1301                 req = list_entry(pos, struct lov_request, rq_link);
1302                 
1303                 sub_exp = lov->tgts[req->rq_idx].ltd_exp;
1304                 sub_pga = set->set_pga + req->rq_pgaidx;
1305                 rc = obd_brw(cmd, sub_exp, req->rq_oa, req->rq_md, 
1306                              req->rq_oabufs, sub_pga, oti);
1307                 if (rc)
1308                         break;
1309                 lov_update_common_set(set, req, rc);
1310         }
1311
1312         err = lov_fini_brw_set(set);
1313         if (!rc)
1314                 rc = err;
1315         RETURN(rc);
1316 }
1317
1318 static int lov_brw_interpret(struct ptlrpc_request_set *reqset, void *data,
1319                              int rc)
1320 {
1321         struct lov_request_set *lovset = (struct lov_request_set *)data;
1322         ENTRY;
1323         
1324         if (rc) {
1325                 lovset->set_completes = 0;
1326                 lov_fini_brw_set(lovset);
1327         } else {
1328                 rc = lov_fini_brw_set(lovset);
1329         }
1330                 
1331         RETURN(rc);
1332 }
1333
1334 static int lov_brw_async(int cmd, struct obd_export *exp, struct obdo *oa,
1335                          struct lov_stripe_md *lsm, obd_count oa_bufs,
1336                          struct brw_page *pga, struct ptlrpc_request_set *set,
1337                          struct obd_trans_info *oti)
1338 {
1339         struct lov_request_set *lovset;
1340         struct lov_request *req;
1341         struct list_head *pos;
1342         struct lov_obd *lov = &exp->exp_obd->u.lov;
1343         int rc = 0;
1344         ENTRY;
1345
1346         if (lsm_bad_magic(lsm))
1347                 RETURN(-EINVAL);
1348
1349         if (cmd == OBD_BRW_CHECK) {
1350                 rc = lov_brw_check(lov, oa, lsm, oa_bufs, pga);
1351                 RETURN(rc);
1352         }
1353
1354         rc = lov_prep_brw_set(exp, oa, lsm, oa_bufs, pga, oti, &lovset);
1355         if (rc)
1356                 RETURN(rc);
1357
1358         list_for_each (pos, &lovset->set_list) {
1359                 struct obd_export *sub_exp;
1360                 struct brw_page *sub_pga;
1361                 req = list_entry(pos, struct lov_request, rq_link);
1362                 
1363                 sub_exp = lov->tgts[req->rq_idx].ltd_exp;
1364                 sub_pga = lovset->set_pga + req->rq_pgaidx;
1365                 rc = obd_brw_async(cmd, sub_exp, req->rq_oa, req->rq_md,
1366                                    req->rq_oabufs, sub_pga, set, oti);
1367                 if (rc)
1368                         GOTO(out, rc);
1369                 lov_update_common_set(lovset, req, rc);
1370         }
1371         LASSERT(rc == 0);
1372         LASSERT(set->set_interpret == NULL);
1373         set->set_interpret = (set_interpreter_func)lov_brw_interpret;
1374         set->set_arg = (void *)lovset;
1375         
1376         RETURN(rc);
1377 out:
1378         lov_fini_brw_set(lovset);
1379         RETURN(rc);
1380 }
1381
1382 static int lov_ap_make_ready(void *data, int cmd)
1383 {
1384         struct lov_async_page *lap = LAP_FROM_COOKIE(data);
1385
1386         return lap->lap_caller_ops->ap_make_ready(lap->lap_caller_data, cmd);
1387 }
1388 static int lov_ap_refresh_count(void *data, int cmd)
1389 {
1390         struct lov_async_page *lap = LAP_FROM_COOKIE(data);
1391
1392         return lap->lap_caller_ops->ap_refresh_count(lap->lap_caller_data,
1393                                                      cmd);
1394 }
1395 static void lov_ap_fill_obdo(void *data, int cmd, struct obdo *oa)
1396 {
1397         struct lov_async_page *lap = LAP_FROM_COOKIE(data);
1398
1399         lap->lap_caller_ops->ap_fill_obdo(lap->lap_caller_data, cmd, oa);
1400         /* XXX woah, shouldn't we be altering more here?  size? */
1401         oa->o_id = lap->lap_loi_id;
1402 }
1403
1404 static void lov_ap_completion(void *data, int cmd, struct obdo *oa, int rc)
1405 {
1406         struct lov_async_page *lap = LAP_FROM_COOKIE(data);
1407
1408         /* in a raid1 regime this would down a count of many ios
1409          * in flight, onl calling the caller_ops completion when all
1410          * the raid1 ios are complete */
1411         lap->lap_caller_ops->ap_completion(lap->lap_caller_data, cmd, oa, rc);
1412 }
1413
1414 static struct obd_async_page_ops lov_async_page_ops = {
1415         .ap_make_ready =        lov_ap_make_ready,
1416         .ap_refresh_count =     lov_ap_refresh_count,
1417         .ap_fill_obdo =         lov_ap_fill_obdo,
1418         .ap_completion =        lov_ap_completion,
1419 };
1420
1421 static int lov_prep_async_page(struct obd_export *exp,
1422                                struct lov_stripe_md *lsm,
1423                                struct lov_oinfo *loi, struct page *page,
1424                                obd_off offset, struct obd_async_page_ops *ops,
1425                                void *data, void **res)
1426 {
1427         struct lov_obd *lov = &exp->exp_obd->u.lov;
1428         struct lov_tgt_desc *tgt;
1429         struct lov_async_page *lap;
1430         int rc, stripe;
1431         ENTRY;
1432
1433         if (lsm_bad_magic(lsm))
1434                 RETURN(-EINVAL);
1435         LASSERT(loi == NULL);
1436
1437         stripe = lov_stripe_number(lsm, offset);
1438         loi = &lsm->lsm_oinfo[stripe];
1439
1440         OBD_ALLOC(lap, sizeof(*lap));
1441         if (lap == NULL)
1442                 RETURN(-ENOMEM);
1443
1444         lap->lap_magic = LAP_MAGIC;
1445         lap->lap_caller_ops = ops;
1446         lap->lap_caller_data = data;
1447
1448         /* FIXME handle multiple oscs after landing b_raid1 */
1449         lap->lap_stripe = stripe;
1450         switch (lsm->lsm_pattern) {
1451                 case LOV_PATTERN_RAID0:
1452                         lov_stripe_offset(lsm, offset, lap->lap_stripe, 
1453                                           &lap->lap_sub_offset);
1454                         break;
1455                 case LOV_PATTERN_CMOBD:
1456                         lap->lap_sub_offset = offset;
1457                         break;
1458                 default:
1459                         LBUG();
1460         }
1461
1462         /* so the callback doesn't need the lsm */
1463         lap->lap_loi_id = loi->loi_id;
1464
1465         tgt = lov->tgts + loi->loi_ost_idx;
1466
1467         if (lov_tgt_ready(lov, tgt, loi->loi_ost_gen)) {
1468                 rc = obd_prep_async_page(tgt->ltd_exp, lsm, loi, page,
1469                                          lap->lap_sub_offset,
1470                                          &lov_async_page_ops, lap,
1471                                          &lap->lap_sub_cookie);
1472         } else {
1473                 rc = -EIO;
1474         }
1475
1476         if (rc) {
1477                 OBD_FREE(lap, sizeof(*lap));
1478                 RETURN(rc);
1479         }
1480         CDEBUG(D_CACHE, "lap %p page %p cookie %p off "LPU64"\n", lap, page,
1481                lap->lap_sub_cookie, offset);
1482         *res = lap;
1483         RETURN(0);
1484 }
1485
1486 static int lov_queue_async_io(struct obd_export *exp,
1487                               struct lov_stripe_md *lsm,
1488                               struct lov_oinfo *loi, void *cookie,
1489                               int cmd, obd_off off, int count,
1490                               obd_flags brw_flags, obd_flags async_flags)
1491 {
1492         struct lov_obd *lov = &exp->exp_obd->u.lov;
1493         struct lov_tgt_desc *tgt;
1494         struct lov_async_page *lap;
1495         int rc;
1496
1497         LASSERT(loi == NULL);
1498
1499         if (lsm_bad_magic(lsm))
1500                 RETURN(-EINVAL);
1501
1502         lap = LAP_FROM_COOKIE(cookie);
1503         loi = &lsm->lsm_oinfo[lap->lap_stripe];
1504         tgt = lov->tgts + loi->loi_ost_idx;
1505
1506         if (!lov_tgt_ready(lov, tgt, loi->loi_ost_gen) && 
1507             !lov_tgt_pending(lov, tgt, loi->loi_ost_gen))
1508                  RETURN(-EIO);
1509
1510         rc = obd_queue_async_io(tgt->ltd_exp, lsm, loi, lap->lap_sub_cookie,
1511                                 cmd, off, count, brw_flags, async_flags);
1512
1513         lov_tgt_decref(lov, tgt);
1514         RETURN(rc);
1515 }
1516
1517 static int lov_set_async_flags(struct obd_export *exp,
1518                                struct lov_stripe_md *lsm,
1519                                struct lov_oinfo *loi, void *cookie,
1520                                obd_flags async_flags)
1521 {
1522         struct lov_obd *lov = &exp->exp_obd->u.lov;
1523         struct lov_tgt_desc *tgt;
1524         struct lov_async_page *lap;
1525         int rc;
1526
1527         LASSERT(loi == NULL);
1528
1529         if (lsm_bad_magic(lsm))
1530                 RETURN(-EINVAL);
1531
1532         lap = LAP_FROM_COOKIE(cookie);
1533         loi = &lsm->lsm_oinfo[lap->lap_stripe];
1534         tgt = lov->tgts + loi->loi_ost_idx;
1535
1536         if (!lov_tgt_ready(lov, tgt, loi->loi_ost_gen) && 
1537             !lov_tgt_pending(lov, tgt, loi->loi_ost_gen))
1538                  RETURN(-EIO);
1539         
1540         rc = obd_set_async_flags(tgt->ltd_exp, lsm, loi, lap->lap_sub_cookie,
1541                                  async_flags);
1542
1543         lov_tgt_decref(lov, tgt);
1544         RETURN(rc);
1545 }
1546
1547 static int lov_queue_group_io(struct obd_export *exp,
1548                               struct lov_stripe_md *lsm,
1549                               struct lov_oinfo *loi,
1550                               struct obd_io_group *oig, void *cookie,
1551                               int cmd, obd_off off, int count,
1552                               obd_flags brw_flags, obd_flags async_flags)
1553 {
1554         struct lov_obd *lov = &exp->exp_obd->u.lov;
1555         struct lov_tgt_desc *tgt;
1556         struct lov_async_page *lap;
1557         int rc;
1558
1559         LASSERT(loi == NULL);
1560
1561         if (lsm_bad_magic(lsm))
1562                 RETURN(-EINVAL);
1563
1564         lap = LAP_FROM_COOKIE(cookie);
1565         loi = &lsm->lsm_oinfo[lap->lap_stripe];
1566         tgt = lov->tgts + loi->loi_ost_idx;
1567
1568         if (!lov_tgt_ready(lov, tgt, loi->loi_ost_gen) && 
1569             !lov_tgt_pending(lov, tgt, loi->loi_ost_gen))
1570                  RETURN(-EIO);
1571
1572         rc = obd_queue_group_io(tgt->ltd_exp, lsm, loi, oig,
1573                                 lap->lap_sub_cookie, cmd, off, count,
1574                                 brw_flags, async_flags);
1575
1576         lov_tgt_decref(lov, tgt);
1577         RETURN(rc);
1578 }
1579
1580 /* this isn't exactly optimal.  we may have queued sync io in oscs on
1581  * all stripes, but we don't record that fact at queue time.  so we
1582  * trigger sync io on all stripes. */
1583 static int lov_trigger_group_io(struct obd_export *exp,
1584                                 struct lov_stripe_md *lsm,
1585                                 struct lov_oinfo *loi,
1586                                 struct obd_io_group *oig)
1587 {
1588         struct lov_obd *lov = &exp->exp_obd->u.lov;
1589         int rc = 0, i, err;
1590
1591         LASSERT(loi == NULL);
1592
1593         if (lsm_bad_magic(lsm))
1594                 RETURN(-EINVAL);
1595
1596         loi = lsm->lsm_oinfo;
1597         for (i = 0; i < lsm->lsm_stripe_count; i++, loi++) {
1598                 struct lov_tgt_desc *tgt = lov->tgts + loi->loi_ost_idx;
1599
1600                 if (!lov_tgt_ready(lov, tgt, loi->loi_ost_gen)) {
1601                         CDEBUG(D_HA, "lov idx %d inactive\n", loi->loi_ost_idx);
1602                         continue;
1603                 }
1604
1605                 err = obd_trigger_group_io(tgt->ltd_exp, lsm, loi, oig);
1606
1607                 lov_tgt_decref(lov, tgt);
1608
1609                 if (rc == 0 && err != 0)
1610                         rc = err;
1611         };
1612         RETURN(rc);
1613 }
1614
1615 static int lov_teardown_async_page(struct obd_export *exp,
1616                                    struct lov_stripe_md *lsm,
1617                                    struct lov_oinfo *loi, void *cookie)
1618 {
1619         struct lov_obd *lov = &exp->exp_obd->u.lov;
1620         struct lov_tgt_desc *tgt;
1621         struct lov_async_page *lap;
1622         int rc;
1623         ENTRY;
1624
1625         LASSERT(loi == NULL);
1626
1627         if (lsm_bad_magic(lsm))
1628                 RETURN(-EINVAL);
1629
1630         lap = LAP_FROM_COOKIE(cookie);
1631
1632         loi = &lsm->lsm_oinfo[lap->lap_stripe];
1633         tgt = lov->tgts + loi->loi_ost_idx;
1634
1635         rc = obd_teardown_async_page(tgt->ltd_exp, lsm, loi,
1636                                      lap->lap_sub_cookie);
1637         lov_tgt_decref(lov, tgt);
1638
1639         if (rc) {
1640                 CERROR("unable to teardown sub cookie %p: %d\n",
1641                        lap->lap_sub_cookie, rc);
1642                 RETURN(rc);
1643         }
1644         OBD_FREE(lap, sizeof(*lap));
1645         RETURN(rc);
1646 }
1647
1648 static int lov_enqueue(struct obd_export *exp, struct lov_stripe_md *lsm,
1649                        __u32 type, ldlm_policy_data_t *policy, __u32 mode,
1650                        int *flags, void *bl_cb, void *cp_cb, void *gl_cb,
1651                        void *data,__u32 lvb_len, void *lvb_swabber,
1652                        struct lustre_handle *lockh)
1653 {
1654         struct lov_request_set *set;
1655         struct lov_request *req;
1656         struct list_head *pos;
1657         struct lustre_handle *lov_lockhp;
1658         struct lov_obd *lov;
1659         ldlm_error_t rc;
1660         int save_flags = *flags;
1661         ENTRY;
1662
1663         if (lsm_bad_magic(lsm))
1664                 RETURN(-EINVAL);
1665
1666         /* we should never be asked to replay a lock this way. */
1667         LASSERT((*flags & LDLM_FL_REPLAY) == 0);
1668
1669         if (!exp || !exp->exp_obd)
1670                 RETURN(-ENODEV);
1671
1672         lov = &exp->exp_obd->u.lov;
1673         rc = lov_prep_enqueue_set(exp, lsm, policy, mode, lockh, &set);
1674         if (rc)
1675                 RETURN(rc);
1676
1677         list_for_each (pos, &set->set_list) {
1678                 ldlm_policy_data_t sub_policy;
1679                 req = list_entry(pos, struct lov_request, rq_link);
1680                 lov_lockhp = set->set_lockh->llh_handles + req->rq_stripe;
1681                 LASSERT(lov_lockhp);
1682
1683                 *flags = save_flags;
1684                 sub_policy.l_extent.start = req->rq_extent.start;
1685                 sub_policy.l_extent.end = req->rq_extent.end;
1686
1687                 rc = obd_enqueue(lov->tgts[req->rq_idx].ltd_exp, req->rq_md,
1688                                  type, &sub_policy, mode, flags, bl_cb,
1689                                  cp_cb, gl_cb, data, lvb_len, lvb_swabber,
1690                                  lov_lockhp);
1691                 rc = lov_update_enqueue_set(set, req, rc, save_flags);
1692                 if (rc != ELDLM_OK)
1693                         break;
1694         }
1695
1696         lov_fini_enqueue_set(set, mode);
1697         RETURN(rc);
1698 }
1699
1700 static int lov_match(struct obd_export *exp, struct lov_stripe_md *lsm,
1701                      __u32 type, ldlm_policy_data_t *policy, __u32 mode,
1702                      int *flags, void *data, struct lustre_handle *lockh)
1703 {
1704         struct lov_request_set *set;
1705         struct lov_request *req;
1706         struct list_head *pos;
1707         struct lov_obd *lov = &exp->exp_obd->u.lov;
1708         struct lustre_handle *lov_lockhp;
1709         int lov_flags, rc = 0;
1710         ENTRY;
1711
1712         if (lsm_bad_magic(lsm))
1713                 RETURN(-EINVAL);
1714
1715         if (!exp || !exp->exp_obd)
1716                 RETURN(-ENODEV);
1717
1718         lov = &exp->exp_obd->u.lov;
1719         rc = lov_prep_match_set(exp, lsm, policy, mode, lockh, &set);
1720         if (rc)
1721                 RETURN(rc);
1722
1723         list_for_each (pos, &set->set_list) {
1724                 ldlm_policy_data_t sub_policy;
1725                 req = list_entry(pos, struct lov_request, rq_link);
1726                 lov_lockhp = set->set_lockh->llh_handles + req->rq_stripe;
1727                 LASSERT(lov_lockhp);
1728
1729                 sub_policy.l_extent.start = req->rq_extent.start;
1730                 sub_policy.l_extent.end = req->rq_extent.end;
1731                 lov_flags = *flags;
1732
1733                 rc = obd_match(lov->tgts[req->rq_idx].ltd_exp, req->rq_md,
1734                                type, &sub_policy, mode, &lov_flags, data,
1735                                lov_lockhp);
1736                 rc = lov_update_match_set(set, req, rc);
1737                 if (rc != 1)
1738                         break;
1739         }
1740         lov_fini_match_set(set, mode, *flags);
1741         RETURN(rc);
1742 }
1743
1744 static int lov_change_cbdata(struct obd_export *exp,
1745                              struct lov_stripe_md *lsm, ldlm_iterator_t it,
1746                              void *data)
1747 {
1748         struct lov_obd *lov;
1749         struct lov_oinfo *loi;
1750         int rc = 0, i;
1751         ENTRY;
1752
1753         if (lsm_bad_magic(lsm))
1754                 RETURN(-EINVAL);
1755
1756         if (!exp || !exp->exp_obd)
1757                 RETURN(-ENODEV);
1758
1759         LASSERT(lsm->lsm_object_gr > 0);
1760
1761         lov = &exp->exp_obd->u.lov;
1762         for (i = 0,loi = lsm->lsm_oinfo; i < lsm->lsm_stripe_count; i++,loi++) {
1763                 struct lov_tgt_desc *tgt = lov->tgts + loi->loi_ost_idx;
1764                 struct lov_stripe_md submd;
1765
1766                 submd.lsm_object_id = loi->loi_id;
1767                 submd.lsm_object_gr = lsm->lsm_object_gr;
1768                 submd.lsm_stripe_count = 0;
1769                 rc = obd_change_cbdata(tgt->ltd_exp, &submd, it, data);
1770                 lov_tgt_decref(lov, tgt);
1771         }
1772         RETURN(rc);
1773 }
1774
1775 static int lov_cancel(struct obd_export *exp, struct lov_stripe_md *lsm,
1776                       __u32 mode, struct lustre_handle *lockh)
1777 {
1778         struct lov_request_set *set;
1779         struct lov_request *req;
1780         struct list_head *pos;
1781         struct lov_obd *lov = &exp->exp_obd->u.lov;
1782         struct lustre_handle *lov_lockhp;
1783         int err = 0, rc = 0;
1784         ENTRY;
1785
1786         if (lsm_bad_magic(lsm))
1787                 RETURN(-EINVAL);
1788
1789         if (!exp || !exp->exp_obd)
1790                 RETURN(-ENODEV);
1791
1792         LASSERT(lsm->lsm_object_gr > 0);
1793
1794         LASSERT(lockh);
1795         lov = &exp->exp_obd->u.lov;
1796         rc = lov_prep_cancel_set(exp, lsm, mode, lockh, &set);
1797         if (rc)
1798                 RETURN(rc);
1799
1800         list_for_each (pos, &set->set_list) {
1801                 req = list_entry(pos, struct lov_request, rq_link);
1802                 lov_lockhp = set->set_lockh->llh_handles + req->rq_stripe;
1803
1804                 rc = obd_cancel(lov->tgts[req->rq_idx].ltd_exp, req->rq_md,
1805                                 mode, lov_lockhp);
1806                 rc = lov_update_common_set(set, req, rc);
1807                 if (rc) {
1808                         CERROR("error: cancel objid "LPX64" subobj "
1809                                LPX64" on OST idx %d: rc = %d\n",
1810                                lsm->lsm_object_id,
1811                                req->rq_md->lsm_object_id, req->rq_idx, rc);
1812                         err = rc;
1813                 }
1814  
1815         }
1816         lov_fini_cancel_set(set);
1817         RETURN(err);
1818 }
1819
1820 static int lov_cancel_unused(struct obd_export *exp,
1821                              struct lov_stripe_md *lsm, 
1822                              int flags, void *opaque)
1823 {
1824         struct lov_obd *lov;
1825         struct lov_oinfo *loi;
1826         struct lov_tgt_desc *tgt;
1827         int rc = 0, i;
1828         ENTRY;
1829
1830         lov = &exp->exp_obd->u.lov;
1831         if (lsm == NULL) {
1832                 tgt = lov->tgts;
1833                 for (i = 0; i < lov->desc.ld_tgt_count; i++, tgt++) {
1834                         int err;
1835
1836                         if (lov_tgt_ready(lov, tgt, 0)) {
1837                                 err = obd_cancel_unused(tgt->ltd_exp, NULL,
1838                                                         flags, opaque);
1839                                 lov_tgt_decref(lov, tgt);
1840                         } else {
1841                                 if (obd_uuid_empty(&tgt->uuid))
1842                                         continue;
1843                                 CERROR("error: cancel unused "
1844                                        "OST idx %d: OST inactive.\n", i);
1845                                 err = -EIO;
1846                         }
1847                         if (!rc)
1848                                 rc = err;
1849                 }
1850                 RETURN(rc);
1851         }
1852
1853         if (lsm_bad_magic(lsm))
1854                 RETURN(-EINVAL);
1855
1856         if (!exp || !exp->exp_obd)
1857                 RETURN(-ENODEV);
1858
1859         LASSERT(lsm->lsm_object_gr > 0);
1860
1861         for (i = 0,loi = lsm->lsm_oinfo; i < lsm->lsm_stripe_count; i++,loi++) {
1862                 struct lov_stripe_md submd;
1863                 int err;
1864
1865                 submd.lsm_object_id = loi->loi_id;
1866                 submd.lsm_object_gr = lsm->lsm_object_gr;
1867                 submd.lsm_stripe_count = 0;
1868
1869                 tgt = lov->tgts + loi->loi_ost_idx;
1870                 if (lov_tgt_ready(lov, tgt, loi->loi_ost_gen)) {
1871                         err = obd_cancel_unused(tgt->ltd_exp, &submd, flags,
1872                                                 opaque);
1873                         lov_tgt_decref(lov, tgt);
1874                         if (err && lov_tgt_ready(lov, tgt, loi->loi_ost_gen)) {
1875                                 lov_tgt_decref(lov, tgt);
1876                                 CERROR("error: cancel unused objid "LPX64" "
1877                                        "subobj "LPX64" OST idx %d: rc = %d\n",
1878                                        lsm->lsm_object_id, loi->loi_id,
1879                                        loi->loi_ost_idx, err);
1880                         }
1881                 } else {
1882                         err = -EIO;
1883                         CERROR("error: cancel unused objid "LPX64" "
1884                                "subobj "LPX64" on OST idx %d: OST inactive.\n",
1885                                lsm->lsm_object_id,
1886                                loi->loi_id, loi->loi_ost_idx);
1887                 }
1888
1889                 if (!rc)
1890                         rc = err;
1891         }
1892         RETURN(rc);
1893 }
1894
1895 #define LOV_U64_MAX ((__u64)~0ULL)
1896 #define LOV_SUM_MAX(tot, add)                                           \
1897         do {                                                            \
1898                 if ((tot) + (add) < (tot))                              \
1899                         (tot) = LOV_U64_MAX;                            \
1900                 else                                                    \
1901                         (tot) += (add);                                 \
1902         } while(0)
1903
1904 static int lov_statfs(struct obd_device *obd, struct obd_statfs *osfs,
1905                       unsigned long max_age)
1906 {
1907         struct lov_obd *lov = &obd->u.lov;
1908         struct lov_tgt_desc *tgt = lov->tgts;
1909         struct obd_statfs lov_sfs;
1910         int set = 0;
1911         int rc = 0;
1912         int i;
1913         ENTRY;
1914
1915
1916         /* We only get block data from the OBD */
1917         for (i = 0; i < lov->desc.ld_tgt_count; i++, tgt++) {
1918                 int err;
1919
1920                 if (!lov_tgt_active(lov, tgt, 0)) {
1921                         CDEBUG(D_HA, "lov idx %d inactive\n", i);
1922                         continue;
1923                 }
1924
1925                 err = obd_statfs(class_exp2obd(tgt->ltd_exp), &lov_sfs,max_age);
1926                 lov_tgt_decref(lov, tgt);
1927                 if (err) {
1928                         if (lov_tgt_active(lov, tgt, 0)) {
1929                                 lov_tgt_decref(lov, tgt);
1930                                 if (!rc)
1931                                         rc = err;
1932                         }
1933                         continue;
1934                 }
1935
1936                 if (!set) {
1937                         memcpy(osfs, &lov_sfs, sizeof(lov_sfs));
1938                         set = 1;
1939                 } else {
1940                         osfs->os_bfree += lov_sfs.os_bfree;
1941                         osfs->os_bavail += lov_sfs.os_bavail;
1942                         osfs->os_blocks += lov_sfs.os_blocks;
1943                         /* XXX not sure about this one - depends on policy.
1944                          *   - could be minimum if we always stripe on all OBDs
1945                          *     (but that would be wrong for any other policy,
1946                          *     if one of the OBDs has no more objects left)
1947                          *   - could be sum if we stripe whole objects
1948                          *   - could be average, just to give a nice number
1949                          *
1950                          * To give a "reasonable" (if not wholly accurate)
1951                          * number, we divide the total number of free objects
1952                          * by expected stripe count (watch out for overflow).
1953                          */
1954                         LOV_SUM_MAX(osfs->os_files, lov_sfs.os_files);
1955                         LOV_SUM_MAX(osfs->os_ffree, lov_sfs.os_ffree);
1956                 }
1957         }
1958
1959         if (set) {
1960                 __u32 expected_stripes = lov->desc.ld_default_stripe_count ?
1961                                          lov->desc.ld_default_stripe_count :
1962                                          lov->desc.ld_active_tgt_count;
1963
1964                 if ((lov->desc.ld_default_stripe_count == 0) ||
1965                     (lov->desc.ld_default_stripe_count >
1966                      lov->desc.ld_active_tgt_count)) {
1967                         expected_stripes = lov->desc.ld_active_tgt_count;
1968                 } else {
1969                         expected_stripes = lov->desc.ld_default_stripe_count;
1970                 }
1971
1972                 if (osfs->os_files != LOV_U64_MAX)
1973                         do_div(osfs->os_files, expected_stripes);
1974                 if (osfs->os_ffree != LOV_U64_MAX)
1975                         do_div(osfs->os_ffree, expected_stripes);
1976         } else if (!rc)
1977                 rc = -EIO;
1978
1979         RETURN(rc);
1980 }
1981
1982 static int lov_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1983                          void *karg, void *uarg)
1984 {
1985         struct obd_device *obddev = class_exp2obd(exp);
1986         struct lov_obd *lov = &obddev->u.lov;
1987         struct lov_tgt_desc *tgt;
1988         int i, rc, count = lov->desc.ld_tgt_count;
1989         struct obd_uuid *uuidp;
1990         ENTRY;
1991
1992         switch (cmd) {
1993         case OBD_IOC_LOV_GET_CONFIG: {
1994                 struct obd_ioctl_data *data = karg;
1995                 struct lov_desc *desc;
1996                 char *buf = NULL;
1997                 __u32 *genp;
1998
1999                 buf = NULL;
2000                 len = 0;
2001                 if (obd_ioctl_getdata(&buf, &len, (void *)uarg))
2002                         RETURN(-EINVAL);
2003
2004                 data = (struct obd_ioctl_data *)buf;
2005
2006                 if (sizeof(*desc) > data->ioc_inllen1) {
2007                         obd_ioctl_freedata(buf, len);
2008                         RETURN(-EINVAL);
2009                 }
2010
2011                 if (sizeof(uuidp->uuid) * count > data->ioc_inllen2) {
2012                         obd_ioctl_freedata(buf, len);
2013                         RETURN(-EINVAL);
2014                 }
2015
2016                 if (sizeof(__u32) * count > data->ioc_inllen3) {
2017                         obd_ioctl_freedata(buf, len);
2018                         RETURN(-EINVAL);
2019                 }
2020
2021                 desc = (struct lov_desc *)data->ioc_inlbuf1;
2022                 memcpy(desc, &(lov->desc), sizeof(*desc));
2023
2024                 uuidp = (struct obd_uuid *)data->ioc_inlbuf2;
2025                 genp = (__u32 *)data->ioc_inlbuf3;
2026                 /* the uuid will be empty for deleted OSTs */
2027                 lov_tgts_lock(lov);
2028                 tgt = lov->tgts;
2029                 for (i = 0; i < count; i++, uuidp++, genp++, tgt++) {
2030                         obd_str2uuid(uuidp, (char *)tgt->uuid.uuid);
2031                         *genp = tgt->ltd_gen;
2032                 }
2033                 lov_tgts_unlock(lov);
2034
2035                 rc = copy_to_user((void *)uarg, buf, len);
2036                 if (rc)
2037                         rc = -EFAULT;
2038                 obd_ioctl_freedata(buf, len);
2039                 break;
2040         }
2041         case LL_IOC_LOV_SETSTRIPE:
2042                 rc = lov_setstripe(exp, karg, uarg);
2043                 break;
2044         case LL_IOC_LOV_GETSTRIPE:
2045                 rc = lov_getstripe(exp, karg, uarg);
2046                 break;
2047         case LL_IOC_LOV_SETEA:
2048                 rc = lov_setea(exp, karg, uarg);
2049                 break;
2050         default: {
2051                 int set = 0;
2052                 if (count == 0)
2053                         RETURN(-ENOTTY);
2054                 rc = 0;
2055                 for (i = 0, tgt = lov->tgts; i < count; i++, tgt++) {
2056                         int err;
2057
2058                         if (!lov_tgt_active(lov, tgt, 0)) {
2059                                 CERROR("error: iocontrol failed for OSC %s on "
2060                                        "OST idx %d: OST inactive.\n",
2061                                        tgt->uuid.uuid, i);
2062                                 if (!rc)
2063                                         rc = -EIO;
2064                                 continue;
2065                         }
2066
2067                         err = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
2068                         lov_tgt_decref(lov, tgt);
2069                         if (err) {
2070                                 if (lov_tgt_ready(lov, tgt, 0)) {
2071                                         lov_tgt_decref(lov, tgt);
2072                                         CERROR("error: iocontrol OSC %s on OST "
2073                                                "idx %d cmd %x: err = %d\n",
2074                                                lov->tgts[i].uuid.uuid, i,
2075                                                cmd, err);
2076                                         if (!rc)
2077                                                 rc = err;
2078                                 }
2079                         } else
2080                                 set = 1;
2081                 }
2082                 if (!set && !rc)
2083                         rc = -EIO;
2084         }
2085         }
2086
2087         RETURN(rc);
2088 }
2089
2090 static int lov_get_info(struct obd_export *exp, __u32 keylen,
2091                         void *key, __u32 *vallen, void *val)
2092 {
2093         struct obd_device *obddev = class_exp2obd(exp);
2094         struct lov_obd *lov = &obddev->u.lov;
2095         struct lov_tgt_desc *tgt;
2096         int i;
2097         ENTRY;
2098
2099         if (!vallen || !val)
2100                 RETURN(-EFAULT);
2101
2102         if (keylen > strlen("lock_to_stripe") &&
2103             strcmp(key, "lock_to_stripe") == 0) {
2104                 struct {
2105                         char name[16];
2106                         struct ldlm_lock *lock;
2107                         struct lov_stripe_md *lsm;
2108                 } *data = key;
2109                 struct lov_oinfo *loi;
2110                 struct ldlm_res_id *res_id = &data->lock->l_resource->lr_name;
2111                 __u32 *stripe = val;
2112
2113                 if (*vallen < sizeof(*stripe))
2114                         RETURN(-EFAULT);
2115                 *vallen = sizeof(*stripe);
2116
2117                 /* XXX This is another one of those bits that will need to
2118                  * change if we ever actually support nested LOVs.  It uses
2119                  * the lock's export to find out which stripe it is. */
2120                 /* XXX - it's assumed all the locks for deleted OSTs have
2121                  * been cancelled. Also, the export for deleted OSTs will
2122                  * be NULL and won't match the lock's export. */
2123                 lov_tgts_lock(lov);
2124                 for (i = 0, loi = data->lsm->lsm_oinfo;
2125                      i < data->lsm->lsm_stripe_count;
2126                      i++, loi++) {
2127                         if (lov->tgts[loi->loi_ost_idx].ltd_exp ==
2128                                         data->lock->l_conn_export &&
2129                             loi->loi_id == res_id->name[0] &&
2130                             loi->loi_gr == res_id->name[2]) {
2131                                 lov_tgts_unlock(lov);
2132                                 *stripe = i;
2133                                 RETURN(0);
2134                         }
2135                 }
2136                 lov_tgts_unlock(lov);
2137                 LDLM_ERROR(data->lock, "lock on inode without such object");
2138                 dump_lsm(D_ERROR, data->lsm);
2139                 portals_debug_dumpstack(NULL);
2140                 RETURN(-ENXIO);
2141         } else if (keylen >= strlen("size_to_stripe") &&
2142                    strcmp(key, "size_to_stripe") == 0) {
2143                 struct {
2144                         int stripe_number;
2145                         __u64 size;
2146                         struct lov_stripe_md *lsm;
2147                 } *data = val;
2148
2149                 if (*vallen < sizeof(*data))
2150                         RETURN(-EFAULT);
2151
2152                 data->size = lov_size_to_stripe(data->lsm, data->size,
2153                                                 data->stripe_number);
2154                 RETURN(0);
2155         } else if (keylen >= strlen("last_id") && strcmp(key, "last_id") == 0) {
2156                 __u32 size = sizeof(obd_id);
2157                 obd_id *ids = val;
2158                 int rc = 0;
2159
2160                 tgt = lov->tgts;
2161                 for (i = 0; i < lov->desc.ld_tgt_count; i++, tgt++) {
2162                         if (!lov_tgt_active(lov, tgt, 0))
2163                                 continue;
2164                         rc = obd_get_info(tgt->ltd_exp, keylen, key, &size,
2165                                           ids + i);
2166                         lov_tgt_decref(lov, tgt);
2167                         if (rc != 0)
2168                                 RETURN(rc);
2169                 }
2170                 RETURN(0);
2171         } else if (keylen >= strlen("lovdesc") && strcmp(key, "lovdesc") == 0) {
2172                 struct lov_desc *desc_ret = val;
2173                 *desc_ret = lov->desc;
2174
2175                 RETURN(0);
2176         }
2177
2178         RETURN(-EINVAL);
2179 }
2180
2181 static int lov_set_info(struct obd_export *exp, obd_count keylen,
2182                         void *key, obd_count vallen, void *val)
2183 {
2184         struct obd_device *obddev = class_exp2obd(exp);
2185         struct lov_obd *lov = &obddev->u.lov;
2186         struct lov_tgt_desc *tgt;
2187         int i, rc = 0, err;
2188         ENTRY;
2189
2190 #define KEY_IS(str) \
2191         (keylen == strlen(str) && memcmp(key, str, keylen) == 0)
2192
2193         if (KEY_IS("async")) {
2194                 struct lov_desc *desc = &lov->desc;
2195
2196                 if (vallen != sizeof(int))
2197                         RETURN(-EINVAL);
2198                 lov->async = *((int*) val);
2199
2200                 lov_tgts_lock(lov);
2201                 tgt = lov->tgts;
2202                 for (i = 0; i < desc->ld_tgt_count; i++, tgt++) {
2203                         struct obd_uuid *tgt_uuid = &tgt->uuid;
2204                         struct obd_device *tgt_obd;
2205
2206                         tgt_obd = class_find_client_obd(tgt_uuid,
2207                                                         OBD_OSC_DEVICENAME,
2208                                                         &obddev->obd_uuid);
2209                         if (!tgt_obd) {
2210                                 CERROR("Target %s not attached\n",
2211                                         tgt_uuid->uuid);
2212                                 if (!rc)
2213                                         rc = -EINVAL;
2214                                 continue;
2215                         }
2216
2217                         err = obd_set_info(tgt_obd->obd_self_export,
2218                                            keylen, key, vallen, val);
2219                         if (err) {
2220                                 CERROR("Failed to set async on target %s\n",
2221                                         tgt_obd->obd_name);
2222                                 if (!rc)
2223                                         rc = err;
2224                         }
2225                 }
2226                 lov_tgts_unlock(lov);
2227                 RETURN(rc);
2228         }
2229
2230         if (KEY_IS("mds_conn")) {
2231                 if (vallen != sizeof(__u32))
2232                         RETURN(-EINVAL);
2233         } else if (KEY_IS("unlinked") || KEY_IS("unrecovery")) {
2234                 if (vallen != 0)
2235                         RETURN(-EINVAL);
2236         } else if (KEY_IS("sec") || KEY_IS("sec_flags")) {
2237                 struct lov_tgt_desc *tgt;
2238                 struct obd_export *exp;
2239                 int rc = 0, err, i;
2240
2241                 lov_tgts_lock(lov);
2242                 tgt = lov->tgts;
2243                 for (i = 0; i < lov->desc.ld_tgt_count; i++, tgt++) {
2244                         exp = tgt->ltd_exp;
2245                         /* during setup time the connections to osc might
2246                          * haven't been established.
2247                          */
2248                         if (exp == NULL) {
2249                                 struct obd_device *tgt_obd;
2250
2251                                 tgt_obd = class_find_client_obd(&tgt->uuid,
2252                                                                 OBD_OSC_DEVICENAME,
2253                                                                 &obddev->obd_uuid);
2254                                 if (!tgt_obd) {
2255                                         CERROR("can't set security flavor, "
2256                                                "device %s not attached?\n",
2257                                                 tgt->uuid.uuid);
2258                                         rc = -EINVAL;
2259                                         continue;
2260                                 }
2261                                 exp = tgt_obd->obd_self_export;
2262                         }
2263
2264                         err = obd_set_info(exp, keylen, key, vallen, val);
2265                         if (!rc)
2266                                 rc = err;
2267                 }
2268                 lov_tgts_unlock(lov);
2269
2270                 RETURN(rc);
2271         } else if (KEY_IS("auditlog")) {
2272                 ptl_nid_t nid = 0;
2273                 struct audit_msg * msg = val;
2274                 int i = 0, len = sizeof(nid);
2275                 struct obd_export * ost_exp;
2276                 //try to find client nid
2277                 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
2278                         if (!lov->tgts[i].ltd_exp)
2279                                 continue;
2280                         rc = obd_get_info(lov->tgts[i].ltd_exp, 10,
2281                                           "client_nid", &len, &nid);
2282                         if (!rc)
2283                                 break;
2284                 }
2285                 
2286                 i = (__u32)nid % lov->desc.ld_tgt_count;
2287                 
2288                 CDEBUG(D_INFO, "Select OST %i for nid %.8x\n",i, (__u32)nid);
2289                 
2290                 ost_exp = lov->tgts[i].ltd_exp;
2291                 if (!ost_exp) {
2292                         CERROR("can't send auditlog data,"
2293                                "device %s is not attached?\n",
2294                                lov->tgts[i].uuid.uuid);
2295                         RETURN(-EFAULT);
2296                 }
2297                 msg->nid = nid;   
2298                 rc = obd_set_info(ost_exp, keylen, key, vallen, val);
2299                 
2300                 RETURN(rc);               
2301         } else if (KEY_IS("audit_obj")) {
2302                 struct audit_lov_msg * msg = val;
2303                 int i = 0, index;
2304                 struct obd_export * ost_exp;
2305                 struct lov_oinfo *loi;
2306                 struct obdo *oa = NULL;
2307                 
2308                 oa = obdo_alloc();
2309                 if (oa == NULL)
2310                         RETURN(-ENOMEM);
2311
2312                 //set audit for all objects of file
2313                 CDEBUG(D_INFO, "Set audit 0x%x for objects\n", (__u32)msg->mask);
2314                 //use o_fid to store audit mask
2315                 oa->o_fid = msg->mask;
2316                 oa->o_uid = msg->uid;
2317                 oa->o_gid = msg->gid;
2318                 //iterate over all objects and set audit for each
2319                 for (i = 0, loi = msg->lsm->lsm_oinfo;
2320                      i < msg->lsm->lsm_stripe_count; i++, loi++) {
2321                         index = loi->loi_ost_idx;
2322                         ost_exp = lov->tgts[index].ltd_exp;
2323                         if (!ost_exp) {
2324                                 CERROR("can't send audit_obj data,"
2325                                        "device %s is not attached?\n",
2326                                        lov->tgts[i].uuid.uuid);
2327                                 continue;
2328                         }
2329                         oa->o_id = loi->loi_id;
2330                         oa->o_gr = loi->loi_gr;
2331                         
2332                         obd_set_info(ost_exp, keylen, key, sizeof(*oa), oa);
2333                 }
2334
2335                 obdo_free(oa);
2336                 RETURN(0);
2337         } else if (KEY_IS("audit")) {
2338                 int i = 0;
2339                 struct obd_export * ost_exp;
2340
2341                 //set audit for whole fs on OSS
2342                 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
2343                         ost_exp = lov->tgts[i].ltd_exp;
2344                         if (!ost_exp) {
2345                                 CERROR("can't send audit_fs data,"
2346                                        "device %s is not attached?\n",
2347                                        lov->tgts[i].uuid.uuid);
2348                                 continue;
2349                         }
2350                         obd_set_info(ost_exp, keylen, key, vallen, val);
2351                 }
2352                 
2353                 RETURN(rc);           
2354         } else if (KEY_IS("flush_cred") || KEY_IS("crypto_cb") ||
2355                    KEY_IS("capa_key")) {
2356                 struct lov_tgt_desc *tgt;
2357                 int rc = 0, i;
2358
2359                 tgt = lov->tgts;
2360                 for (i = 0; i < lov->desc.ld_tgt_count; i++, tgt++) {
2361                         if (!lov_tgt_active(lov, tgt, 0))
2362                                 continue;
2363                         rc = obd_set_info(tgt->ltd_exp,
2364                                           keylen, key, vallen, val);
2365                         lov_tgt_decref(lov, tgt);
2366                         if (rc)
2367                                 RETURN(rc);
2368                 }
2369
2370                 RETURN(0);
2371         } else if (KEY_IS("setext")) {
2372                 struct lov_tgt_desc *tgt;
2373                 int rc = 0, i;
2374
2375                 for (i = 0, tgt = lov->tgts; i < lov->desc.ld_tgt_count;
2376                      i++, tgt++) {
2377                         if (!tgt->ltd_exp)
2378                                 continue;
2379                         rc = obd_set_info(tgt->ltd_exp,
2380                                           keylen, key, vallen, val);
2381                         if (rc)
2382                                 RETURN(rc);
2383                 }
2384
2385                 RETURN(0);
2386         } else {
2387                 RETURN(-EINVAL);
2388         }
2389
2390         tgt = lov->tgts;
2391         for (i = 0; i < lov->desc.ld_tgt_count; i++, tgt++) {
2392                 int active = 0;
2393
2394                 if (val) {
2395                         if (!obd_uuid_equals(val, &tgt->uuid))
2396                                 continue;
2397                 } else if (!lov_tgt_active(lov, tgt, 0)) {
2398                         continue;
2399                 } else {
2400                         active = 1;
2401                 }
2402
2403                 err = obd_set_info(tgt->ltd_exp, keylen, key, vallen, val);
2404                 if (!rc)
2405                         rc = err;
2406                 if (active)
2407                         lov_tgt_decref(lov, tgt);
2408         }
2409         RETURN(rc);
2410 #undef KEY_IS
2411 }
2412
2413 #if 0
2414 struct lov_multi_wait {
2415         struct ldlm_lock *lock;
2416         wait_queue_t      wait;
2417         int               completed;
2418         int               generation;
2419 };
2420
2421 int lov_complete_many(struct obd_export *exp, struct lov_stripe_md *lsm,
2422                       struct lustre_handle *lockh)
2423 {
2424         struct lov_lock_handles *lov_lockh = NULL;
2425         struct lustre_handle *lov_lockhp;
2426         struct lov_obd *lov;
2427         struct lov_oinfo *loi;
2428         struct lov_multi_wait *queues;
2429         int rc = 0, i;
2430         ENTRY;
2431
2432         if (lsm_bad_magic(lsm))
2433                 RETURN(-EINVAL);
2434
2435         if (!exp || !exp->exp_obd)
2436                 RETURN(-ENODEV);
2437
2438         LASSERT(lockh != NULL);
2439         if (lsm->lsm_stripe_count > 1) {
2440                 lov_lockh = lov_handle2llh(lockh);
2441                 if (lov_lockh == NULL) {
2442                         CERROR("LOV: invalid lov lock handle %p\n", lockh);
2443                         RETURN(-EINVAL);
2444                 }
2445
2446                 lov_lockhp = lov_lockh->llh_handles;
2447         } else {
2448                 lov_lockhp = lockh;
2449         }
2450
2451         OBD_ALLOC(queues, lsm->lsm_stripe_count * sizeof(*queues));
2452         if (queues == NULL)
2453                 GOTO(out, rc = -ENOMEM);
2454
2455         lov = &exp->exp_obd->u.lov;
2456         for (i = 0, loi = lsm->lsm_oinfo; i < lsm->lsm_stripe_count;
2457              i++, loi++, lov_lockhp++) {
2458                 struct ldlm_lock *lock;
2459                 struct obd_device *obd;
2460                 unsigned long irqflags;
2461
2462                 lock = ldlm_handle2lock(lov_lockhp);
2463                 if (lock == NULL) {
2464                         CDEBUG(D_HA, "lov idx %d subobj "LPX64" no lock?\n",
2465                                loi->loi_ost_idx, loi->loi_id);
2466                         queues[i].completed = 1;
2467                         continue;
2468                 }
2469
2470                 queues[i].lock = lock;
2471                 init_waitqueue_entry(&(queues[i].wait), current);
2472                 add_wait_queue(lock->l_waitq, &(queues[i].wait));
2473
2474                 obd = class_exp2obd(lock->l_conn_export);
2475                 if (obd != NULL)
2476                         imp = obd->u.cli.cl_import;
2477                 if (imp != NULL) {
2478                         spin_lock_irqsave(&imp->imp_lock, irqflags);
2479                         queues[i].generation = imp->imp_generation;
2480                         spin_unlock_irqrestore(&imp->imp_lock, irqflags);
2481                 }
2482         }
2483
2484         lwi = LWI_TIMEOUT_INTR(obd_timeout * HZ, ldlm_expired_completion_wait,
2485                                interrupted_completion_wait, &lwd);
2486         rc = l_wait_event_added(check_multi_complete(queues, lsm), &lwi);
2487
2488         for (i = 0; i < lsm->lsm_stripe_count; i++)
2489                 remove_wait_queue(lock->l_waitq, &(queues[i].wait));
2490
2491         if (rc == -EINTR || rc == -ETIMEDOUT) {
2492
2493
2494         }
2495
2496  out:
2497         if (lov_lockh != NULL)
2498                 lov_llh_put(lov_lockh);
2499         RETURN(rc);
2500 }
2501 #endif
2502
2503 struct obd_ops lov_obd_ops = {
2504         .o_owner               = THIS_MODULE,
2505         .o_attach              = lov_attach,
2506         .o_detach              = lov_detach,
2507         .o_setup               = lov_setup,
2508         .o_cleanup             = lov_cleanup,
2509         .o_process_config      = lov_process_config,
2510         .o_connect             = lov_connect,
2511         .o_disconnect          = lov_disconnect,
2512         .o_statfs              = lov_statfs,
2513         .o_packmd              = lov_packmd,
2514         .o_unpackmd            = lov_unpackmd,
2515         .o_revalidate_md       = lov_revalidate_md,
2516         .o_create              = lov_create,
2517         .o_destroy             = lov_destroy,
2518         .o_getattr             = lov_getattr,
2519         .o_getattr_async       = lov_getattr_async,
2520         .o_setattr             = lov_setattr,
2521         .o_brw                 = lov_brw,
2522         .o_brw_async           = lov_brw_async,
2523         .o_prep_async_page     = lov_prep_async_page,
2524         .o_queue_async_io      = lov_queue_async_io,
2525         .o_set_async_flags     = lov_set_async_flags,
2526         .o_queue_group_io      = lov_queue_group_io,
2527         .o_trigger_group_io    = lov_trigger_group_io,
2528         .o_teardown_async_page = lov_teardown_async_page,
2529         .o_adjust_kms          = lov_adjust_kms,
2530         .o_punch               = lov_punch,
2531         .o_sync                = lov_sync,
2532         .o_enqueue             = lov_enqueue,
2533         .o_match               = lov_match,
2534         .o_change_cbdata       = lov_change_cbdata,
2535         .o_cancel              = lov_cancel,
2536         .o_cancel_unused       = lov_cancel_unused,
2537         .o_iocontrol           = lov_iocontrol,
2538         .o_get_info            = lov_get_info,
2539         .o_set_info            = lov_set_info,
2540         .o_llog_init           = lov_llog_init,
2541         .o_llog_finish         = lov_llog_finish,
2542         .o_notify              = lov_notify,
2543 };
2544
2545 int __init lov_init(void)
2546 {
2547         struct lprocfs_static_vars lvars;
2548         int rc;
2549         ENTRY;
2550
2551         lprocfs_init_vars(lov, &lvars);
2552         rc = class_register_type(&lov_obd_ops, NULL, lvars.module_vars,
2553                                  OBD_LOV_DEVICENAME);
2554         RETURN(rc);
2555 }
2556
2557 #ifdef __KERNEL__
2558 static void /*__exit*/ lov_exit(void)
2559 {
2560         class_unregister_type(OBD_LOV_DEVICENAME);
2561 }
2562
2563 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
2564 MODULE_DESCRIPTION("Lustre Logical Object Volume OBD driver");
2565 MODULE_LICENSE("GPL");
2566
2567 module_init(lov_init);
2568 module_exit(lov_exit);
2569 #endif