Whamcloud - gitweb
211e04a7a9c24a3e385760f287dec11b69f4a767
[fs/lustre-release.git] / lustre / lov / lov_obd.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/lov/lov_obd.c
37  *
38  * Author: Phil Schwan <phil@clusterfs.com>
39  * Author: Peter Braam <braam@clusterfs.com>
40  * Author: Mike Shaver <shaver@clusterfs.com>
41  * Author: Nathan Rutman <nathan@clusterfs.com>
42  */
43
44 #ifndef EXPORT_SYMTAB
45 # define EXPORT_SYMTAB
46 #endif
47 #define DEBUG_SUBSYSTEM S_LOV
48 #ifdef __KERNEL__
49 #include <libcfs/libcfs.h>
50 #else
51 #include <liblustre.h>
52 #endif
53
54 #include <obd_support.h>
55 #include <lustre_lib.h>
56 #include <lustre_net.h>
57 #include <lustre/lustre_idl.h>
58 #include <lustre_dlm.h>
59 #include <lustre_mds.h>
60 #include <lustre_debug.h>
61 #include <obd_class.h>
62 #include <obd_lov.h>
63 #include <obd_ost.h>
64 #include <lprocfs_status.h>
65 #include <lustre_param.h>
66 #include <cl_object.h>
67 #include <lustre/ll_fiemap.h>
68
69 #include "lov_internal.h"
70
71 /* Keep a refcount of lov->tgt usage to prevent racing with addition/deletion.
72    Any function that expects lov_tgts to remain stationary must take a ref. */
73 static void lov_getref(struct obd_device *obd)
74 {
75         struct lov_obd *lov = &obd->u.lov;
76
77         /* nobody gets through here until lov_putref is done */
78         cfs_mutex_lock(&lov->lov_lock);
79         cfs_atomic_inc(&lov->lov_refcount);
80         cfs_mutex_unlock(&lov->lov_lock);
81         return;
82 }
83
84 static void __lov_del_obd(struct obd_device *obd, struct lov_tgt_desc *tgt);
85
86 static void lov_putref(struct obd_device *obd)
87 {
88         struct lov_obd *lov = &obd->u.lov;
89
90         cfs_mutex_lock(&lov->lov_lock);
91         /* ok to dec to 0 more than once -- ltd_exp's will be null */
92         if (cfs_atomic_dec_and_test(&lov->lov_refcount) && lov->lov_death_row) {
93                 CFS_LIST_HEAD(kill);
94                 int i;
95                 struct lov_tgt_desc *tgt, *n;
96                 CDEBUG(D_CONFIG, "destroying %d lov targets\n",
97                        lov->lov_death_row);
98                 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
99                         tgt = lov->lov_tgts[i];
100
101                         if (!tgt || !tgt->ltd_reap)
102                                 continue;
103                         cfs_list_add(&tgt->ltd_kill, &kill);
104                         /* XXX - right now there is a dependency on ld_tgt_count
105                          * being the maximum tgt index for computing the
106                          * mds_max_easize. So we can't shrink it. */
107                         lov_ost_pool_remove(&lov->lov_packed, i);
108                         lov->lov_tgts[i] = NULL;
109                         lov->lov_death_row--;
110                 }
111                 cfs_mutex_unlock(&lov->lov_lock);
112
113                 cfs_list_for_each_entry_safe(tgt, n, &kill, ltd_kill) {
114                         cfs_list_del(&tgt->ltd_kill);
115                         /* Disconnect */
116                         __lov_del_obd(obd, tgt);
117                 }
118         } else {
119                 cfs_mutex_unlock(&lov->lov_lock);
120         }
121 }
122
123 static int lov_set_osc_active(struct obd_device *obd, struct obd_uuid *uuid,
124                               enum obd_notify_event ev);
125 static int lov_notify(struct obd_device *obd, struct obd_device *watched,
126                       enum obd_notify_event ev, void *data);
127
128
129 #define MAX_STRING_SIZE 128
130 int lov_connect_obd(struct obd_device *obd, __u32 index, int activate,
131                     struct obd_connect_data *data)
132 {
133         struct lov_obd *lov = &obd->u.lov;
134         struct obd_uuid *tgt_uuid;
135         struct obd_device *tgt_obd;
136         static struct obd_uuid lov_osc_uuid = { "LOV_OSC_UUID" };
137         struct obd_import *imp;
138 #ifdef __KERNEL__
139         cfs_proc_dir_entry_t *lov_proc_dir;
140 #endif
141         int rc;
142         ENTRY;
143
144         if (!lov->lov_tgts[index])
145                 RETURN(-EINVAL);
146
147         tgt_uuid = &lov->lov_tgts[index]->ltd_uuid;
148         tgt_obd = lov->lov_tgts[index]->ltd_obd;
149
150         if (!tgt_obd->obd_set_up) {
151                 CERROR("Target %s not set up\n", obd_uuid2str(tgt_uuid));
152                 RETURN(-EINVAL);
153         }
154
155         /* override the sp_me from lov */
156         tgt_obd->u.cli.cl_sp_me = lov->lov_sp_me;
157
158         if (data && (data->ocd_connect_flags & OBD_CONNECT_INDEX))
159                 data->ocd_index = index;
160
161         /*
162          * Divine LOV knows that OBDs under it are OSCs.
163          */
164         imp = tgt_obd->u.cli.cl_import;
165
166         if (activate) {
167                 tgt_obd->obd_no_recov = 0;
168                 /* FIXME this is probably supposed to be
169                    ptlrpc_set_import_active.  Horrible naming. */
170                 ptlrpc_activate_import(imp);
171         }
172
173         rc = obd_register_observer(tgt_obd, obd);
174         if (rc) {
175                 CERROR("Target %s register_observer error %d\n",
176                        obd_uuid2str(tgt_uuid), rc);
177                 RETURN(rc);
178         }
179
180
181         if (imp->imp_invalid) {
182                 CDEBUG(D_CONFIG, "not connecting OSC %s; administratively "
183                        "disabled\n", obd_uuid2str(tgt_uuid));
184                 RETURN(0);
185         }
186
187         rc = obd_connect(NULL, &lov->lov_tgts[index]->ltd_exp, tgt_obd,
188                          &lov_osc_uuid, data, NULL);
189         if (rc || !lov->lov_tgts[index]->ltd_exp) {
190                 CERROR("Target %s connect error %d\n",
191                        obd_uuid2str(tgt_uuid), rc);
192                 RETURN(-ENODEV);
193         }
194
195         lov->lov_tgts[index]->ltd_reap = 0;
196
197         CDEBUG(D_CONFIG, "Connected tgt idx %d %s (%s) %sactive\n", index,
198                obd_uuid2str(tgt_uuid), tgt_obd->obd_name, activate ? "":"in");
199
200 #ifdef __KERNEL__
201         lov_proc_dir = lprocfs_srch(obd->obd_proc_entry, "target_obds");
202         if (lov_proc_dir) {
203                 struct obd_device *osc_obd = lov->lov_tgts[index]->ltd_exp->exp_obd;
204                 cfs_proc_dir_entry_t *osc_symlink;
205
206                 LASSERT(osc_obd != NULL);
207                 LASSERT(osc_obd->obd_magic == OBD_DEVICE_MAGIC);
208                 LASSERT(osc_obd->obd_type->typ_name != NULL);
209
210                 osc_symlink = lprocfs_add_symlink(osc_obd->obd_name,
211                                                   lov_proc_dir,
212                                                   "../../../%s/%s",
213                                                   osc_obd->obd_type->typ_name,
214                                                   osc_obd->obd_name);
215                 if (osc_symlink == NULL) {
216                         CERROR("could not register LOV target "
217                                 "/proc/fs/lustre/%s/%s/target_obds/%s.",
218                                 obd->obd_type->typ_name, obd->obd_name,
219                                 osc_obd->obd_name);
220                         lprocfs_remove(&lov_proc_dir);
221                 }
222         }
223 #endif
224
225         rc = qos_add_tgt(obd, index);
226         if (rc)
227                 CERROR("qos_add_tgt failed %d\n", rc);
228
229         RETURN(0);
230 }
231
232 static int lov_connect(const struct lu_env *env,
233                        struct obd_export **exp, struct obd_device *obd,
234                        struct obd_uuid *cluuid, struct obd_connect_data *data,
235                        void *localdata)
236 {
237         struct lov_obd *lov = &obd->u.lov;
238         struct lov_tgt_desc *tgt;
239         struct lustre_handle conn;
240         int i, rc;
241         ENTRY;
242
243         CDEBUG(D_CONFIG, "connect #%d\n", lov->lov_connects);
244
245         rc = class_connect(&conn, obd, cluuid);
246         if (rc)
247                 RETURN(rc);
248
249         *exp = class_conn2export(&conn);
250
251         /* Why should there ever be more than 1 connect? */
252         lov->lov_connects++;
253         LASSERT(lov->lov_connects == 1);
254
255         memset(&lov->lov_ocd, 0, sizeof(lov->lov_ocd));
256         if (data)
257                 lov->lov_ocd = *data;
258
259         obd_getref(obd);
260         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
261                 tgt = lov->lov_tgts[i];
262                 if (!tgt || obd_uuid_empty(&tgt->ltd_uuid))
263                         continue;
264                 /* Flags will be lowest common denominator */
265                 rc = lov_connect_obd(obd, i, tgt->ltd_activate, &lov->lov_ocd);
266                 if (rc) {
267                         CERROR("%s: lov connect tgt %d failed: %d\n",
268                                obd->obd_name, i, rc);
269                         continue;
270                 }
271                 /* connect to administrative disabled ost */
272                 if (!lov->lov_tgts[i]->ltd_exp)
273                         continue;
274
275                 rc = lov_notify(obd, lov->lov_tgts[i]->ltd_exp->exp_obd,
276                                 OBD_NOTIFY_CONNECT, (void *)&i);
277                 if (rc) {
278                         CERROR("%s error sending notify %d\n",
279                                obd->obd_name, rc);
280                 }
281         }
282         obd_putref(obd);
283
284         RETURN(0);
285 }
286
287 static int lov_disconnect_obd(struct obd_device *obd, struct lov_tgt_desc *tgt)
288 {
289         cfs_proc_dir_entry_t *lov_proc_dir;
290         struct lov_obd *lov = &obd->u.lov;
291         struct obd_device *osc_obd;
292         int rc;
293         ENTRY;
294
295         osc_obd = class_exp2obd(tgt->ltd_exp);
296         CDEBUG(D_CONFIG, "%s: disconnecting target %s\n",
297                obd->obd_name, osc_obd->obd_name);
298
299         if (tgt->ltd_active) {
300                 tgt->ltd_active = 0;
301                 lov->desc.ld_active_tgt_count--;
302                 tgt->ltd_exp->exp_obd->obd_inactive = 1;
303         }
304
305         lov_proc_dir = lprocfs_srch(obd->obd_proc_entry, "target_obds");
306         if (lov_proc_dir) {
307                 cfs_proc_dir_entry_t *osc_symlink;
308
309                 osc_symlink = lprocfs_srch(lov_proc_dir, osc_obd->obd_name);
310                 if (osc_symlink) {
311                         lprocfs_remove(&osc_symlink);
312                 } else {
313                         CERROR("/proc/fs/lustre/%s/%s/target_obds/%s missing.",
314                                obd->obd_type->typ_name, obd->obd_name,
315                                osc_obd->obd_name);
316                 }
317         }
318
319         if (osc_obd) {
320                 /* Pass it on to our clients.
321                  * XXX This should be an argument to disconnect,
322                  * XXX not a back-door flag on the OBD.  Ah well.
323                  */
324                 osc_obd->obd_force = obd->obd_force;
325                 osc_obd->obd_fail = obd->obd_fail;
326                 osc_obd->obd_no_recov = obd->obd_no_recov;
327         }
328
329         obd_register_observer(osc_obd, NULL);
330
331         rc = obd_disconnect(tgt->ltd_exp);
332         if (rc) {
333                 CERROR("Target %s disconnect error %d\n",
334                        tgt->ltd_uuid.uuid, rc);
335                 rc = 0;
336         }
337
338         qos_del_tgt(obd, tgt);
339
340         tgt->ltd_exp = NULL;
341         RETURN(0);
342 }
343
344 static int lov_disconnect(struct obd_export *exp)
345 {
346         struct obd_device *obd = class_exp2obd(exp);
347         struct lov_obd *lov = &obd->u.lov;
348         int i, rc;
349         ENTRY;
350
351         if (!lov->lov_tgts)
352                 goto out;
353
354         /* Only disconnect the underlying layers on the final disconnect. */
355         lov->lov_connects--;
356         if (lov->lov_connects != 0) {
357                 /* why should there be more than 1 connect? */
358                 CERROR("disconnect #%d\n", lov->lov_connects);
359                 goto out;
360         }
361
362         /* Let's hold another reference so lov_del_obd doesn't spin through
363            putref every time */
364         obd_getref(obd);
365
366         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
367                 if (lov->lov_tgts[i] && lov->lov_tgts[i]->ltd_exp) {
368                         /* Disconnection is the last we know about an obd */
369                         lov_del_target(obd, i, 0, lov->lov_tgts[i]->ltd_gen);
370                 }
371         }
372         obd_putref(obd);
373
374 out:
375         rc = class_disconnect(exp); /* bz 9811 */
376         RETURN(rc);
377 }
378
379 /* Error codes:
380  *
381  *  -EINVAL  : UUID can't be found in the LOV's target list
382  *  -ENOTCONN: The UUID is found, but the target connection is bad (!)
383  *  -EBADF   : The UUID is found, but the OBD is the wrong type (!)
384  *  any >= 0 : is log target index
385  */
386 static int lov_set_osc_active(struct obd_device *obd, struct obd_uuid *uuid,
387                               enum obd_notify_event ev)
388 {
389         struct lov_obd *lov = &obd->u.lov;
390         struct lov_tgt_desc *tgt;
391         int index, activate, active;
392         ENTRY;
393
394         CDEBUG(D_INFO, "Searching in lov %p for uuid %s event(%d)\n",
395                lov, uuid->uuid, ev);
396
397         obd_getref(obd);
398         for (index = 0; index < lov->desc.ld_tgt_count; index++) {
399                 tgt = lov->lov_tgts[index];
400                 if (!tgt || !tgt->ltd_exp)
401                         continue;
402
403                 CDEBUG(D_INFO, "lov idx %d is %s conn "LPX64"\n",
404                        index, obd_uuid2str(&tgt->ltd_uuid),
405                        tgt->ltd_exp->exp_handle.h_cookie);
406                 if (obd_uuid_equals(uuid, &tgt->ltd_uuid))
407                         break;
408         }
409
410         if (index == lov->desc.ld_tgt_count)
411                 GOTO(out, index = -EINVAL);
412
413         if (ev == OBD_NOTIFY_DEACTIVATE || ev == OBD_NOTIFY_ACTIVATE) {
414                 activate = (ev == OBD_NOTIFY_ACTIVATE) ? 1 : 0;
415
416                 if (lov->lov_tgts[index]->ltd_activate == activate) {
417                         CDEBUG(D_INFO, "OSC %s already %sactivate!\n",
418                                uuid->uuid, activate ? "" : "de");
419                 } else {
420                         lov->lov_tgts[index]->ltd_activate = activate;
421                         CDEBUG(D_CONFIG, "%sactivate OSC %s\n",
422                                activate ? "" : "de", obd_uuid2str(uuid));
423                 }
424
425         } else if (ev == OBD_NOTIFY_INACTIVE || ev == OBD_NOTIFY_ACTIVE) {
426                 active = (ev == OBD_NOTIFY_ACTIVE) ? 1 : 0;
427
428                 if (lov->lov_tgts[index]->ltd_active == active) {
429                         CDEBUG(D_INFO, "OSC %s already %sactive!\n",
430                                uuid->uuid, active ? "" : "in");
431                         GOTO(out, index);
432                 } else {
433                         CDEBUG(D_CONFIG, "Marking OSC %s %sactive\n",
434                                obd_uuid2str(uuid), active ? "" : "in");
435                 }
436
437                 lov->lov_tgts[index]->ltd_active = active;
438                 if (active) {
439                         lov->desc.ld_active_tgt_count++;
440                         lov->lov_tgts[index]->ltd_exp->exp_obd->obd_inactive = 0;
441                 } else {
442                         lov->desc.ld_active_tgt_count--;
443                         lov->lov_tgts[index]->ltd_exp->exp_obd->obd_inactive = 1;
444                 }
445                 /* remove any old qos penalty */
446                 lov->lov_tgts[index]->ltd_qos.ltq_penalty = 0;
447         } else {
448                 CERROR("Unknown event(%d) for uuid %s", ev, uuid->uuid);
449         }
450
451  out:
452         obd_putref(obd);
453         RETURN(index);
454 }
455
456 static int lov_notify(struct obd_device *obd, struct obd_device *watched,
457                       enum obd_notify_event ev, void *data)
458 {
459         int rc = 0;
460         ENTRY;
461
462         if (ev == OBD_NOTIFY_ACTIVE || ev == OBD_NOTIFY_INACTIVE ||
463             ev == OBD_NOTIFY_ACTIVATE || ev == OBD_NOTIFY_DEACTIVATE) {
464                 struct obd_uuid *uuid;
465
466                 LASSERT(watched);
467
468                 if (strcmp(watched->obd_type->typ_name, LUSTRE_OSC_NAME)) {
469                         CERROR("unexpected notification of %s %s!\n",
470                                watched->obd_type->typ_name,
471                                watched->obd_name);
472                         RETURN(-EINVAL);
473                 }
474                 uuid = &watched->u.cli.cl_target_uuid;
475
476                 /* Set OSC as active before notifying the observer, so the
477                  * observer can use the OSC normally.
478                  */
479                 rc = lov_set_osc_active(obd, uuid, ev);
480                 if (rc < 0) {
481                         CERROR("event(%d) of %s failed: %d\n", ev,
482                                obd_uuid2str(uuid), rc);
483                         RETURN(rc);
484                 }
485                 /* active event should be pass lov target index as data */
486                 data = &rc;
487         }
488
489         /* Pass the notification up the chain. */
490         if (watched) {
491                 rc = obd_notify_observer(obd, watched, ev, data);
492         } else {
493                 /* NULL watched means all osc's in the lov (only for syncs) */
494                 /* sync event should be send lov idx as data */
495                 struct lov_obd *lov = &obd->u.lov;
496                 int i, is_sync;
497
498                 data = &i;
499                 is_sync = (ev == OBD_NOTIFY_SYNC) ||
500                           (ev == OBD_NOTIFY_SYNC_NONBLOCK);
501
502                 obd_getref(obd);
503                 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
504                         if (!lov->lov_tgts[i])
505                                 continue;
506
507                         /* don't send sync event if target not
508                          * connected/activated */
509                         if (is_sync &&  !lov->lov_tgts[i]->ltd_active)
510                                 continue;
511
512                         rc = obd_notify_observer(obd, lov->lov_tgts[i]->ltd_obd,
513                                                  ev, data);
514                         if (rc) {
515                                 CERROR("%s: notify %s of %s failed %d\n",
516                                        obd->obd_name,
517                                        obd->obd_observer->obd_name,
518                                        lov->lov_tgts[i]->ltd_obd->obd_name,
519                                        rc);
520                         }
521                 }
522                 obd_putref(obd);
523         }
524
525         RETURN(rc);
526 }
527
528 static int lov_add_target(struct obd_device *obd, struct obd_uuid *uuidp,
529                           __u32 index, int gen, int active)
530 {
531         struct lov_obd *lov = &obd->u.lov;
532         struct lov_tgt_desc *tgt;
533         struct obd_device *tgt_obd;
534         int rc;
535         ENTRY;
536
537         CDEBUG(D_CONFIG, "uuid:%s idx:%d gen:%d active:%d\n",
538                uuidp->uuid, index, gen, active);
539
540         if (gen <= 0) {
541                 CERROR("request to add OBD %s with invalid generation: %d\n",
542                        uuidp->uuid, gen);
543                 RETURN(-EINVAL);
544         }
545
546         tgt_obd = class_find_client_obd(uuidp, LUSTRE_OSC_NAME,
547                                         &obd->obd_uuid);
548         if (tgt_obd == NULL)
549                 RETURN(-EINVAL);
550
551         cfs_mutex_lock(&lov->lov_lock);
552
553         if ((index < lov->lov_tgt_size) && (lov->lov_tgts[index] != NULL)) {
554                 tgt = lov->lov_tgts[index];
555                 CERROR("UUID %s already assigned at LOV target index %d\n",
556                        obd_uuid2str(&tgt->ltd_uuid), index);
557                 cfs_mutex_unlock(&lov->lov_lock);
558                 RETURN(-EEXIST);
559         }
560
561         if (index >= lov->lov_tgt_size) {
562                 /* We need to reallocate the lov target array. */
563                 struct lov_tgt_desc **newtgts, **old = NULL;
564                 __u32 newsize, oldsize = 0;
565
566                 newsize = max(lov->lov_tgt_size, (__u32)2);
567                 while (newsize < index + 1)
568                         newsize = newsize << 1;
569                 OBD_ALLOC(newtgts, sizeof(*newtgts) * newsize);
570                 if (newtgts == NULL) {
571                         cfs_mutex_unlock(&lov->lov_lock);
572                         RETURN(-ENOMEM);
573                 }
574
575                 if (lov->lov_tgt_size) {
576                         memcpy(newtgts, lov->lov_tgts, sizeof(*newtgts) *
577                                lov->lov_tgt_size);
578                         old = lov->lov_tgts;
579                         oldsize = lov->lov_tgt_size;
580                 }
581
582                 lov->lov_tgts = newtgts;
583                 lov->lov_tgt_size = newsize;
584 #ifdef __KERNEL__
585                 smp_rmb();
586 #endif
587                 if (old)
588                         OBD_FREE(old, sizeof(*old) * oldsize);
589
590                 CDEBUG(D_CONFIG, "tgts: %p size: %d\n",
591                        lov->lov_tgts, lov->lov_tgt_size);
592         }
593
594         OBD_ALLOC_PTR(tgt);
595         if (!tgt) {
596                 cfs_mutex_unlock(&lov->lov_lock);
597                 RETURN(-ENOMEM);
598         }
599
600         rc = lov_ost_pool_add(&lov->lov_packed, index, lov->lov_tgt_size);
601         if (rc) {
602                 cfs_mutex_unlock(&lov->lov_lock);
603                 OBD_FREE_PTR(tgt);
604                 RETURN(rc);
605         }
606
607         tgt->ltd_uuid = *uuidp;
608         tgt->ltd_obd = tgt_obd;
609         /* XXX - add a sanity check on the generation number. */
610         tgt->ltd_gen = gen;
611         tgt->ltd_index = index;
612         tgt->ltd_activate = active;
613         lov->lov_tgts[index] = tgt;
614         if (index >= lov->desc.ld_tgt_count)
615                 lov->desc.ld_tgt_count = index + 1;
616
617         cfs_mutex_unlock(&lov->lov_lock);
618
619         CDEBUG(D_CONFIG, "idx=%d ltd_gen=%d ld_tgt_count=%d\n",
620                 index, tgt->ltd_gen, lov->desc.ld_tgt_count);
621
622         rc = obd_notify(obd, tgt_obd, OBD_NOTIFY_CREATE, &index);
623
624         if (lov->lov_connects == 0) {
625                 /* lov_connect hasn't been called yet. We'll do the
626                    lov_connect_obd on this target when that fn first runs,
627                    because we don't know the connect flags yet. */
628                 RETURN(0);
629         }
630
631         obd_getref(obd);
632
633         rc = lov_connect_obd(obd, index, active, &lov->lov_ocd);
634         if (rc)
635                 GOTO(out, rc);
636
637         /* connect to administrative disabled ost */
638         if (!tgt->ltd_exp)
639                 GOTO(out, rc = 0);
640
641         rc = lov_notify(obd, tgt->ltd_exp->exp_obd,
642                         active ? OBD_NOTIFY_CONNECT : OBD_NOTIFY_INACTIVE,
643                         (void *)&index);
644
645 out:
646         if (rc) {
647                 CERROR("add failed (%d), deleting %s\n", rc,
648                        obd_uuid2str(&tgt->ltd_uuid));
649                 lov_del_target(obd, index, 0, 0);
650         }
651         obd_putref(obd);
652         RETURN(rc);
653 }
654
655 /* Schedule a target for deletion */
656 int lov_del_target(struct obd_device *obd, __u32 index,
657                    struct obd_uuid *uuidp, int gen)
658 {
659         struct lov_obd *lov = &obd->u.lov;
660         int count = lov->desc.ld_tgt_count;
661         int rc = 0;
662         ENTRY;
663
664         if (index >= count) {
665                 CERROR("LOV target index %d >= number of LOV OBDs %d.\n",
666                        index, count);
667                 RETURN(-EINVAL);
668         }
669
670         obd_getref(obd);
671
672         if (!lov->lov_tgts[index]) {
673                 CERROR("LOV target at index %d is not setup.\n", index);
674                 GOTO(out, rc = -EINVAL);
675         }
676
677         if (uuidp && !obd_uuid_equals(uuidp, &lov->lov_tgts[index]->ltd_uuid)) {
678                 CERROR("LOV target UUID %s at index %d doesn't match %s.\n",
679                        lov_uuid2str(lov, index), index,
680                        obd_uuid2str(uuidp));
681                 GOTO(out, rc = -EINVAL);
682         }
683
684         CDEBUG(D_CONFIG, "uuid: %s idx: %d gen: %d exp: %p active: %d\n",
685                lov_uuid2str(lov, index), index,
686                lov->lov_tgts[index]->ltd_gen, lov->lov_tgts[index]->ltd_exp,
687                lov->lov_tgts[index]->ltd_active);
688
689         lov->lov_tgts[index]->ltd_reap = 1;
690         lov->lov_death_row++;
691         /* we really delete it from obd_putref */
692 out:
693         obd_putref(obd);
694
695         RETURN(rc);
696 }
697
698 static void __lov_del_obd(struct obd_device *obd, struct lov_tgt_desc *tgt)
699 {
700         struct obd_device *osc_obd;
701
702         LASSERT(tgt);
703         LASSERT(tgt->ltd_reap);
704
705         osc_obd = class_exp2obd(tgt->ltd_exp);
706
707         CDEBUG(D_CONFIG, "Removing tgt %s : %s\n",
708                tgt->ltd_uuid.uuid,
709                osc_obd ? osc_obd->obd_name : "<no obd>");
710
711         if (tgt->ltd_exp)
712                 lov_disconnect_obd(obd, tgt);
713
714         OBD_FREE_PTR(tgt);
715
716         /* Manual cleanup - no cleanup logs to clean up the osc's.  We must
717            do it ourselves. And we can't do it from lov_cleanup,
718            because we just lost our only reference to it. */
719         if (osc_obd)
720                 class_manual_cleanup(osc_obd);
721 }
722
723 void lov_fix_desc_stripe_size(__u64 *val)
724 {
725         if (*val < PTLRPC_MAX_BRW_SIZE) {
726                 LCONSOLE_WARN("Increasing default stripe size to min %u\n",
727                               PTLRPC_MAX_BRW_SIZE);
728                 *val = PTLRPC_MAX_BRW_SIZE;
729         } else if (*val & (LOV_MIN_STRIPE_SIZE - 1)) {
730                 *val &= ~(LOV_MIN_STRIPE_SIZE - 1);
731                 LCONSOLE_WARN("Changing default stripe size to "LPU64" (a "
732                               "multiple of %u)\n",
733                               *val, LOV_MIN_STRIPE_SIZE);
734         }
735 }
736
737 void lov_fix_desc_stripe_count(__u32 *val)
738 {
739         if (*val == 0)
740                 *val = 1;
741 }
742
743 void lov_fix_desc_pattern(__u32 *val)
744 {
745         /* from lov_setstripe */
746         if ((*val != 0) && (*val != LOV_PATTERN_RAID0)) {
747                 LCONSOLE_WARN("Unknown stripe pattern: %#x\n", *val);
748                 *val = 0;
749         }
750 }
751
752 void lov_fix_desc_qos_maxage(__u32 *val)
753 {
754         /* fix qos_maxage */
755         if (*val == 0)
756                 *val = QOS_DEFAULT_MAXAGE;
757 }
758
759 void lov_fix_desc(struct lov_desc *desc)
760 {
761         lov_fix_desc_stripe_size(&desc->ld_default_stripe_size);
762         lov_fix_desc_stripe_count(&desc->ld_default_stripe_count);
763         lov_fix_desc_pattern(&desc->ld_pattern);
764         lov_fix_desc_qos_maxage(&desc->ld_qos_maxage);
765 }
766
767 int lov_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
768 {
769         struct lprocfs_static_vars lvars = { 0 };
770         struct lov_desc *desc;
771         struct lov_obd *lov = &obd->u.lov;
772         int rc;
773         ENTRY;
774
775         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
776                 CERROR("LOV setup requires a descriptor\n");
777                 RETURN(-EINVAL);
778         }
779
780         desc = (struct lov_desc *)lustre_cfg_buf(lcfg, 1);
781
782         if (sizeof(*desc) > LUSTRE_CFG_BUFLEN(lcfg, 1)) {
783                 CERROR("descriptor size wrong: %d > %d\n",
784                        (int)sizeof(*desc), LUSTRE_CFG_BUFLEN(lcfg, 1));
785                 RETURN(-EINVAL);
786         }
787
788         if (desc->ld_magic != LOV_DESC_MAGIC) {
789                 if (desc->ld_magic == __swab32(LOV_DESC_MAGIC)) {
790                             CDEBUG(D_OTHER, "%s: Swabbing lov desc %p\n",
791                                    obd->obd_name, desc);
792                             lustre_swab_lov_desc(desc);
793                 } else {
794                         CERROR("%s: Bad lov desc magic: %#x\n",
795                                obd->obd_name, desc->ld_magic);
796                         RETURN(-EINVAL);
797                 }
798         }
799
800         lov_fix_desc(desc);
801
802         desc->ld_active_tgt_count = 0;
803         lov->desc = *desc;
804         lov->lov_tgt_size = 0;
805
806         cfs_mutex_init(&lov->lov_lock);
807         cfs_atomic_set(&lov->lov_refcount, 0);
808         CFS_INIT_LIST_HEAD(&lov->lov_qos.lq_oss_list);
809         cfs_init_rwsem(&lov->lov_qos.lq_rw_sem);
810         lov->lov_sp_me = LUSTRE_SP_CLI;
811         lov->lov_qos.lq_dirty = 1;
812         lov->lov_qos.lq_rr.lqr_dirty = 1;
813         lov->lov_qos.lq_reset = 1;
814         /* Default priority is toward free space balance */
815         lov->lov_qos.lq_prio_free = 232;
816         /* Default threshold for rr (roughly 17%) */
817         lov->lov_qos.lq_threshold_rr = 43;
818         /* Init statfs fields */
819         OBD_ALLOC_PTR(lov->lov_qos.lq_statfs_data);
820         if (NULL == lov->lov_qos.lq_statfs_data)
821                 RETURN(-ENOMEM);
822         cfs_waitq_init(&lov->lov_qos.lq_statfs_waitq);
823
824         lov->lov_pools_hash_body = cfs_hash_create("POOLS", HASH_POOLS_CUR_BITS,
825                                                    HASH_POOLS_MAX_BITS,
826                                                    HASH_POOLS_BKT_BITS, 0,
827                                                    CFS_HASH_MIN_THETA,
828                                                    CFS_HASH_MAX_THETA,
829                                                    &pool_hash_operations,
830                                                    CFS_HASH_DEFAULT);
831         CFS_INIT_LIST_HEAD(&lov->lov_pool_list);
832         lov->lov_pool_count = 0;
833         rc = lov_ost_pool_init(&lov->lov_packed, 0);
834         if (rc)
835                 GOTO(out_free_statfs, rc);
836         rc = lov_ost_pool_init(&lov->lov_qos.lq_rr.lqr_pool, 0);
837         if (rc)
838                 GOTO(out_free_lov_packed, rc);
839
840         lprocfs_lov_init_vars(&lvars);
841         lprocfs_obd_setup(obd, lvars.obd_vars);
842 #ifdef LPROCFS
843         {
844                 int rc;
845
846                 rc = lprocfs_seq_create(obd->obd_proc_entry, "target_obd",
847                                         0444, &lov_proc_target_fops, obd);
848                 if (rc)
849                         CWARN("Error adding the target_obd file\n");
850         }
851 #endif
852         lov->lov_pool_proc_entry = lprocfs_register("pools",
853                                                     obd->obd_proc_entry,
854                                                     NULL, NULL);
855
856         RETURN(0);
857
858 out_free_lov_packed:
859         lov_ost_pool_free(&lov->lov_packed);
860 out_free_statfs:
861         OBD_FREE_PTR(lov->lov_qos.lq_statfs_data);
862         return rc;
863 }
864
865 static int lov_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
866 {
867         int rc = 0;
868         struct lov_obd *lov = &obd->u.lov;
869
870         ENTRY;
871
872         switch (stage) {
873         case OBD_CLEANUP_EARLY: {
874                 int i;
875                 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
876                         if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_active)
877                                 continue;
878                         obd_precleanup(class_exp2obd(lov->lov_tgts[i]->ltd_exp),
879                                        OBD_CLEANUP_EARLY);
880                 }
881                 break;
882         }
883         case OBD_CLEANUP_EXPORTS:
884                 lprocfs_obd_cleanup(obd);
885                 rc = obd_llog_finish(obd, 0);
886                 if (rc != 0)
887                         CERROR("failed to cleanup llogging subsystems\n");
888                 break;
889         }
890         RETURN(rc);
891 }
892
893 static int lov_cleanup(struct obd_device *obd)
894 {
895         struct lov_obd *lov = &obd->u.lov;
896         cfs_list_t *pos, *tmp;
897         struct pool_desc *pool;
898         ENTRY;
899
900         cfs_list_for_each_safe(pos, tmp, &lov->lov_pool_list) {
901                 pool = cfs_list_entry(pos, struct pool_desc, pool_list);
902                 /* free pool structs */
903                 CDEBUG(D_INFO, "delete pool %p\n", pool);
904                 lov_pool_del(obd, pool->pool_name);
905         }
906         cfs_hash_putref(lov->lov_pools_hash_body);
907         lov_ost_pool_free(&(lov->lov_qos.lq_rr.lqr_pool));
908         lov_ost_pool_free(&lov->lov_packed);
909
910         if (lov->lov_tgts) {
911                 int i;
912                 obd_getref(obd);
913                 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
914                         if (!lov->lov_tgts[i])
915                                 continue;
916
917                         /* Inactive targets may never have connected */
918                         if (lov->lov_tgts[i]->ltd_active ||
919                             cfs_atomic_read(&lov->lov_refcount))
920                             /* We should never get here - these
921                                should have been removed in the
922                              disconnect. */
923                                 CERROR("lov tgt %d not cleaned!"
924                                        " deathrow=%d, lovrc=%d\n",
925                                        i, lov->lov_death_row,
926                                        cfs_atomic_read(&lov->lov_refcount));
927                         lov_del_target(obd, i, 0, 0);
928                 }
929                 obd_putref(obd);
930                 OBD_FREE(lov->lov_tgts, sizeof(*lov->lov_tgts) *
931                          lov->lov_tgt_size);
932                 lov->lov_tgt_size = 0;
933         }
934         OBD_FREE_PTR(lov->lov_qos.lq_statfs_data);
935         RETURN(0);
936 }
937
938 int lov_process_config_base(struct obd_device *obd, struct lustre_cfg *lcfg,
939                             __u32 *indexp, int *genp)
940 {
941         struct obd_uuid obd_uuid;
942         int cmd;
943         int rc = 0;
944         ENTRY;
945
946         switch(cmd = lcfg->lcfg_command) {
947         case LCFG_LOV_ADD_OBD:
948         case LCFG_LOV_ADD_INA:
949         case LCFG_LOV_DEL_OBD: {
950                 __u32 index;
951                 int gen;
952                 /* lov_modify_tgts add  0:lov_mdsA  1:ost1_UUID  2:0  3:1 */
953                 if (LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(obd_uuid.uuid))
954                         GOTO(out, rc = -EINVAL);
955
956                 obd_str2uuid(&obd_uuid,  lustre_cfg_buf(lcfg, 1));
957
958                 if (sscanf(lustre_cfg_buf(lcfg, 2), "%d", indexp) != 1)
959                         GOTO(out, rc = -EINVAL);
960                 if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", genp) != 1)
961                         GOTO(out, rc = -EINVAL);
962                 index = *indexp;
963                 gen = *genp;
964                 if (cmd == LCFG_LOV_ADD_OBD)
965                         rc = lov_add_target(obd, &obd_uuid, index, gen, 1);
966                 else if (cmd == LCFG_LOV_ADD_INA)
967                         rc = lov_add_target(obd, &obd_uuid, index, gen, 0);
968                 else
969                         rc = lov_del_target(obd, index, &obd_uuid, gen);
970                 GOTO(out, rc);
971         }
972         case LCFG_PARAM: {
973                 struct lprocfs_static_vars lvars = { 0 };
974                 struct lov_desc *desc = &(obd->u.lov.desc);
975
976                 if (!desc)
977                         GOTO(out, rc = -EINVAL);
978
979                 lprocfs_lov_init_vars(&lvars);
980
981                 rc = class_process_proc_param(PARAM_LOV, lvars.obd_vars,
982                                               lcfg, obd);
983                 if (rc > 0)
984                         rc = 0;
985                 GOTO(out, rc);
986         }
987         case LCFG_POOL_NEW:
988         case LCFG_POOL_ADD:
989         case LCFG_POOL_DEL:
990         case LCFG_POOL_REM:
991                 GOTO(out, rc);
992
993         default: {
994                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
995                 GOTO(out, rc = -EINVAL);
996
997         }
998         }
999 out:
1000         RETURN(rc);
1001 }
1002
1003 #ifndef log2
1004 #define log2(n) cfs_ffz(~(n))
1005 #endif
1006
1007 static int lov_clear_orphans(struct obd_export *export, struct obdo *src_oa,
1008                              struct lov_stripe_md **ea,
1009                              struct obd_trans_info *oti)
1010 {
1011         struct lov_obd *lov;
1012         struct obdo *tmp_oa;
1013         struct obd_uuid *ost_uuid = NULL;
1014         int rc = 0, i;
1015         ENTRY;
1016
1017         LASSERT(src_oa->o_valid & OBD_MD_FLFLAGS &&
1018                 src_oa->o_flags == OBD_FL_DELORPHAN);
1019
1020         lov = &export->exp_obd->u.lov;
1021
1022         OBDO_ALLOC(tmp_oa);
1023         if (tmp_oa == NULL)
1024                 RETURN(-ENOMEM);
1025
1026         if (oti->oti_ost_uuid) {
1027                 ost_uuid = oti->oti_ost_uuid;
1028                 CDEBUG(D_HA, "clearing orphans only for %s\n",
1029                        ost_uuid->uuid);
1030         }
1031
1032         obd_getref(export->exp_obd);
1033         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
1034                 struct lov_stripe_md obj_md;
1035                 struct lov_stripe_md *obj_mdp = &obj_md;
1036                 struct lov_tgt_desc *tgt;
1037                 int err;
1038
1039                 tgt = lov->lov_tgts[i];
1040                 if (!tgt)
1041                         continue;
1042
1043                 /* if called for a specific target, we don't
1044                    care if it is not active. */
1045                 if (!lov->lov_tgts[i]->ltd_active && ost_uuid == NULL) {
1046                         CDEBUG(D_HA, "lov idx %d inactive\n", i);
1047                         continue;
1048                 }
1049
1050                 if (ost_uuid && !obd_uuid_equals(ost_uuid, &tgt->ltd_uuid))
1051                         continue;
1052
1053                 CDEBUG(D_CONFIG,"Clear orphans for %d:%s\n", i,
1054                        obd_uuid2str(ost_uuid));
1055
1056                 memcpy(tmp_oa, src_oa, sizeof(*tmp_oa));
1057
1058                 LASSERT(lov->lov_tgts[i]->ltd_exp);
1059                 /* XXX: LOV STACKING: use real "obj_mdp" sub-data */
1060                 err = obd_create(NULL, lov->lov_tgts[i]->ltd_exp,
1061                                  tmp_oa, &obj_mdp, oti);
1062                 if (err) {
1063                         /* This export will be disabled until it is recovered,
1064                            and then orphan recovery will be completed. */
1065                         CERROR("error in orphan recovery on OST idx %d/%d: "
1066                                "rc = %d\n", i, lov->desc.ld_tgt_count, err);
1067                         rc = err;
1068                 }
1069
1070                 if (ost_uuid)
1071                         break;
1072         }
1073         obd_putref(export->exp_obd);
1074
1075         OBDO_FREE(tmp_oa);
1076         RETURN(rc);
1077 }
1078
1079 static int lov_recreate(struct obd_export *exp, struct obdo *src_oa,
1080                         struct lov_stripe_md **ea, struct obd_trans_info *oti)
1081 {
1082         struct lov_stripe_md *obj_mdp, *lsm;
1083         struct lov_obd *lov = &exp->exp_obd->u.lov;
1084         unsigned ost_idx;
1085         int rc, i;
1086         ENTRY;
1087
1088         LASSERT(src_oa->o_valid & OBD_MD_FLFLAGS &&
1089                 src_oa->o_flags & OBD_FL_RECREATE_OBJS);
1090
1091         OBD_ALLOC(obj_mdp, sizeof(*obj_mdp));
1092         if (obj_mdp == NULL)
1093                 RETURN(-ENOMEM);
1094
1095         ost_idx = src_oa->o_nlink;
1096         lsm = *ea;
1097         if (lsm == NULL)
1098                 GOTO(out, rc = -EINVAL);
1099         if (ost_idx >= lov->desc.ld_tgt_count ||
1100             !lov->lov_tgts[ost_idx])
1101                 GOTO(out, rc = -EINVAL);
1102
1103         for (i = 0; i < lsm->lsm_stripe_count; i++) {
1104                 if (lsm->lsm_oinfo[i]->loi_ost_idx == ost_idx) {
1105                         if (lsm->lsm_oinfo[i]->loi_id != src_oa->o_id)
1106                                 GOTO(out, rc = -EINVAL);
1107                         break;
1108                 }
1109         }
1110         if (i == lsm->lsm_stripe_count)
1111                 GOTO(out, rc = -EINVAL);
1112
1113         rc = obd_create(NULL, lov->lov_tgts[ost_idx]->ltd_exp,
1114                         src_oa, &obj_mdp, oti);
1115 out:
1116         OBD_FREE(obj_mdp, sizeof(*obj_mdp));
1117         RETURN(rc);
1118 }
1119
1120 /* the LOV expects oa->o_id to be set to the LOV object id */
1121 static int lov_create(const struct lu_env *env, struct obd_export *exp,
1122                       struct obdo *src_oa, struct lov_stripe_md **ea,
1123                       struct obd_trans_info *oti)
1124 {
1125         struct lov_obd *lov;
1126         struct obd_info oinfo;
1127         struct lov_request_set *set = NULL;
1128         struct lov_request *req;
1129         struct l_wait_info  lwi = { 0 };
1130         int rc = 0;
1131         ENTRY;
1132
1133         LASSERT(ea != NULL);
1134         if (exp == NULL)
1135                 RETURN(-EINVAL);
1136
1137         if ((src_oa->o_valid & OBD_MD_FLFLAGS) &&
1138             src_oa->o_flags == OBD_FL_DELORPHAN) {
1139                 rc = lov_clear_orphans(exp, src_oa, ea, oti);
1140                 RETURN(rc);
1141         }
1142
1143         lov = &exp->exp_obd->u.lov;
1144         if (!lov->desc.ld_active_tgt_count)
1145                 RETURN(-EIO);
1146
1147         obd_getref(exp->exp_obd);
1148         /* Recreate a specific object id at the given OST index */
1149         if ((src_oa->o_valid & OBD_MD_FLFLAGS) &&
1150             (src_oa->o_flags & OBD_FL_RECREATE_OBJS)) {
1151                  rc = lov_recreate(exp, src_oa, ea, oti);
1152                  GOTO(out, rc);
1153         }
1154
1155         /* issue statfs rpcs if the osfs data is older than qos_maxage - 1s,
1156          * later in alloc_qos(), we will wait for those rpcs to complete if
1157          * the osfs age is older than 2 * qos_maxage */
1158         qos_statfs_update(exp->exp_obd,
1159                           cfs_time_shift_64(-lov->desc.ld_qos_maxage +
1160                                             OBD_STATFS_CACHE_SECONDS),
1161                           0);
1162
1163         rc = lov_prep_create_set(exp, &oinfo, ea, src_oa, oti, &set);
1164         if (rc)
1165                 GOTO(out, rc);
1166
1167         cfs_list_for_each_entry(req, &set->set_list, rq_link) {
1168                 /* XXX: LOV STACKING: use real "obj_mdp" sub-data */
1169                 rc = obd_create_async(lov->lov_tgts[req->rq_idx]->ltd_exp,
1170                                       &req->rq_oi, &req->rq_oi.oi_md, oti);
1171         }
1172
1173         /* osc_create have timeout equ obd_timeout/2 so waiting don't be
1174          * longer then this */
1175         l_wait_event(set->set_waitq, lov_finished_set(set), &lwi);
1176
1177         /* we not have ptlrpc set for assign set->interpret and should
1178          * be call interpret function himself. calling from cb_create_update
1179          * not permited because lov_fini_create_set can sleep for long time,
1180          * but we must avoid sleeping in ptlrpcd interpret function. */
1181         rc = lov_fini_create_set(set, ea);
1182 out:
1183         obd_putref(exp->exp_obd);
1184         RETURN(rc);
1185 }
1186
1187 #define ASSERT_LSM_MAGIC(lsmp)                                                  \
1188 do {                                                                            \
1189         LASSERT((lsmp) != NULL);                                                \
1190         LASSERTF(((lsmp)->lsm_magic == LOV_MAGIC_V1 ||                          \
1191                  (lsmp)->lsm_magic == LOV_MAGIC_V3),                            \
1192                  "%p->lsm_magic=%x\n", (lsmp), (lsmp)->lsm_magic);              \
1193 } while (0)
1194
1195 static int lov_destroy(const struct lu_env *env, struct obd_export *exp,
1196                        struct obdo *oa, struct lov_stripe_md *lsm,
1197                        struct obd_trans_info *oti, struct obd_export *md_exp,
1198                        void *capa)
1199 {
1200         struct lov_request_set *set;
1201         struct obd_info oinfo;
1202         struct lov_request *req;
1203         cfs_list_t *pos;
1204         struct lov_obd *lov;
1205         int rc = 0, err = 0;
1206         ENTRY;
1207
1208         ASSERT_LSM_MAGIC(lsm);
1209
1210         if (!exp || !exp->exp_obd)
1211                 RETURN(-ENODEV);
1212
1213         if (oa->o_valid & OBD_MD_FLCOOKIE) {
1214                 LASSERT(oti);
1215                 LASSERT(oti->oti_logcookies);
1216         }
1217
1218         lov = &exp->exp_obd->u.lov;
1219         obd_getref(exp->exp_obd);
1220         rc = lov_prep_destroy_set(exp, &oinfo, oa, lsm, oti, &set);
1221         if (rc)
1222                 GOTO(out, rc);
1223
1224         cfs_list_for_each (pos, &set->set_list) {
1225                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1226
1227                 if (oa->o_valid & OBD_MD_FLCOOKIE)
1228                         oti->oti_logcookies = set->set_cookies + req->rq_stripe;
1229
1230                 err = obd_destroy(env, lov->lov_tgts[req->rq_idx]->ltd_exp,
1231                                   req->rq_oi.oi_oa, NULL, oti, NULL, capa);
1232                 err = lov_update_common_set(set, req, err);
1233                 if (err) {
1234                         CERROR("error: destroying objid "LPX64" subobj "
1235                                LPX64" on OST idx %d: rc = %d\n",
1236                                oa->o_id, req->rq_oi.oi_oa->o_id,
1237                                req->rq_idx, err);
1238                         if (!rc)
1239                                 rc = err;
1240                 }
1241         }
1242
1243         if (rc == 0) {
1244                 LASSERT(lsm_op_find(lsm->lsm_magic) != NULL);
1245                 rc = lsm_op_find(lsm->lsm_magic)->lsm_destroy(lsm, oa, md_exp);
1246         }
1247         err = lov_fini_destroy_set(set);
1248 out:
1249         obd_putref(exp->exp_obd);
1250         RETURN(rc ? rc : err);
1251 }
1252
1253 static int lov_getattr(const struct lu_env *env, struct obd_export *exp,
1254                        struct obd_info *oinfo)
1255 {
1256         struct lov_request_set *set;
1257         struct lov_request *req;
1258         cfs_list_t *pos;
1259         struct lov_obd *lov;
1260         int err = 0, rc = 0;
1261         ENTRY;
1262
1263         LASSERT(oinfo);
1264         ASSERT_LSM_MAGIC(oinfo->oi_md);
1265
1266         if (!exp || !exp->exp_obd)
1267                 RETURN(-ENODEV);
1268
1269         lov = &exp->exp_obd->u.lov;
1270
1271         rc = lov_prep_getattr_set(exp, oinfo, &set);
1272         if (rc)
1273                 RETURN(rc);
1274
1275         cfs_list_for_each (pos, &set->set_list) {
1276                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1277
1278                 CDEBUG(D_INFO, "objid "LPX64"[%d] has subobj "LPX64" at idx "
1279                        "%u\n", oinfo->oi_oa->o_id, req->rq_stripe,
1280                        req->rq_oi.oi_oa->o_id, req->rq_idx);
1281
1282                 rc = obd_getattr(env, lov->lov_tgts[req->rq_idx]->ltd_exp,
1283                                  &req->rq_oi);
1284                 err = lov_update_common_set(set, req, rc);
1285                 if (err) {
1286                         CERROR("error: getattr objid "LPX64" subobj "
1287                                LPX64" on OST idx %d: rc = %d\n",
1288                                oinfo->oi_oa->o_id, req->rq_oi.oi_oa->o_id,
1289                                req->rq_idx, err);
1290                         break;
1291                 }
1292         }
1293
1294         rc = lov_fini_getattr_set(set);
1295         if (err)
1296                 rc = err;
1297         RETURN(rc);
1298 }
1299
1300 static int lov_getattr_interpret(struct ptlrpc_request_set *rqset,
1301                                  void *data, int rc)
1302 {
1303         struct lov_request_set *lovset = (struct lov_request_set *)data;
1304         int err;
1305         ENTRY;
1306
1307         /* don't do attribute merge if this aysnc op failed */
1308         if (rc)
1309                 cfs_atomic_set(&lovset->set_completes, 0);
1310         err = lov_fini_getattr_set(lovset);
1311         RETURN(rc ? rc : err);
1312 }
1313
1314 static int lov_getattr_async(struct obd_export *exp, struct obd_info *oinfo,
1315                               struct ptlrpc_request_set *rqset)
1316 {
1317         struct lov_request_set *lovset;
1318         struct lov_obd *lov;
1319         cfs_list_t *pos;
1320         struct lov_request *req;
1321         int rc = 0, err;
1322         ENTRY;
1323
1324         LASSERT(oinfo);
1325         ASSERT_LSM_MAGIC(oinfo->oi_md);
1326
1327         if (!exp || !exp->exp_obd)
1328                 RETURN(-ENODEV);
1329
1330         lov = &exp->exp_obd->u.lov;
1331
1332         rc = lov_prep_getattr_set(exp, oinfo, &lovset);
1333         if (rc)
1334                 RETURN(rc);
1335
1336         CDEBUG(D_INFO, "objid "LPX64": %ux%u byte stripes\n",
1337                oinfo->oi_md->lsm_object_id, oinfo->oi_md->lsm_stripe_count,
1338                oinfo->oi_md->lsm_stripe_size);
1339
1340         cfs_list_for_each (pos, &lovset->set_list) {
1341                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1342
1343                 CDEBUG(D_INFO, "objid "LPX64"[%d] has subobj "LPX64" at idx "
1344                        "%u\n", oinfo->oi_oa->o_id, req->rq_stripe,
1345                        req->rq_oi.oi_oa->o_id, req->rq_idx);
1346                 rc = obd_getattr_async(lov->lov_tgts[req->rq_idx]->ltd_exp,
1347                                        &req->rq_oi, rqset);
1348                 if (rc) {
1349                         CERROR("error: getattr objid "LPX64" subobj "
1350                                LPX64" on OST idx %d: rc = %d\n",
1351                                oinfo->oi_oa->o_id, req->rq_oi.oi_oa->o_id,
1352                                req->rq_idx, rc);
1353                         GOTO(out, rc);
1354                 }
1355         }
1356
1357         if (!cfs_list_empty(&rqset->set_requests)) {
1358                 LASSERT(rc == 0);
1359                 LASSERT (rqset->set_interpret == NULL);
1360                 rqset->set_interpret = lov_getattr_interpret;
1361                 rqset->set_arg = (void *)lovset;
1362                 RETURN(rc);
1363         }
1364 out:
1365         if (rc)
1366                 cfs_atomic_set(&lovset->set_completes, 0);
1367         err = lov_fini_getattr_set(lovset);
1368         RETURN(rc ? rc : err);
1369 }
1370
1371 static int lov_setattr(const struct lu_env *env, struct obd_export *exp,
1372                        struct obd_info *oinfo, struct obd_trans_info *oti)
1373 {
1374         struct lov_request_set *set;
1375         struct lov_obd *lov;
1376         cfs_list_t *pos;
1377         struct lov_request *req;
1378         int err = 0, rc = 0;
1379         ENTRY;
1380
1381         LASSERT(oinfo);
1382         ASSERT_LSM_MAGIC(oinfo->oi_md);
1383
1384         if (!exp || !exp->exp_obd)
1385                 RETURN(-ENODEV);
1386
1387         /* for now, we only expect the following updates here */
1388         LASSERT(!(oinfo->oi_oa->o_valid & ~(OBD_MD_FLID | OBD_MD_FLTYPE |
1389                                             OBD_MD_FLMODE | OBD_MD_FLATIME |
1390                                             OBD_MD_FLMTIME | OBD_MD_FLCTIME |
1391                                             OBD_MD_FLFLAGS | OBD_MD_FLSIZE |
1392                                             OBD_MD_FLGROUP | OBD_MD_FLUID |
1393                                             OBD_MD_FLGID | OBD_MD_FLFID |
1394                                             OBD_MD_FLGENER)));
1395         lov = &exp->exp_obd->u.lov;
1396         rc = lov_prep_setattr_set(exp, oinfo, oti, &set);
1397         if (rc)
1398                 RETURN(rc);
1399
1400         cfs_list_for_each (pos, &set->set_list) {
1401                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1402
1403                 rc = obd_setattr(env, lov->lov_tgts[req->rq_idx]->ltd_exp,
1404                                  &req->rq_oi, NULL);
1405                 err = lov_update_setattr_set(set, req, rc);
1406                 if (err) {
1407                         CERROR("error: setattr objid "LPX64" subobj "
1408                                LPX64" on OST idx %d: rc = %d\n",
1409                                set->set_oi->oi_oa->o_id,
1410                                req->rq_oi.oi_oa->o_id, req->rq_idx, err);
1411                         if (!rc)
1412                                 rc = err;
1413                 }
1414         }
1415         err = lov_fini_setattr_set(set);
1416         if (!rc)
1417                 rc = err;
1418         RETURN(rc);
1419 }
1420
1421 static int lov_setattr_interpret(struct ptlrpc_request_set *rqset,
1422                                  void *data, int rc)
1423 {
1424         struct lov_request_set *lovset = (struct lov_request_set *)data;
1425         int err;
1426         ENTRY;
1427
1428         if (rc)
1429                 cfs_atomic_set(&lovset->set_completes, 0);
1430         err = lov_fini_setattr_set(lovset);
1431         RETURN(rc ? rc : err);
1432 }
1433
1434 /* If @oti is given, the request goes from MDS and responses from OSTs are not
1435    needed. Otherwise, a client is waiting for responses. */
1436 static int lov_setattr_async(struct obd_export *exp, struct obd_info *oinfo,
1437                              struct obd_trans_info *oti,
1438                              struct ptlrpc_request_set *rqset)
1439 {
1440         struct lov_request_set *set;
1441         struct lov_request *req;
1442         cfs_list_t *pos;
1443         struct lov_obd *lov;
1444         int rc = 0;
1445         ENTRY;
1446
1447         LASSERT(oinfo);
1448         ASSERT_LSM_MAGIC(oinfo->oi_md);
1449         if (oinfo->oi_oa->o_valid & OBD_MD_FLCOOKIE) {
1450                 LASSERT(oti);
1451                 LASSERT(oti->oti_logcookies);
1452         }
1453
1454         if (!exp || !exp->exp_obd)
1455                 RETURN(-ENODEV);
1456
1457         lov = &exp->exp_obd->u.lov;
1458         rc = lov_prep_setattr_set(exp, oinfo, oti, &set);
1459         if (rc)
1460                 RETURN(rc);
1461
1462         CDEBUG(D_INFO, "objid "LPX64": %ux%u byte stripes\n",
1463                oinfo->oi_md->lsm_object_id, oinfo->oi_md->lsm_stripe_count,
1464                oinfo->oi_md->lsm_stripe_size);
1465
1466         cfs_list_for_each (pos, &set->set_list) {
1467                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1468
1469                 if (oinfo->oi_oa->o_valid & OBD_MD_FLCOOKIE)
1470                         oti->oti_logcookies = set->set_cookies + req->rq_stripe;
1471
1472                 CDEBUG(D_INFO, "objid "LPX64"[%d] has subobj "LPX64" at idx "
1473                        "%u\n", oinfo->oi_oa->o_id, req->rq_stripe,
1474                        req->rq_oi.oi_oa->o_id, req->rq_idx);
1475
1476                 rc = obd_setattr_async(lov->lov_tgts[req->rq_idx]->ltd_exp,
1477                                        &req->rq_oi, oti, rqset);
1478                 if (rc) {
1479                         CERROR("error: setattr objid "LPX64" subobj "
1480                                LPX64" on OST idx %d: rc = %d\n",
1481                                set->set_oi->oi_oa->o_id,
1482                                req->rq_oi.oi_oa->o_id,
1483                                req->rq_idx, rc);
1484                         break;
1485                 }
1486         }
1487
1488         /* If we are not waiting for responses on async requests, return. */
1489         if (rc || !rqset || cfs_list_empty(&rqset->set_requests)) {
1490                 int err;
1491                 if (rc)
1492                         cfs_atomic_set(&set->set_completes, 0);
1493                 err = lov_fini_setattr_set(set);
1494                 RETURN(rc ? rc : err);
1495         }
1496
1497         LASSERT(rqset->set_interpret == NULL);
1498         rqset->set_interpret = lov_setattr_interpret;
1499         rqset->set_arg = (void *)set;
1500
1501         RETURN(0);
1502 }
1503
1504 static int lov_punch_interpret(struct ptlrpc_request_set *rqset,
1505                                void *data, int rc)
1506 {
1507         struct lov_request_set *lovset = (struct lov_request_set *)data;
1508         int err;
1509         ENTRY;
1510
1511         if (rc)
1512                 cfs_atomic_set(&lovset->set_completes, 0);
1513         err = lov_fini_punch_set(lovset);
1514         RETURN(rc ? rc : err);
1515 }
1516
1517 /* FIXME: maybe we'll just make one node the authoritative attribute node, then
1518  * we can send this 'punch' to just the authoritative node and the nodes
1519  * that the punch will affect. */
1520 static int lov_punch(const struct lu_env *env, struct obd_export *exp,
1521                      struct obd_info *oinfo, struct obd_trans_info *oti,
1522                      struct ptlrpc_request_set *rqset)
1523 {
1524         struct lov_request_set *set;
1525         struct lov_obd *lov;
1526         cfs_list_t *pos;
1527         struct lov_request *req;
1528         int rc = 0;
1529         ENTRY;
1530
1531         LASSERT(oinfo);
1532         ASSERT_LSM_MAGIC(oinfo->oi_md);
1533
1534         if (!exp || !exp->exp_obd)
1535                 RETURN(-ENODEV);
1536
1537         lov = &exp->exp_obd->u.lov;
1538         rc = lov_prep_punch_set(exp, oinfo, oti, &set);
1539         if (rc)
1540                 RETURN(rc);
1541
1542         cfs_list_for_each (pos, &set->set_list) {
1543                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1544
1545                 rc = obd_punch(env, lov->lov_tgts[req->rq_idx]->ltd_exp,
1546                                &req->rq_oi, NULL, rqset);
1547                 if (rc) {
1548                         CERROR("error: punch objid "LPX64" subobj "LPX64
1549                                " on OST idx %d: rc = %d\n",
1550                                set->set_oi->oi_oa->o_id,
1551                                req->rq_oi.oi_oa->o_id, req->rq_idx, rc);
1552                         break;
1553                 }
1554         }
1555
1556         if (rc || cfs_list_empty(&rqset->set_requests)) {
1557                 int err;
1558                 err = lov_fini_punch_set(set);
1559                 RETURN(rc ? rc : err);
1560         }
1561
1562         LASSERT(rqset->set_interpret == NULL);
1563         rqset->set_interpret = lov_punch_interpret;
1564         rqset->set_arg = (void *)set;
1565
1566         RETURN(0);
1567 }
1568
1569 static int lov_sync_interpret(struct ptlrpc_request_set *rqset,
1570                               void *data, int rc)
1571 {
1572         struct lov_request_set *lovset = data;
1573         int err;
1574         ENTRY;
1575
1576         if (rc)
1577                 cfs_atomic_set(&lovset->set_completes, 0);
1578         err = lov_fini_sync_set(lovset);
1579         RETURN(rc ?: err);
1580 }
1581
1582 static int lov_sync(const struct lu_env *env, struct obd_export *exp,
1583                     struct obd_info *oinfo, obd_off start, obd_off end,
1584                     struct ptlrpc_request_set *rqset)
1585 {
1586         struct lov_request_set *set = NULL;
1587         struct lov_obd *lov;
1588         cfs_list_t *pos;
1589         struct lov_request *req;
1590         int rc = 0;
1591         ENTRY;
1592
1593         ASSERT_LSM_MAGIC(oinfo->oi_md);
1594         LASSERT(rqset != NULL);
1595
1596         if (!exp->exp_obd)
1597                 RETURN(-ENODEV);
1598
1599         lov = &exp->exp_obd->u.lov;
1600         rc = lov_prep_sync_set(exp, oinfo, start, end, &set);
1601         if (rc)
1602                 RETURN(rc);
1603
1604         CDEBUG(D_INFO, "fsync objid "LPX64" ["LPX64", "LPX64"]\n",
1605                set->set_oi->oi_oa->o_id, start, end);
1606
1607         cfs_list_for_each (pos, &set->set_list) {
1608                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1609
1610                 rc = obd_sync(env, lov->lov_tgts[req->rq_idx]->ltd_exp,
1611                               &req->rq_oi, req->rq_oi.oi_policy.l_extent.start,
1612                               req->rq_oi.oi_policy.l_extent.end, rqset);
1613                 if (rc) {
1614                         CERROR("error: fsync objid "LPX64" subobj "LPX64
1615                                " on OST idx %d: rc = %d\n",
1616                                set->set_oi->oi_oa->o_id,
1617                                req->rq_oi.oi_oa->o_id, req->rq_idx, rc);
1618                         break;
1619                 }
1620         }
1621
1622         /* If we are not waiting for responses on async requests, return. */
1623         if (rc || cfs_list_empty(&rqset->set_requests)) {
1624                 int err = lov_fini_sync_set(set);
1625
1626                 RETURN(rc ?: err);
1627         }
1628
1629         LASSERT(rqset->set_interpret == NULL);
1630         rqset->set_interpret = lov_sync_interpret;
1631         rqset->set_arg = (void *)set;
1632
1633         RETURN(0);
1634 }
1635
1636 static int lov_brw_check(struct lov_obd *lov, struct obd_info *lov_oinfo,
1637                          obd_count oa_bufs, struct brw_page *pga)
1638 {
1639         struct obd_info oinfo = { { { 0 } } };
1640         int i, rc = 0;
1641
1642         oinfo.oi_oa = lov_oinfo->oi_oa;
1643
1644         /* The caller just wants to know if there's a chance that this
1645          * I/O can succeed */
1646         for (i = 0; i < oa_bufs; i++) {
1647                 int stripe = lov_stripe_number(lov_oinfo->oi_md, pga[i].off);
1648                 int ost = lov_oinfo->oi_md->lsm_oinfo[stripe]->loi_ost_idx;
1649                 obd_off start, end;
1650
1651                 if (!lov_stripe_intersects(lov_oinfo->oi_md, i, pga[i].off,
1652                                            pga[i].off + pga[i].count - 1,
1653                                            &start, &end))
1654                         continue;
1655
1656                 if (!lov->lov_tgts[ost] || !lov->lov_tgts[ost]->ltd_active) {
1657                         CDEBUG(D_HA, "lov idx %d inactive\n", ost);
1658                         return -EIO;
1659                 }
1660
1661                 rc = obd_brw(OBD_BRW_CHECK, lov->lov_tgts[ost]->ltd_exp, &oinfo,
1662                              1, &pga[i], NULL);
1663                 if (rc)
1664                         break;
1665         }
1666         return rc;
1667 }
1668
1669 static int lov_brw(int cmd, struct obd_export *exp, struct obd_info *oinfo,
1670                    obd_count oa_bufs, struct brw_page *pga,
1671                    struct obd_trans_info *oti)
1672 {
1673         struct lov_request_set *set;
1674         struct lov_request *req;
1675         cfs_list_t *pos;
1676         struct lov_obd *lov = &exp->exp_obd->u.lov;
1677         int err, rc = 0;
1678         ENTRY;
1679
1680         ASSERT_LSM_MAGIC(oinfo->oi_md);
1681
1682         if (cmd == OBD_BRW_CHECK) {
1683                 rc = lov_brw_check(lov, oinfo, oa_bufs, pga);
1684                 RETURN(rc);
1685         }
1686
1687         rc = lov_prep_brw_set(exp, oinfo, oa_bufs, pga, oti, &set);
1688         if (rc)
1689                 RETURN(rc);
1690
1691         cfs_list_for_each (pos, &set->set_list) {
1692                 struct obd_export *sub_exp;
1693                 struct brw_page *sub_pga;
1694                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1695
1696                 sub_exp = lov->lov_tgts[req->rq_idx]->ltd_exp;
1697                 sub_pga = set->set_pga + req->rq_pgaidx;
1698                 rc = obd_brw(cmd, sub_exp, &req->rq_oi, req->rq_oabufs,
1699                              sub_pga, oti);
1700                 if (rc)
1701                         break;
1702                 lov_update_common_set(set, req, rc);
1703         }
1704
1705         err = lov_fini_brw_set(set);
1706         if (!rc)
1707                 rc = err;
1708         RETURN(rc);
1709 }
1710
1711 static int lov_enqueue_interpret(struct ptlrpc_request_set *rqset,
1712                                  void *data, int rc)
1713 {
1714         struct lov_request_set *lovset = (struct lov_request_set *)data;
1715         ENTRY;
1716         rc = lov_fini_enqueue_set(lovset, lovset->set_ei->ei_mode, rc, rqset);
1717         RETURN(rc);
1718 }
1719
1720 static int lov_enqueue(struct obd_export *exp, struct obd_info *oinfo,
1721                        struct ldlm_enqueue_info *einfo,
1722                        struct ptlrpc_request_set *rqset)
1723 {
1724         ldlm_mode_t mode = einfo->ei_mode;
1725         struct lov_request_set *set;
1726         struct lov_request *req;
1727         cfs_list_t *pos;
1728         struct lov_obd *lov;
1729         ldlm_error_t rc;
1730         ENTRY;
1731
1732         LASSERT(oinfo);
1733         ASSERT_LSM_MAGIC(oinfo->oi_md);
1734         LASSERT(mode == (mode & -mode));
1735
1736         /* we should never be asked to replay a lock this way. */
1737         LASSERT((oinfo->oi_flags & LDLM_FL_REPLAY) == 0);
1738
1739         if (!exp || !exp->exp_obd)
1740                 RETURN(-ENODEV);
1741
1742         lov = &exp->exp_obd->u.lov;
1743         rc = lov_prep_enqueue_set(exp, oinfo, einfo, &set);
1744         if (rc)
1745                 RETURN(rc);
1746
1747         cfs_list_for_each (pos, &set->set_list) {
1748                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1749
1750                 rc = obd_enqueue(lov->lov_tgts[req->rq_idx]->ltd_exp,
1751                                  &req->rq_oi, einfo, rqset);
1752                 if (rc != ELDLM_OK)
1753                         GOTO(out, rc);
1754         }
1755
1756         if (rqset && !cfs_list_empty(&rqset->set_requests)) {
1757                 LASSERT(rc == 0);
1758                 LASSERT(rqset->set_interpret == NULL);
1759                 rqset->set_interpret = lov_enqueue_interpret;
1760                 rqset->set_arg = (void *)set;
1761                 RETURN(rc);
1762         }
1763 out:
1764         rc = lov_fini_enqueue_set(set, mode, rc, rqset);
1765         RETURN(rc);
1766 }
1767
1768 static int lov_change_cbdata(struct obd_export *exp,
1769                              struct lov_stripe_md *lsm, ldlm_iterator_t it,
1770                              void *data)
1771 {
1772         struct lov_obd *lov;
1773         int rc = 0, i;
1774         ENTRY;
1775
1776         ASSERT_LSM_MAGIC(lsm);
1777
1778         if (!exp || !exp->exp_obd)
1779                 RETURN(-ENODEV);
1780
1781         lov = &exp->exp_obd->u.lov;
1782         for (i = 0; i < lsm->lsm_stripe_count; i++) {
1783                 struct lov_stripe_md submd;
1784                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
1785
1786                 if (!lov->lov_tgts[loi->loi_ost_idx]) {
1787                         CDEBUG(D_HA, "lov idx %d NULL \n", loi->loi_ost_idx);
1788                         continue;
1789                 }
1790
1791                 LASSERT_SEQ_IS_MDT(loi->loi_seq);
1792                 submd.lsm_object_id = loi->loi_id;
1793                 submd.lsm_object_seq = loi->loi_seq;
1794                 submd.lsm_stripe_count = 0;
1795                 rc = obd_change_cbdata(lov->lov_tgts[loi->loi_ost_idx]->ltd_exp,
1796                                        &submd, it, data);
1797         }
1798         RETURN(rc);
1799 }
1800
1801 /* find any ldlm lock of the inode in lov
1802  * return 0    not find
1803  *        1    find one
1804  *      < 0    error */
1805 static int lov_find_cbdata(struct obd_export *exp,
1806                            struct lov_stripe_md *lsm, ldlm_iterator_t it,
1807                            void *data)
1808 {
1809         struct lov_obd *lov;
1810         int rc = 0, i;
1811         ENTRY;
1812
1813         ASSERT_LSM_MAGIC(lsm);
1814
1815         if (!exp || !exp->exp_obd)
1816                 RETURN(-ENODEV);
1817
1818         lov = &exp->exp_obd->u.lov;
1819         for (i = 0; i < lsm->lsm_stripe_count; i++) {
1820                 struct lov_stripe_md submd;
1821                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
1822
1823                 if (!lov->lov_tgts[loi->loi_ost_idx]) {
1824                         CDEBUG(D_HA, "lov idx %d NULL \n", loi->loi_ost_idx);
1825                         continue;
1826                 }
1827
1828                 LASSERT_SEQ_IS_MDT(loi->loi_seq);
1829                 submd.lsm_object_id = loi->loi_id;
1830                 submd.lsm_object_seq = loi->loi_seq;
1831                 submd.lsm_stripe_count = 0;
1832                 rc = obd_find_cbdata(lov->lov_tgts[loi->loi_ost_idx]->ltd_exp,
1833                                      &submd, it, data);
1834                 if (rc != 0)
1835                         RETURN(rc);
1836         }
1837         RETURN(rc);
1838 }
1839
1840 static int lov_cancel(struct obd_export *exp, struct lov_stripe_md *lsm,
1841                       __u32 mode, struct lustre_handle *lockh)
1842 {
1843         struct lov_request_set *set;
1844         struct obd_info oinfo;
1845         struct lov_request *req;
1846         cfs_list_t *pos;
1847         struct lov_obd *lov;
1848         struct lustre_handle *lov_lockhp;
1849         int err = 0, rc = 0;
1850         ENTRY;
1851
1852         ASSERT_LSM_MAGIC(lsm);
1853
1854         if (!exp || !exp->exp_obd)
1855                 RETURN(-ENODEV);
1856
1857         LASSERT_SEQ_IS_MDT(lsm->lsm_object_seq);
1858         LASSERT(lockh);
1859         lov = &exp->exp_obd->u.lov;
1860         rc = lov_prep_cancel_set(exp, &oinfo, lsm, mode, lockh, &set);
1861         if (rc)
1862                 RETURN(rc);
1863
1864         cfs_list_for_each (pos, &set->set_list) {
1865                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1866                 lov_lockhp = set->set_lockh->llh_handles + req->rq_stripe;
1867
1868                 rc = obd_cancel(lov->lov_tgts[req->rq_idx]->ltd_exp,
1869                                 req->rq_oi.oi_md, mode, lov_lockhp);
1870                 rc = lov_update_common_set(set, req, rc);
1871                 if (rc) {
1872                         CERROR("error: cancel objid "LPX64" subobj "
1873                                LPX64" on OST idx %d: rc = %d\n",
1874                                lsm->lsm_object_id,
1875                                req->rq_oi.oi_md->lsm_object_id,
1876                                req->rq_idx, rc);
1877                         err = rc;
1878                 }
1879
1880         }
1881         lov_fini_cancel_set(set);
1882         RETURN(err);
1883 }
1884
1885 static int lov_cancel_unused(struct obd_export *exp,
1886                              struct lov_stripe_md *lsm,
1887                              ldlm_cancel_flags_t flags, void *opaque)
1888 {
1889         struct lov_obd *lov;
1890         int rc = 0, i;
1891         ENTRY;
1892
1893         if (!exp || !exp->exp_obd)
1894                 RETURN(-ENODEV);
1895
1896         lov = &exp->exp_obd->u.lov;
1897         if (lsm == NULL) {
1898                 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
1899                         int err;
1900                         if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_exp)
1901                                 continue;
1902
1903                         err = obd_cancel_unused(lov->lov_tgts[i]->ltd_exp, NULL,
1904                                                 flags, opaque);
1905                         if (!rc)
1906                                 rc = err;
1907                 }
1908                 RETURN(rc);
1909         }
1910
1911         ASSERT_LSM_MAGIC(lsm);
1912
1913         LASSERT_SEQ_IS_MDT(lsm->lsm_object_seq);
1914         for (i = 0; i < lsm->lsm_stripe_count; i++) {
1915                 struct lov_stripe_md submd;
1916                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
1917                 int err;
1918
1919                 if (!lov->lov_tgts[loi->loi_ost_idx]) {
1920                         CDEBUG(D_HA, "lov idx %d NULL\n", loi->loi_ost_idx);
1921                         continue;
1922                 }
1923
1924                 if (!lov->lov_tgts[loi->loi_ost_idx]->ltd_active)
1925                         CDEBUG(D_HA, "lov idx %d inactive\n", loi->loi_ost_idx);
1926
1927                 submd.lsm_object_id = loi->loi_id;
1928                 submd.lsm_object_seq = loi->loi_seq;
1929                 submd.lsm_stripe_count = 0;
1930                 err = obd_cancel_unused(lov->lov_tgts[loi->loi_ost_idx]->ltd_exp,
1931                                         &submd, flags, opaque);
1932                 if (err && lov->lov_tgts[loi->loi_ost_idx]->ltd_active) {
1933                         CERROR("error: cancel unused objid "LPX64" subobj "LPX64
1934                                " on OST idx %d: rc = %d\n", lsm->lsm_object_id,
1935                                loi->loi_id, loi->loi_ost_idx, err);
1936                         if (!rc)
1937                                 rc = err;
1938                 }
1939         }
1940         RETURN(rc);
1941 }
1942
1943 int lov_statfs_interpret(struct ptlrpc_request_set *rqset, void *data, int rc)
1944 {
1945         struct lov_request_set *lovset = (struct lov_request_set *)data;
1946         int err;
1947         ENTRY;
1948
1949         if (rc)
1950                 cfs_atomic_set(&lovset->set_completes, 0);
1951
1952         err = lov_fini_statfs_set(lovset);
1953         RETURN(rc ? rc : err);
1954 }
1955
1956 static int lov_statfs_async(struct obd_export *exp, struct obd_info *oinfo,
1957                             __u64 max_age, struct ptlrpc_request_set *rqset)
1958 {
1959         struct obd_device      *obd = class_exp2obd(exp);
1960         struct lov_request_set *set;
1961         struct lov_request *req;
1962         cfs_list_t *pos;
1963         struct lov_obd *lov;
1964         int rc = 0;
1965         ENTRY;
1966
1967         LASSERT(oinfo != NULL);
1968         LASSERT(oinfo->oi_osfs != NULL);
1969
1970         lov = &obd->u.lov;
1971         rc = lov_prep_statfs_set(obd, oinfo, &set);
1972         if (rc)
1973                 RETURN(rc);
1974
1975         cfs_list_for_each (pos, &set->set_list) {
1976                 req = cfs_list_entry(pos, struct lov_request, rq_link);
1977                 rc = obd_statfs_async(lov->lov_tgts[req->rq_idx]->ltd_exp,
1978                                       &req->rq_oi, max_age, rqset);
1979                 if (rc)
1980                         break;
1981         }
1982
1983         if (rc || cfs_list_empty(&rqset->set_requests)) {
1984                 int err;
1985                 if (rc)
1986                         cfs_atomic_set(&set->set_completes, 0);
1987                 err = lov_fini_statfs_set(set);
1988                 RETURN(rc ? rc : err);
1989         }
1990
1991         LASSERT(rqset->set_interpret == NULL);
1992         rqset->set_interpret = lov_statfs_interpret;
1993         rqset->set_arg = (void *)set;
1994         RETURN(0);
1995 }
1996
1997 static int lov_statfs(const struct lu_env *env, struct obd_export *exp,
1998                       struct obd_statfs *osfs, __u64 max_age, __u32 flags)
1999 {
2000         struct ptlrpc_request_set *set = NULL;
2001         struct obd_info oinfo = { { { 0 } } };
2002         int rc = 0;
2003         ENTRY;
2004
2005
2006         /* for obdclass we forbid using obd_statfs_rqset, but prefer using async
2007          * statfs requests */
2008         set = ptlrpc_prep_set();
2009         if (set == NULL)
2010                 RETURN(-ENOMEM);
2011
2012         oinfo.oi_osfs = osfs;
2013         oinfo.oi_flags = flags;
2014         rc = lov_statfs_async(exp, &oinfo, max_age, set);
2015         if (rc == 0)
2016                 rc = ptlrpc_set_wait(set);
2017         ptlrpc_set_destroy(set);
2018
2019         RETURN(rc);
2020 }
2021
2022 static int lov_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
2023                          void *karg, void *uarg)
2024 {
2025         struct obd_device *obddev = class_exp2obd(exp);
2026         struct lov_obd *lov = &obddev->u.lov;
2027         int i = 0, rc = 0, count = lov->desc.ld_tgt_count;
2028         struct obd_uuid *uuidp;
2029         ENTRY;
2030
2031         switch (cmd) {
2032         case IOC_OBD_STATFS: {
2033                 struct obd_ioctl_data *data = karg;
2034                 struct obd_device *osc_obd;
2035                 struct obd_statfs stat_buf = {0};
2036                 __u32 index;
2037
2038                 memcpy(&index, data->ioc_inlbuf2, sizeof(__u32));
2039                 if ((index >= count))
2040                         RETURN(-ENODEV);
2041
2042                 if (!lov->lov_tgts[index])
2043                         /* Try again with the next index */
2044                         RETURN(-EAGAIN);
2045                 if (!lov->lov_tgts[index]->ltd_active)
2046                         RETURN(-ENODATA);
2047
2048                 osc_obd = class_exp2obd(lov->lov_tgts[index]->ltd_exp);
2049                 if (!osc_obd)
2050                         RETURN(-EINVAL);
2051
2052                 /* copy UUID */
2053                 if (cfs_copy_to_user(data->ioc_pbuf2, obd2cli_tgt(osc_obd),
2054                                      min((int) data->ioc_plen2,
2055                                          (int) sizeof(struct obd_uuid))))
2056                         RETURN(-EFAULT);
2057
2058                 /* got statfs data */
2059                 rc = obd_statfs(NULL, lov->lov_tgts[index]->ltd_exp, &stat_buf,
2060                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
2061                                 0);
2062                 if (rc)
2063                         RETURN(rc);
2064                 if (cfs_copy_to_user(data->ioc_pbuf1, &stat_buf,
2065                                      min((int) data->ioc_plen1,
2066                                          (int) sizeof(stat_buf))))
2067                         RETURN(-EFAULT);
2068                 break;
2069         }
2070         case OBD_IOC_LOV_GET_CONFIG: {
2071                 struct obd_ioctl_data *data;
2072                 struct lov_desc *desc;
2073                 char *buf = NULL;
2074                 __u32 *genp;
2075
2076                 len = 0;
2077                 if (obd_ioctl_getdata(&buf, &len, (void *)uarg))
2078                         RETURN(-EINVAL);
2079
2080                 data = (struct obd_ioctl_data *)buf;
2081
2082                 if (sizeof(*desc) > data->ioc_inllen1) {
2083                         obd_ioctl_freedata(buf, len);
2084                         RETURN(-EINVAL);
2085                 }
2086
2087                 if (sizeof(uuidp->uuid) * count > data->ioc_inllen2) {
2088                         obd_ioctl_freedata(buf, len);
2089                         RETURN(-EINVAL);
2090                 }
2091
2092                 if (sizeof(__u32) * count > data->ioc_inllen3) {
2093                         obd_ioctl_freedata(buf, len);
2094                         RETURN(-EINVAL);
2095                 }
2096
2097                 desc = (struct lov_desc *)data->ioc_inlbuf1;
2098                 memcpy(desc, &(lov->desc), sizeof(*desc));
2099
2100                 uuidp = (struct obd_uuid *)data->ioc_inlbuf2;
2101                 genp = (__u32 *)data->ioc_inlbuf3;
2102                 /* the uuid will be empty for deleted OSTs */
2103                 for (i = 0; i < count; i++, uuidp++, genp++) {
2104                         if (!lov->lov_tgts[i])
2105                                 continue;
2106                         *uuidp = lov->lov_tgts[i]->ltd_uuid;
2107                         *genp = lov->lov_tgts[i]->ltd_gen;
2108                 }
2109
2110                 if (cfs_copy_to_user((void *)uarg, buf, len))
2111                         rc = -EFAULT;
2112                 obd_ioctl_freedata(buf, len);
2113                 break;
2114         }
2115         case LL_IOC_LOV_SETSTRIPE:
2116                 rc = lov_setstripe(exp, len, karg, uarg);
2117                 break;
2118         case LL_IOC_LOV_GETSTRIPE:
2119                 rc = lov_getstripe(exp, karg, uarg);
2120                 break;
2121         case LL_IOC_LOV_SETEA:
2122                 rc = lov_setea(exp, karg, uarg);
2123                 break;
2124         case OBD_IOC_QUOTACTL: {
2125                 struct if_quotactl *qctl = karg;
2126                 struct lov_tgt_desc *tgt = NULL;
2127                 struct obd_quotactl *oqctl;
2128
2129                 if (qctl->qc_valid == QC_OSTIDX) {
2130                         if (qctl->qc_idx < 0 || count <= qctl->qc_idx)
2131                                 RETURN(-EINVAL);
2132
2133                         tgt = lov->lov_tgts[qctl->qc_idx];
2134                         if (!tgt || !tgt->ltd_exp)
2135                                 RETURN(-EINVAL);
2136                 } else if (qctl->qc_valid == QC_UUID) {
2137                         for (i = 0; i < count; i++) {
2138                                 tgt = lov->lov_tgts[i];
2139                                 if (!tgt ||
2140                                     !obd_uuid_equals(&tgt->ltd_uuid,
2141                                                      &qctl->obd_uuid))
2142                                         continue;
2143
2144                                 if (tgt->ltd_exp == NULL)
2145                                         RETURN(-EINVAL);
2146
2147                                 break;
2148                         }
2149                 } else {
2150                         RETURN(-EINVAL);
2151                 }
2152
2153                 if (i >= count)
2154                         RETURN(-EAGAIN);
2155
2156                 LASSERT(tgt && tgt->ltd_exp);
2157                 OBD_ALLOC_PTR(oqctl);
2158                 if (!oqctl)
2159                         RETURN(-ENOMEM);
2160
2161                 QCTL_COPY(oqctl, qctl);
2162                 rc = obd_quotactl(tgt->ltd_exp, oqctl);
2163                 if (rc == 0) {
2164                         QCTL_COPY(qctl, oqctl);
2165                         qctl->qc_valid = QC_OSTIDX;
2166                         qctl->obd_uuid = tgt->ltd_uuid;
2167                 }
2168                 OBD_FREE_PTR(oqctl);
2169                 break;
2170         }
2171         default: {
2172                 int set = 0;
2173
2174                 if (count == 0)
2175                         RETURN(-ENOTTY);
2176
2177                 for (i = 0; i < count; i++) {
2178                         int err;
2179                         struct obd_device *osc_obd;
2180
2181                         /* OST was disconnected */
2182                         if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_exp)
2183                                 continue;
2184
2185                         /* ll_umount_begin() sets force flag but for lov, not
2186                          * osc. Let's pass it through */
2187                         osc_obd = class_exp2obd(lov->lov_tgts[i]->ltd_exp);
2188                         osc_obd->obd_force = obddev->obd_force;
2189                         err = obd_iocontrol(cmd, lov->lov_tgts[i]->ltd_exp,
2190                                             len, karg, uarg);
2191                         if (err == -ENODATA && cmd == OBD_IOC_POLL_QUOTACHECK) {
2192                                 RETURN(err);
2193                         } else if (err) {
2194                                 if (lov->lov_tgts[i]->ltd_active) {
2195                                         CDEBUG(err == -ENOTTY ?
2196                                                D_IOCTL : D_WARNING,
2197                                                "iocontrol OSC %s on OST "
2198                                                "idx %d cmd %x: err = %d\n",
2199                                                lov_uuid2str(lov, i),
2200                                                i, cmd, err);
2201                                         if (!rc)
2202                                                 rc = err;
2203                                 }
2204                         } else {
2205                                 set = 1;
2206                         }
2207                 }
2208                 if (!set && !rc)
2209                         rc = -EIO;
2210         }
2211         }
2212
2213         RETURN(rc);
2214 }
2215
2216 #define FIEMAP_BUFFER_SIZE 4096
2217
2218 /**
2219  * Non-zero fe_logical indicates that this is a continuation FIEMAP
2220  * call. The local end offset and the device are sent in the first
2221  * fm_extent. This function calculates the stripe number from the index.
2222  * This function returns a stripe_no on which mapping is to be restarted.
2223  *
2224  * This function returns fm_end_offset which is the in-OST offset at which
2225  * mapping should be restarted. If fm_end_offset=0 is returned then caller
2226  * will re-calculate proper offset in next stripe.
2227  * Note that the first extent is passed to lov_get_info via the value field.
2228  *
2229  * \param fiemap fiemap request header
2230  * \param lsm striping information for the file
2231  * \param fm_start logical start of mapping
2232  * \param fm_end logical end of mapping
2233  * \param start_stripe starting stripe will be returned in this
2234  */
2235 obd_size fiemap_calc_fm_end_offset(struct ll_user_fiemap *fiemap,
2236                                    struct lov_stripe_md *lsm, obd_size fm_start,
2237                                    obd_size fm_end, int *start_stripe)
2238 {
2239         obd_size local_end = fiemap->fm_extents[0].fe_logical;
2240         obd_off lun_start, lun_end;
2241         obd_size fm_end_offset;
2242         int stripe_no = -1, i;
2243
2244         if (fiemap->fm_extent_count == 0 ||
2245             fiemap->fm_extents[0].fe_logical == 0)
2246                 return 0;
2247
2248         /* Find out stripe_no from ost_index saved in the fe_device */
2249         for (i = 0; i < lsm->lsm_stripe_count; i++) {
2250                 if (lsm->lsm_oinfo[i]->loi_ost_idx ==
2251                                         fiemap->fm_extents[0].fe_device) {
2252                         stripe_no = i;
2253                         break;
2254                 }
2255         }
2256
2257         /* If we have finished mapping on previous device, shift logical
2258          * offset to start of next device */
2259         if ((lov_stripe_intersects(lsm, stripe_no, fm_start, fm_end,
2260                                    &lun_start, &lun_end)) != 0 &&
2261                                    local_end < lun_end) {
2262                 fm_end_offset = local_end;
2263                 *start_stripe = stripe_no;
2264         } else {
2265                 /* This is a special value to indicate that caller should
2266                  * calculate offset in next stripe. */
2267                 fm_end_offset = 0;
2268                 *start_stripe = (stripe_no + 1) % lsm->lsm_stripe_count;
2269         }
2270
2271         return fm_end_offset;
2272 }
2273
2274 /**
2275  * We calculate on which OST the mapping will end. If the length of mapping
2276  * is greater than (stripe_size * stripe_count) then the last_stripe will
2277  * will be one just before start_stripe. Else we check if the mapping
2278  * intersects each OST and find last_stripe.
2279  * This function returns the last_stripe and also sets the stripe_count
2280  * over which the mapping is spread
2281  *
2282  * \param lsm striping information for the file
2283  * \param fm_start logical start of mapping
2284  * \param fm_end logical end of mapping
2285  * \param start_stripe starting stripe of the mapping
2286  * \param stripe_count the number of stripes across which to map is returned
2287  *
2288  * \retval last_stripe return the last stripe of the mapping
2289  */
2290 int fiemap_calc_last_stripe(struct lov_stripe_md *lsm, obd_size fm_start,
2291                             obd_size fm_end, int start_stripe,
2292                             int *stripe_count)
2293 {
2294         int last_stripe;
2295         obd_off obd_start, obd_end;
2296         int i, j;
2297
2298         if (fm_end - fm_start > lsm->lsm_stripe_size * lsm->lsm_stripe_count) {
2299                 last_stripe = (start_stripe < 1 ? lsm->lsm_stripe_count - 1 :
2300                                                               start_stripe - 1);
2301                 *stripe_count = lsm->lsm_stripe_count;
2302         } else {
2303                 for (j = 0, i = start_stripe; j < lsm->lsm_stripe_count;
2304                      i = (i + 1) % lsm->lsm_stripe_count, j++) {
2305                         if ((lov_stripe_intersects(lsm, i, fm_start, fm_end,
2306                                                    &obd_start, &obd_end)) == 0)
2307                                 break;
2308                 }
2309                 *stripe_count = j;
2310                 last_stripe = (start_stripe + j - 1) %lsm->lsm_stripe_count;
2311         }
2312
2313         return last_stripe;
2314 }
2315
2316 /**
2317  * Set fe_device and copy extents from local buffer into main return buffer.
2318  *
2319  * \param fiemap fiemap request header
2320  * \param lcl_fm_ext array of local fiemap extents to be copied
2321  * \param ost_index OST index to be written into the fm_device field for each
2322                     extent
2323  * \param ext_count number of extents to be copied
2324  * \param current_extent where to start copying in main extent array
2325  */
2326 void fiemap_prepare_and_copy_exts(struct ll_user_fiemap *fiemap,
2327                                   struct ll_fiemap_extent *lcl_fm_ext,
2328                                   int ost_index, unsigned int ext_count,
2329                                   int current_extent)
2330 {
2331         char *to;
2332         int ext;
2333
2334         for (ext = 0; ext < ext_count; ext++) {
2335                 lcl_fm_ext[ext].fe_device = ost_index;
2336                 lcl_fm_ext[ext].fe_flags |= FIEMAP_EXTENT_NET;
2337         }
2338
2339         /* Copy fm_extent's from fm_local to return buffer */
2340         to = (char *)fiemap + fiemap_count_to_size(current_extent);
2341         memcpy(to, lcl_fm_ext, ext_count * sizeof(struct ll_fiemap_extent));
2342 }
2343
2344 /**
2345  * Break down the FIEMAP request and send appropriate calls to individual OSTs.
2346  * This also handles the restarting of FIEMAP calls in case mapping overflows
2347  * the available number of extents in single call.
2348  */
2349 static int lov_fiemap(struct lov_obd *lov, __u32 keylen, void *key,
2350                       __u32 *vallen, void *val, struct lov_stripe_md *lsm)
2351 {
2352         struct ll_fiemap_info_key *fm_key = key;
2353         struct ll_user_fiemap *fiemap = val;
2354         struct ll_user_fiemap *fm_local = NULL;
2355         struct ll_fiemap_extent *lcl_fm_ext;
2356         int count_local;
2357         unsigned int get_num_extents = 0;
2358         int ost_index = 0, actual_start_stripe, start_stripe;
2359         obd_size fm_start, fm_end, fm_length, fm_end_offset = 0;
2360         obd_size curr_loc;
2361         int current_extent = 0, rc = 0, i;
2362         int ost_eof = 0; /* EOF for object */
2363         int ost_done = 0; /* done with required mapping for this OST? */
2364         int last_stripe;
2365         int cur_stripe = 0, cur_stripe_wrap = 0, stripe_count;
2366         unsigned int buffer_size = FIEMAP_BUFFER_SIZE;
2367
2368         if (lsm == NULL)
2369                 GOTO(out, rc = 0);
2370
2371         if (fiemap_count_to_size(fm_key->fiemap.fm_extent_count) < buffer_size)
2372                 buffer_size = fiemap_count_to_size(fm_key->fiemap.fm_extent_count);
2373
2374         OBD_ALLOC_LARGE(fm_local, buffer_size);
2375         if (fm_local == NULL)
2376                 GOTO(out, rc = -ENOMEM);
2377         lcl_fm_ext = &fm_local->fm_extents[0];
2378
2379         count_local = fiemap_size_to_count(buffer_size);
2380
2381         memcpy(fiemap, &fm_key->fiemap, sizeof(*fiemap));
2382         fm_start = fiemap->fm_start;
2383         fm_length = fiemap->fm_length;
2384         /* Calculate start stripe, last stripe and length of mapping */
2385         actual_start_stripe = start_stripe = lov_stripe_number(lsm, fm_start);
2386         fm_end = (fm_length == ~0ULL ? fm_key->oa.o_size :
2387                                                 fm_start + fm_length - 1);
2388         /* If fm_length != ~0ULL but fm_start+fm_length-1 exceeds file size */
2389         if (fm_end > fm_key->oa.o_size)
2390                 fm_end = fm_key->oa.o_size;
2391
2392         last_stripe = fiemap_calc_last_stripe(lsm, fm_start, fm_end,
2393                                             actual_start_stripe, &stripe_count);
2394
2395         fm_end_offset = fiemap_calc_fm_end_offset(fiemap, lsm, fm_start, fm_end,
2396                                                   &start_stripe);
2397
2398         if (fiemap->fm_extent_count == 0) {
2399                 get_num_extents = 1;
2400                 count_local = 0;
2401         }
2402
2403         /* Check each stripe */
2404         for (cur_stripe = start_stripe, i = 0; i < stripe_count;
2405              i++, cur_stripe = (cur_stripe + 1) % lsm->lsm_stripe_count) {
2406                 obd_size req_fm_len; /* Stores length of required mapping */
2407                 obd_size len_mapped_single_call;
2408                 obd_off lun_start, lun_end, obd_object_end;
2409                 unsigned int ext_count;
2410
2411                 cur_stripe_wrap = cur_stripe;
2412
2413                 /* Find out range of mapping on this stripe */
2414                 if ((lov_stripe_intersects(lsm, cur_stripe, fm_start, fm_end,
2415                                            &lun_start, &obd_object_end)) == 0)
2416                         continue;
2417
2418                 /* If this is a continuation FIEMAP call and we are on
2419                  * starting stripe then lun_start needs to be set to
2420                  * fm_end_offset */
2421                 if (fm_end_offset != 0 && cur_stripe == start_stripe)
2422                         lun_start = fm_end_offset;
2423
2424                 if (fm_length != ~0ULL) {
2425                         /* Handle fm_start + fm_length overflow */
2426                         if (fm_start + fm_length < fm_start)
2427                                 fm_length = ~0ULL - fm_start;
2428                         lun_end = lov_size_to_stripe(lsm, fm_start + fm_length,
2429                                                      cur_stripe);
2430                 } else {
2431                         lun_end = ~0ULL;
2432                 }
2433
2434                 if (lun_start == lun_end)
2435                         continue;
2436
2437                 req_fm_len = obd_object_end - lun_start;
2438                 fm_local->fm_length = 0;
2439                 len_mapped_single_call = 0;
2440
2441                 /* If the output buffer is very large and the objects have many
2442                  * extents we may need to loop on a single OST repeatedly */
2443                 ost_eof = 0;
2444                 ost_done = 0;
2445                 do {
2446                         if (get_num_extents == 0) {
2447                                 /* Don't get too many extents. */
2448                                 if (current_extent + count_local >
2449                                     fiemap->fm_extent_count)
2450                                         count_local = fiemap->fm_extent_count -
2451                                                                  current_extent;
2452                         }
2453
2454                         lun_start += len_mapped_single_call;
2455                         fm_local->fm_length = req_fm_len - len_mapped_single_call;
2456                         req_fm_len = fm_local->fm_length;
2457                         fm_local->fm_extent_count = count_local;
2458                         fm_local->fm_mapped_extents = 0;
2459                         fm_local->fm_flags = fiemap->fm_flags;
2460
2461                         fm_key->oa.o_id = lsm->lsm_oinfo[cur_stripe]->loi_id;
2462                         fm_key->oa.o_seq = lsm->lsm_oinfo[cur_stripe]->loi_seq;
2463                         ost_index = lsm->lsm_oinfo[cur_stripe]->loi_ost_idx;
2464
2465                         if (ost_index < 0 || ost_index >=lov->desc.ld_tgt_count)
2466                                 GOTO(out, rc = -EINVAL);
2467
2468                         /* If OST is inactive, return extent with UNKNOWN flag */
2469                         if (!lov->lov_tgts[ost_index]->ltd_active) {
2470                                 fm_local->fm_flags |= FIEMAP_EXTENT_LAST;
2471                                 fm_local->fm_mapped_extents = 1;
2472
2473                                 lcl_fm_ext[0].fe_logical = lun_start;
2474                                 lcl_fm_ext[0].fe_length = obd_object_end -
2475                                                                       lun_start;
2476                                 lcl_fm_ext[0].fe_flags |= FIEMAP_EXTENT_UNKNOWN;
2477
2478                                 goto inactive_tgt;
2479                         }
2480
2481                         fm_local->fm_start = lun_start;
2482                         fm_local->fm_flags &= ~FIEMAP_FLAG_DEVICE_ORDER;
2483                         memcpy(&fm_key->fiemap, fm_local, sizeof(*fm_local));
2484                         *vallen=fiemap_count_to_size(fm_local->fm_extent_count);
2485                         rc = obd_get_info(NULL,
2486                                           lov->lov_tgts[ost_index]->ltd_exp,
2487                                           keylen, key, vallen, fm_local, lsm);
2488                         if (rc != 0)
2489                                 GOTO(out, rc);
2490
2491 inactive_tgt:
2492                         ext_count = fm_local->fm_mapped_extents;
2493                         if (ext_count == 0) {
2494                                 ost_done = 1;
2495                                 /* If last stripe has hole at the end,
2496                                  * then we need to return */
2497                                 if (cur_stripe_wrap == last_stripe) {
2498                                         fiemap->fm_mapped_extents = 0;
2499                                         goto finish;
2500                                 }
2501                                 break;
2502                         }
2503
2504                         /* If we just need num of extents then go to next device */
2505                         if (get_num_extents) {
2506                                 current_extent += ext_count;
2507                                 break;
2508                         }
2509
2510                         len_mapped_single_call = lcl_fm_ext[ext_count-1].fe_logical -
2511                                   lun_start + lcl_fm_ext[ext_count - 1].fe_length;
2512
2513                         /* Have we finished mapping on this device? */
2514                         if (req_fm_len <= len_mapped_single_call)
2515                                 ost_done = 1;
2516
2517                         /* Clear the EXTENT_LAST flag which can be present on
2518                          * last extent */
2519                         if (lcl_fm_ext[ext_count-1].fe_flags & FIEMAP_EXTENT_LAST)
2520                                 lcl_fm_ext[ext_count - 1].fe_flags &=
2521                                                             ~FIEMAP_EXTENT_LAST;
2522
2523                         curr_loc = lov_stripe_size(lsm,
2524                                            lcl_fm_ext[ext_count - 1].fe_logical+
2525                                            lcl_fm_ext[ext_count - 1].fe_length,
2526                                            cur_stripe);
2527                         if (curr_loc >= fm_key->oa.o_size)
2528                                 ost_eof = 1;
2529
2530                         fiemap_prepare_and_copy_exts(fiemap, lcl_fm_ext,
2531                                                      ost_index, ext_count,
2532                                                      current_extent);
2533
2534                         current_extent += ext_count;
2535
2536                         /* Ran out of available extents? */
2537                         if (current_extent >= fiemap->fm_extent_count)
2538                                 goto finish;
2539                 } while (ost_done == 0 && ost_eof == 0);
2540
2541                 if (cur_stripe_wrap == last_stripe)
2542                         goto finish;
2543         }
2544
2545 finish:
2546         /* Indicate that we are returning device offsets unless file just has
2547          * single stripe */
2548         if (lsm->lsm_stripe_count > 1)
2549                 fiemap->fm_flags |= FIEMAP_FLAG_DEVICE_ORDER;
2550
2551         if (get_num_extents)
2552                 goto skip_last_device_calc;
2553
2554         /* Check if we have reached the last stripe and whether mapping for that
2555          * stripe is done. */
2556         if (cur_stripe_wrap == last_stripe) {
2557                 if (ost_done || ost_eof)
2558                         fiemap->fm_extents[current_extent - 1].fe_flags |=
2559                                                              FIEMAP_EXTENT_LAST;
2560         }
2561
2562 skip_last_device_calc:
2563         fiemap->fm_mapped_extents = current_extent;
2564
2565 out:
2566         OBD_FREE_LARGE(fm_local, buffer_size);
2567         return rc;
2568 }
2569
2570 static int lov_get_info(const struct lu_env *env, struct obd_export *exp,
2571                         __u32 keylen, void *key, __u32 *vallen, void *val,
2572                         struct lov_stripe_md *lsm)
2573 {
2574         struct obd_device *obddev = class_exp2obd(exp);
2575         struct lov_obd *lov = &obddev->u.lov;
2576         int i, rc;
2577         ENTRY;
2578
2579         if (!vallen || !val)
2580                 RETURN(-EFAULT);
2581
2582         obd_getref(obddev);
2583
2584         if (KEY_IS(KEY_LOCK_TO_STRIPE)) {
2585                 struct {
2586                         char name[16];
2587                         struct ldlm_lock *lock;
2588                 } *data = key;
2589                 struct ldlm_res_id *res_id = &data->lock->l_resource->lr_name;
2590                 struct lov_oinfo *loi;
2591                 __u32 *stripe = val;
2592
2593                 if (*vallen < sizeof(*stripe))
2594                         GOTO(out, rc = -EFAULT);
2595                 *vallen = sizeof(*stripe);
2596
2597                 /* XXX This is another one of those bits that will need to
2598                  * change if we ever actually support nested LOVs.  It uses
2599                  * the lock's export to find out which stripe it is. */
2600                 /* XXX - it's assumed all the locks for deleted OSTs have
2601                  * been cancelled. Also, the export for deleted OSTs will
2602                  * be NULL and won't match the lock's export. */
2603                 for (i = 0; i < lsm->lsm_stripe_count; i++) {
2604                         loi = lsm->lsm_oinfo[i];
2605                         if (!lov->lov_tgts[loi->loi_ost_idx])
2606                                 continue;
2607                         if (lov->lov_tgts[loi->loi_ost_idx]->ltd_exp ==
2608                             data->lock->l_conn_export &&
2609                             osc_res_name_eq(loi->loi_id, loi->loi_seq, res_id)) {
2610                                 *stripe = i;
2611                                 GOTO(out, rc = 0);
2612                         }
2613                 }
2614                 LDLM_ERROR(data->lock, "lock on inode without such object");
2615                 dump_lsm(D_ERROR, lsm);
2616                 GOTO(out, rc = -ENXIO);
2617         } else if (KEY_IS(KEY_LAST_ID)) {
2618                 struct obd_id_info *info = val;
2619                 __u32 size = sizeof(obd_id);
2620                 struct lov_tgt_desc *tgt;
2621
2622                 LASSERT(*vallen == sizeof(struct obd_id_info));
2623                 tgt = lov->lov_tgts[info->idx];
2624
2625                 if (!tgt || !tgt->ltd_active)
2626                         GOTO(out, rc = -ESRCH);
2627
2628                 rc = obd_get_info(env, tgt->ltd_exp, keylen, key,
2629                                   &size, info->data, NULL);
2630                 GOTO(out, rc = 0);
2631         } else if (KEY_IS(KEY_LOVDESC)) {
2632                 struct lov_desc *desc_ret = val;
2633                 *desc_ret = lov->desc;
2634
2635                 GOTO(out, rc = 0);
2636         } else if (KEY_IS(KEY_FIEMAP)) {
2637                 rc = lov_fiemap(lov, keylen, key, vallen, val, lsm);
2638                 GOTO(out, rc);
2639         } else if (KEY_IS(KEY_CONNECT_FLAG)) {
2640                 struct lov_tgt_desc *tgt;
2641                 __u64 ost_idx = *((__u64*)val);
2642
2643                 LASSERT(*vallen == sizeof(__u64));
2644                 LASSERT(ost_idx < lov->desc.ld_tgt_count);
2645                 tgt = lov->lov_tgts[ost_idx];
2646
2647                 if (!tgt || !tgt->ltd_exp)
2648                         GOTO(out, rc = -ESRCH);
2649
2650                 *((__u64*)val) = tgt->ltd_exp->exp_connect_flags;
2651                 GOTO(out, rc = 0);
2652         } else if (KEY_IS(KEY_TGT_COUNT)) {
2653                 *((int *)val) = lov->desc.ld_tgt_count;
2654                 GOTO(out, rc = 0);
2655         }
2656
2657         rc = -EINVAL;
2658
2659 out:
2660         obd_putref(obddev);
2661         RETURN(rc);
2662 }
2663
2664 static int lov_set_info_async(const struct lu_env *env, struct obd_export *exp,
2665                               obd_count keylen, void *key, obd_count vallen,
2666                               void *val, struct ptlrpc_request_set *set)
2667 {
2668         struct obd_device *obddev = class_exp2obd(exp);
2669         struct lov_obd *lov = &obddev->u.lov;
2670         obd_count count;
2671         int i, rc = 0, err;
2672         struct lov_tgt_desc *tgt;
2673         unsigned incr, check_uuid,
2674                  do_inactive, no_set;
2675         unsigned next_id = 0,  mds_con = 0, capa = 0;
2676         ENTRY;
2677
2678         incr = check_uuid = do_inactive = no_set = 0;
2679         if (set == NULL) {
2680                 no_set = 1;
2681                 set = ptlrpc_prep_set();
2682                 if (!set)
2683                         RETURN(-ENOMEM);
2684         }
2685
2686         obd_getref(obddev);
2687         count = lov->desc.ld_tgt_count;
2688
2689         if (KEY_IS(KEY_NEXT_ID)) {
2690                 count = vallen / sizeof(struct obd_id_info);
2691                 vallen = sizeof(obd_id);
2692                 incr = sizeof(struct obd_id_info);
2693                 do_inactive = 1;
2694                 next_id = 1;
2695         } else if (KEY_IS(KEY_CHECKSUM)) {
2696                 do_inactive = 1;
2697         } else if (KEY_IS(KEY_EVICT_BY_NID)) {
2698                 /* use defaults:  do_inactive = incr = 0; */
2699         } else if (KEY_IS(KEY_MDS_CONN)) {
2700                 mds_con = 1;
2701         } else if (KEY_IS(KEY_CAPA_KEY)) {
2702                 capa = 1;
2703         }
2704
2705         for (i = 0; i < count; i++, val = (char *)val + incr) {
2706                 if (next_id) {
2707                         tgt = lov->lov_tgts[((struct obd_id_info*)val)->idx];
2708                 } else {
2709                         tgt = lov->lov_tgts[i];
2710                 }
2711                 /* OST was disconnected */
2712                 if (!tgt || !tgt->ltd_exp)
2713                         continue;
2714
2715                 /* OST is inactive and we don't want inactive OSCs */
2716                 if (!tgt->ltd_active && !do_inactive)
2717                         continue;
2718
2719                 if (mds_con) {
2720                         struct mds_group_info *mgi;
2721
2722                         LASSERT(vallen == sizeof(*mgi));
2723                         mgi = (struct mds_group_info *)val;
2724
2725                         /* Only want a specific OSC */
2726                         if (mgi->uuid && !obd_uuid_equals(mgi->uuid,
2727                                                 &tgt->ltd_uuid))
2728                                 continue;
2729
2730                         err = obd_set_info_async(env, tgt->ltd_exp,
2731                                          keylen, key, sizeof(int),
2732                                          &mgi->group, set);
2733                 } else if (next_id) {
2734                         err = obd_set_info_async(env, tgt->ltd_exp,
2735                                          keylen, key, vallen,
2736                                          ((struct obd_id_info*)val)->data, set);
2737                 } else if (capa) {
2738                         struct mds_capa_info *info = (struct mds_capa_info*)val;
2739
2740                         LASSERT(vallen == sizeof(*info));
2741
2742                          /* Only want a specific OSC */
2743                         if (info->uuid &&
2744                             !obd_uuid_equals(info->uuid, &tgt->ltd_uuid))
2745                                 continue;
2746
2747                         err = obd_set_info_async(env, tgt->ltd_exp, keylen,
2748                                                  key, sizeof(*info->capa),
2749                                                  info->capa, set);
2750                 } else {
2751                         /* Only want a specific OSC */
2752                         if (check_uuid &&
2753                             !obd_uuid_equals(val, &tgt->ltd_uuid))
2754                                 continue;
2755
2756                         err = obd_set_info_async(env, tgt->ltd_exp,
2757                                          keylen, key, vallen, val, set);
2758                 }
2759
2760                 if (!rc)
2761                         rc = err;
2762         }
2763
2764         obd_putref(obddev);
2765         if (no_set) {
2766                 err = ptlrpc_set_wait(set);
2767                 if (!rc)
2768                         rc = err;
2769                 ptlrpc_set_destroy(set);
2770         }
2771         RETURN(rc);
2772 }
2773
2774 int lov_test_and_clear_async_rc(struct lov_stripe_md *lsm)
2775 {
2776         int i, rc = 0;
2777         ENTRY;
2778
2779         for (i = 0; i < lsm->lsm_stripe_count; i++) {
2780                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
2781                 if (loi->loi_ar.ar_rc && !rc)
2782                         rc = loi->loi_ar.ar_rc;
2783                 loi->loi_ar.ar_rc = 0;
2784         }
2785         RETURN(rc);
2786 }
2787 EXPORT_SYMBOL(lov_test_and_clear_async_rc);
2788
2789
2790 static int lov_extent_calc(struct obd_export *exp, struct lov_stripe_md *lsm,
2791                            int cmd, __u64 *offset)
2792 {
2793         __u32 ssize = lsm->lsm_stripe_size;
2794         __u64 start;
2795
2796         start = *offset;
2797         lov_do_div64(start, ssize);
2798         start = start * ssize;
2799
2800         CDEBUG(D_DLMTRACE, "offset "LPU64", stripe %u, start "LPU64
2801                            ", end "LPU64"\n", *offset, ssize, start,
2802                            start + ssize - 1);
2803         if (cmd == OBD_CALC_STRIPE_END) {
2804                 *offset = start + ssize - 1;
2805         } else if (cmd == OBD_CALC_STRIPE_START) {
2806                 *offset = start;
2807         } else {
2808                 LBUG();
2809         }
2810
2811         RETURN(0);
2812 }
2813
2814 void lov_stripe_lock(struct lov_stripe_md *md)
2815 {
2816         LASSERT(md->lsm_lock_owner != cfs_curproc_pid());
2817         cfs_spin_lock(&md->lsm_lock);
2818         LASSERT(md->lsm_lock_owner == 0);
2819         md->lsm_lock_owner = cfs_curproc_pid();
2820 }
2821 EXPORT_SYMBOL(lov_stripe_lock);
2822
2823 void lov_stripe_unlock(struct lov_stripe_md *md)
2824 {
2825         LASSERT(md->lsm_lock_owner == cfs_curproc_pid());
2826         md->lsm_lock_owner = 0;
2827         cfs_spin_unlock(&md->lsm_lock);
2828 }
2829 EXPORT_SYMBOL(lov_stripe_unlock);
2830
2831 static int lov_quotactl(struct obd_device *obd, struct obd_export *exp,
2832                         struct obd_quotactl *oqctl)
2833 {
2834         struct lov_obd      *lov = &obd->u.lov;
2835         struct lov_tgt_desc *tgt;
2836         __u64                curspace = 0;
2837         __u64                bhardlimit = 0;
2838         int                  i, rc = 0;
2839         ENTRY;
2840
2841         if (oqctl->qc_cmd != LUSTRE_Q_QUOTAON &&
2842             oqctl->qc_cmd != LUSTRE_Q_QUOTAOFF &&
2843             oqctl->qc_cmd != Q_GETOQUOTA &&
2844             oqctl->qc_cmd != Q_INITQUOTA &&
2845             oqctl->qc_cmd != LUSTRE_Q_SETQUOTA &&
2846             oqctl->qc_cmd != Q_FINVALIDATE) {
2847                 CERROR("bad quota opc %x for lov obd", oqctl->qc_cmd);
2848                 RETURN(-EFAULT);
2849         }
2850
2851         /* for lov tgt */
2852         obd_getref(obd);
2853         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
2854                 int err;
2855
2856                 tgt = lov->lov_tgts[i];
2857
2858                 if (!tgt)
2859                         continue;
2860
2861                 if (!tgt->ltd_active || tgt->ltd_reap) {
2862                         if (oqctl->qc_cmd == Q_GETOQUOTA &&
2863                             lov->lov_tgts[i]->ltd_activate) {
2864                                 rc = -EREMOTEIO;
2865                                 CERROR("ost %d is inactive\n", i);
2866                         } else {
2867                                 CDEBUG(D_HA, "ost %d is inactive\n", i);
2868                         }
2869                         continue;
2870                 }
2871
2872                 err = obd_quotactl(tgt->ltd_exp, oqctl);
2873                 if (err) {
2874                         if (tgt->ltd_active && !rc)
2875                                 rc = err;
2876                         continue;
2877                 }
2878
2879                 if (oqctl->qc_cmd == Q_GETOQUOTA) {
2880                         curspace += oqctl->qc_dqblk.dqb_curspace;
2881                         bhardlimit += oqctl->qc_dqblk.dqb_bhardlimit;
2882                 }
2883         }
2884         obd_putref(obd);
2885
2886         if (oqctl->qc_cmd == Q_GETOQUOTA) {
2887                 oqctl->qc_dqblk.dqb_curspace = curspace;
2888                 oqctl->qc_dqblk.dqb_bhardlimit = bhardlimit;
2889         }
2890         RETURN(rc);
2891 }
2892
2893 static int lov_quotacheck(struct obd_device *obd, struct obd_export *exp,
2894                           struct obd_quotactl *oqctl)
2895 {
2896         struct lov_obd *lov = &obd->u.lov;
2897         int             i, rc = 0;
2898         ENTRY;
2899
2900         obd_getref(obd);
2901
2902         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
2903                 if (!lov->lov_tgts[i])
2904                         continue;
2905
2906                 /* Skip quota check on the administratively disabled OSTs. */
2907                 if (!lov->lov_tgts[i]->ltd_activate) {
2908                         CWARN("lov idx %d was administratively disabled, "
2909                               "skip quotacheck on it.\n", i);
2910                         continue;
2911                 }
2912
2913                 if (!lov->lov_tgts[i]->ltd_active) {
2914                         CERROR("lov idx %d inactive\n", i);
2915                         rc = -EIO;
2916                         goto out;
2917                 }
2918         }
2919
2920         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
2921                 int err;
2922
2923                 if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_activate)
2924                         continue;
2925
2926                 err = obd_quotacheck(lov->lov_tgts[i]->ltd_exp, oqctl);
2927                 if (err && !rc)
2928                         rc = err;
2929         }
2930
2931 out:
2932         obd_putref(obd);
2933
2934         RETURN(rc);
2935 }
2936
2937 int lov_quota_adjust_qunit(struct obd_export *exp,
2938                            struct quota_adjust_qunit *oqaq,
2939                            struct lustre_quota_ctxt *qctxt,
2940                            struct ptlrpc_request_set *rqset)
2941 {
2942         struct obd_device *obd = class_exp2obd(exp);
2943         struct lov_obd    *lov = &obd->u.lov;
2944         int                i, err, rc = 0;
2945         unsigned           no_set = 0;
2946         ENTRY;
2947
2948         if (!QAQ_IS_ADJBLK(oqaq)) {
2949                 CERROR("bad qaq_flags %x for lov obd.\n", oqaq->qaq_flags);
2950                 RETURN(-EFAULT);
2951         }
2952
2953         if (rqset == NULL) {
2954                 rqset = ptlrpc_prep_set();
2955                 if (!rqset)
2956                         RETURN(-ENOMEM);
2957                 no_set = 1;
2958         }
2959
2960         obd_getref(obd);
2961         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
2962
2963                 if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_active) {
2964                         CDEBUG(D_HA, "ost %d is inactive\n", i);
2965                         continue;
2966                 }
2967
2968                 err = obd_quota_adjust_qunit(lov->lov_tgts[i]->ltd_exp, oqaq,
2969                                              NULL, rqset);
2970                 if (err) {
2971                         if (lov->lov_tgts[i]->ltd_active && !rc)
2972                                 rc = err;
2973                         continue;
2974                 }
2975         }
2976
2977         err = ptlrpc_set_wait(rqset);
2978         if (!rc)
2979                 rc = err;
2980
2981         /* Destroy the set if none was provided by the caller */
2982         if (no_set)
2983                 ptlrpc_set_destroy(rqset);
2984
2985         obd_putref(obd);
2986         RETURN(rc);
2987 }
2988
2989 struct obd_ops lov_obd_ops = {
2990         .o_owner               = THIS_MODULE,
2991         .o_setup               = lov_setup,
2992         .o_precleanup          = lov_precleanup,
2993         .o_cleanup             = lov_cleanup,
2994         //.o_process_config      = lov_process_config,
2995         .o_connect             = lov_connect,
2996         .o_disconnect          = lov_disconnect,
2997         .o_statfs              = lov_statfs,
2998         .o_statfs_async        = lov_statfs_async,
2999         .o_packmd              = lov_packmd,
3000         .o_unpackmd            = lov_unpackmd,
3001         .o_create              = lov_create,
3002         .o_destroy             = lov_destroy,
3003         .o_getattr             = lov_getattr,
3004         .o_getattr_async       = lov_getattr_async,
3005         .o_setattr             = lov_setattr,
3006         .o_setattr_async       = lov_setattr_async,
3007         .o_brw                 = lov_brw,
3008         .o_merge_lvb           = lov_merge_lvb,
3009         .o_adjust_kms          = lov_adjust_kms,
3010         .o_punch               = lov_punch,
3011         .o_sync                = lov_sync,
3012         .o_enqueue             = lov_enqueue,
3013         .o_change_cbdata       = lov_change_cbdata,
3014         .o_find_cbdata         = lov_find_cbdata,
3015         .o_cancel              = lov_cancel,
3016         .o_cancel_unused       = lov_cancel_unused,
3017         .o_iocontrol           = lov_iocontrol,
3018         .o_get_info            = lov_get_info,
3019         .o_set_info_async      = lov_set_info_async,
3020         .o_extent_calc         = lov_extent_calc,
3021         .o_llog_init           = lov_llog_init,
3022         .o_llog_finish         = lov_llog_finish,
3023         .o_notify              = lov_notify,
3024         .o_pool_new            = lov_pool_new,
3025         .o_pool_rem            = lov_pool_remove,
3026         .o_pool_add            = lov_pool_add,
3027         .o_pool_del            = lov_pool_del,
3028         .o_getref              = lov_getref,
3029         .o_putref              = lov_putref,
3030         .o_quotactl            = lov_quotactl,
3031         .o_quotacheck          = lov_quotacheck,
3032         .o_quota_adjust_qunit  = lov_quota_adjust_qunit,
3033 };
3034
3035 static quota_interface_t *quota_interface;
3036 extern quota_interface_t lov_quota_interface;
3037
3038 cfs_mem_cache_t *lov_oinfo_slab;
3039
3040 extern struct lu_kmem_descr lov_caches[];
3041
3042 int __init lov_init(void)
3043 {
3044         struct lprocfs_static_vars lvars = { 0 };
3045         int rc, rc2;
3046         ENTRY;
3047
3048         /* print an address of _any_ initialized kernel symbol from this
3049          * module, to allow debugging with gdb that doesn't support data
3050          * symbols from modules.*/
3051         CDEBUG(D_INFO, "Lustre LOV module (%p).\n", &lov_caches);
3052
3053         rc = lu_kmem_init(lov_caches);
3054         if (rc)
3055                 return rc;
3056
3057         lov_oinfo_slab = cfs_mem_cache_create("lov_oinfo",
3058                                               sizeof(struct lov_oinfo),
3059                                               0, CFS_SLAB_HWCACHE_ALIGN);
3060         if (lov_oinfo_slab == NULL) {
3061                 lu_kmem_fini(lov_caches);
3062                 return -ENOMEM;
3063         }
3064         lprocfs_lov_init_vars(&lvars);
3065
3066         cfs_request_module("lquota");
3067         quota_interface = PORTAL_SYMBOL_GET(lov_quota_interface);
3068         init_obd_quota_ops(quota_interface, &lov_obd_ops);
3069
3070         rc = class_register_type(&lov_obd_ops, NULL, lvars.module_vars,
3071                                  LUSTRE_LOV_NAME, &lov_device_type);
3072
3073         if (rc) {
3074                 if (quota_interface)
3075                         PORTAL_SYMBOL_PUT(lov_quota_interface);
3076                 rc2 = cfs_mem_cache_destroy(lov_oinfo_slab);
3077                 LASSERT(rc2 == 0);
3078                 lu_kmem_fini(lov_caches);
3079         }
3080
3081         RETURN(rc);
3082 }
3083
3084 #ifdef __KERNEL__
3085 static void /*__exit*/ lov_exit(void)
3086 {
3087         int rc;
3088
3089         lu_device_type_fini(&lov_device_type);
3090         lu_kmem_fini(lov_caches);
3091
3092         if (quota_interface)
3093                 PORTAL_SYMBOL_PUT(lov_quota_interface);
3094
3095         class_unregister_type(LUSTRE_LOV_NAME);
3096         rc = cfs_mem_cache_destroy(lov_oinfo_slab);
3097         LASSERT(rc == 0);
3098 }
3099
3100 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
3101 MODULE_DESCRIPTION("Lustre Logical Object Volume OBD driver");
3102 MODULE_LICENSE("GPL");
3103
3104 cfs_module(lov, LUSTRE_VERSION_STRING, lov_init, lov_exit);
3105 #endif