lustre: lmv: Replace uses of OBD_{ALLOC,FREE}_LARGE
[deliverable/linux.git] / drivers / staging / lustre / lustre / lov / lov_obd.c
CommitLineData
d7e09d03
PT
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, Intel Corporation.
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#define DEBUG_SUBSYSTEM S_LOV
9fdaf8c0 45#include "../../include/linux/libcfs/libcfs.h"
d7e09d03 46
0cf0f7a7
GKH
47#include "../include/obd_support.h"
48#include "../include/lustre_lib.h"
49#include "../include/lustre_net.h"
50#include "../include/lustre/lustre_idl.h"
51#include "../include/lustre_dlm.h"
52#include "../include/lustre_mds.h"
53#include "../include/obd_class.h"
0cf0f7a7
GKH
54#include "../include/lprocfs_status.h"
55#include "../include/lustre_param.h"
56#include "../include/cl_object.h"
57#include "../include/lclient.h" /* for cl_client_lru */
58#include "../include/lustre/ll_fiemap.h"
59#include "../include/lustre_fid.h"
d7e09d03
PT
60
61#include "lov_internal.h"
62
63/* Keep a refcount of lov->tgt usage to prevent racing with addition/deletion.
64 Any function that expects lov_tgts to remain stationary must take a ref. */
65static void lov_getref(struct obd_device *obd)
66{
67 struct lov_obd *lov = &obd->u.lov;
68
69 /* nobody gets through here until lov_putref is done */
70 mutex_lock(&lov->lov_lock);
71 atomic_inc(&lov->lov_refcount);
72 mutex_unlock(&lov->lov_lock);
73 return;
74}
75
76static void __lov_del_obd(struct obd_device *obd, struct lov_tgt_desc *tgt);
77
78static void lov_putref(struct obd_device *obd)
79{
80 struct lov_obd *lov = &obd->u.lov;
81
82 mutex_lock(&lov->lov_lock);
83 /* ok to dec to 0 more than once -- ltd_exp's will be null */
84 if (atomic_dec_and_test(&lov->lov_refcount) && lov->lov_death_row) {
85 LIST_HEAD(kill);
86 int i;
87 struct lov_tgt_desc *tgt, *n;
88 CDEBUG(D_CONFIG, "destroying %d lov targets\n",
89 lov->lov_death_row);
90 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
91 tgt = lov->lov_tgts[i];
92
93 if (!tgt || !tgt->ltd_reap)
94 continue;
95 list_add(&tgt->ltd_kill, &kill);
96 /* XXX - right now there is a dependency on ld_tgt_count
97 * being the maximum tgt index for computing the
98 * mds_max_easize. So we can't shrink it. */
99 lov_ost_pool_remove(&lov->lov_packed, i);
100 lov->lov_tgts[i] = NULL;
101 lov->lov_death_row--;
102 }
103 mutex_unlock(&lov->lov_lock);
104
105 list_for_each_entry_safe(tgt, n, &kill, ltd_kill) {
106 list_del(&tgt->ltd_kill);
107 /* Disconnect */
108 __lov_del_obd(obd, tgt);
109 }
110 } else {
111 mutex_unlock(&lov->lov_lock);
112 }
113}
114
115static int lov_set_osc_active(struct obd_device *obd, struct obd_uuid *uuid,
116 enum obd_notify_event ev);
117static int lov_notify(struct obd_device *obd, struct obd_device *watched,
118 enum obd_notify_event ev, void *data);
119
120
121#define MAX_STRING_SIZE 128
122int lov_connect_obd(struct obd_device *obd, __u32 index, int activate,
123 struct obd_connect_data *data)
124{
125 struct lov_obd *lov = &obd->u.lov;
126 struct obd_uuid *tgt_uuid;
127 struct obd_device *tgt_obd;
128 static struct obd_uuid lov_osc_uuid = { "LOV_OSC_UUID" };
129 struct obd_import *imp;
d7e09d03 130 int rc;
d7e09d03
PT
131
132 if (!lov->lov_tgts[index])
0a3bdb00 133 return -EINVAL;
d7e09d03
PT
134
135 tgt_uuid = &lov->lov_tgts[index]->ltd_uuid;
136 tgt_obd = lov->lov_tgts[index]->ltd_obd;
137
138 if (!tgt_obd->obd_set_up) {
139 CERROR("Target %s not set up\n", obd_uuid2str(tgt_uuid));
0a3bdb00 140 return -EINVAL;
d7e09d03
PT
141 }
142
143 /* override the sp_me from lov */
144 tgt_obd->u.cli.cl_sp_me = lov->lov_sp_me;
145
146 if (data && (data->ocd_connect_flags & OBD_CONNECT_INDEX))
147 data->ocd_index = index;
148
149 /*
150 * Divine LOV knows that OBDs under it are OSCs.
151 */
152 imp = tgt_obd->u.cli.cl_import;
153
154 if (activate) {
155 tgt_obd->obd_no_recov = 0;
156 /* FIXME this is probably supposed to be
157 ptlrpc_set_import_active. Horrible naming. */
158 ptlrpc_activate_import(imp);
159 }
160
161 rc = obd_register_observer(tgt_obd, obd);
162 if (rc) {
163 CERROR("Target %s register_observer error %d\n",
164 obd_uuid2str(tgt_uuid), rc);
0a3bdb00 165 return rc;
d7e09d03
PT
166 }
167
168
169 if (imp->imp_invalid) {
2d00bd17
JP
170 CDEBUG(D_CONFIG, "not connecting OSC %s; administratively disabled\n",
171 obd_uuid2str(tgt_uuid));
0a3bdb00 172 return 0;
d7e09d03
PT
173 }
174
175 rc = obd_connect(NULL, &lov->lov_tgts[index]->ltd_exp, tgt_obd,
176 &lov_osc_uuid, data, NULL);
177 if (rc || !lov->lov_tgts[index]->ltd_exp) {
178 CERROR("Target %s connect error %d\n",
179 obd_uuid2str(tgt_uuid), rc);
0a3bdb00 180 return -ENODEV;
d7e09d03
PT
181 }
182
183 lov->lov_tgts[index]->ltd_reap = 0;
184
185 CDEBUG(D_CONFIG, "Connected tgt idx %d %s (%s) %sactive\n", index,
186 obd_uuid2str(tgt_uuid), tgt_obd->obd_name, activate ? "":"in");
187
cb1debff
OD
188 if (lov->lov_tgts_kobj)
189 /* Even if we failed, that's ok */
190 rc = sysfs_create_link(lov->lov_tgts_kobj, &tgt_obd->obd_kobj,
191 tgt_obd->obd_name);
d7e09d03 192
0a3bdb00 193 return 0;
d7e09d03
PT
194}
195
196static int lov_connect(const struct lu_env *env,
197 struct obd_export **exp, struct obd_device *obd,
198 struct obd_uuid *cluuid, struct obd_connect_data *data,
199 void *localdata)
200{
201 struct lov_obd *lov = &obd->u.lov;
202 struct lov_tgt_desc *tgt;
203 struct lustre_handle conn;
204 int i, rc;
d7e09d03
PT
205
206 CDEBUG(D_CONFIG, "connect #%d\n", lov->lov_connects);
207
208 rc = class_connect(&conn, obd, cluuid);
209 if (rc)
0a3bdb00 210 return rc;
d7e09d03
PT
211
212 *exp = class_conn2export(&conn);
213
214 /* Why should there ever be more than 1 connect? */
215 lov->lov_connects++;
216 LASSERT(lov->lov_connects == 1);
217
218 memset(&lov->lov_ocd, 0, sizeof(lov->lov_ocd));
219 if (data)
220 lov->lov_ocd = *data;
221
222 obd_getref(obd);
cb1debff
OD
223
224 lov->lov_tgts_kobj = kobject_create_and_add("target_obds",
225 &obd->obd_kobj);
226
d7e09d03
PT
227 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
228 tgt = lov->lov_tgts[i];
229 if (!tgt || obd_uuid_empty(&tgt->ltd_uuid))
230 continue;
231 /* Flags will be lowest common denominator */
232 rc = lov_connect_obd(obd, i, tgt->ltd_activate, &lov->lov_ocd);
233 if (rc) {
234 CERROR("%s: lov connect tgt %d failed: %d\n",
235 obd->obd_name, i, rc);
236 continue;
237 }
238 /* connect to administrative disabled ost */
239 if (!lov->lov_tgts[i]->ltd_exp)
240 continue;
241
242 rc = lov_notify(obd, lov->lov_tgts[i]->ltd_exp->exp_obd,
243 OBD_NOTIFY_CONNECT, (void *)&i);
244 if (rc) {
245 CERROR("%s error sending notify %d\n",
246 obd->obd_name, rc);
247 }
248 }
249 obd_putref(obd);
250
0a3bdb00 251 return 0;
d7e09d03
PT
252}
253
254static int lov_disconnect_obd(struct obd_device *obd, struct lov_tgt_desc *tgt)
255{
d7e09d03
PT
256 struct lov_obd *lov = &obd->u.lov;
257 struct obd_device *osc_obd;
258 int rc;
d7e09d03
PT
259
260 osc_obd = class_exp2obd(tgt->ltd_exp);
261 CDEBUG(D_CONFIG, "%s: disconnecting target %s\n",
3456a40e 262 obd->obd_name, osc_obd ? osc_obd->obd_name : "NULL");
d7e09d03
PT
263
264 if (tgt->ltd_active) {
265 tgt->ltd_active = 0;
266 lov->desc.ld_active_tgt_count--;
267 tgt->ltd_exp->exp_obd->obd_inactive = 1;
268 }
269
d7e09d03 270 if (osc_obd) {
cb1debff
OD
271 if (lov->lov_tgts_kobj)
272 sysfs_remove_link(lov->lov_tgts_kobj,
273 osc_obd->obd_name);
274
d7e09d03
PT
275 /* Pass it on to our clients.
276 * XXX This should be an argument to disconnect,
277 * XXX not a back-door flag on the OBD. Ah well.
278 */
279 osc_obd->obd_force = obd->obd_force;
280 osc_obd->obd_fail = obd->obd_fail;
281 osc_obd->obd_no_recov = obd->obd_no_recov;
282 }
283
284 obd_register_observer(osc_obd, NULL);
285
286 rc = obd_disconnect(tgt->ltd_exp);
287 if (rc) {
288 CERROR("Target %s disconnect error %d\n",
289 tgt->ltd_uuid.uuid, rc);
290 rc = 0;
291 }
292
293 tgt->ltd_exp = NULL;
0a3bdb00 294 return 0;
d7e09d03
PT
295}
296
297static int lov_disconnect(struct obd_export *exp)
298{
299 struct obd_device *obd = class_exp2obd(exp);
300 struct lov_obd *lov = &obd->u.lov;
301 int i, rc;
d7e09d03
PT
302
303 if (!lov->lov_tgts)
304 goto out;
305
306 /* Only disconnect the underlying layers on the final disconnect. */
307 lov->lov_connects--;
308 if (lov->lov_connects != 0) {
309 /* why should there be more than 1 connect? */
310 CERROR("disconnect #%d\n", lov->lov_connects);
311 goto out;
312 }
313
314 /* Let's hold another reference so lov_del_obd doesn't spin through
315 putref every time */
316 obd_getref(obd);
317
318 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
319 if (lov->lov_tgts[i] && lov->lov_tgts[i]->ltd_exp) {
320 /* Disconnection is the last we know about an obd */
2046a81d 321 lov_del_target(obd, i, NULL, lov->lov_tgts[i]->ltd_gen);
d7e09d03
PT
322 }
323 }
cb1debff
OD
324
325 if (lov->lov_tgts_kobj)
326 kobject_put(lov->lov_tgts_kobj);
327
d7e09d03
PT
328 obd_putref(obd);
329
330out:
331 rc = class_disconnect(exp); /* bz 9811 */
0a3bdb00 332 return rc;
d7e09d03
PT
333}
334
335/* Error codes:
336 *
337 * -EINVAL : UUID can't be found in the LOV's target list
338 * -ENOTCONN: The UUID is found, but the target connection is bad (!)
339 * -EBADF : The UUID is found, but the OBD is the wrong type (!)
340 * any >= 0 : is log target index
341 */
342static int lov_set_osc_active(struct obd_device *obd, struct obd_uuid *uuid,
343 enum obd_notify_event ev)
344{
345 struct lov_obd *lov = &obd->u.lov;
346 struct lov_tgt_desc *tgt;
347 int index, activate, active;
d7e09d03
PT
348
349 CDEBUG(D_INFO, "Searching in lov %p for uuid %s event(%d)\n",
350 lov, uuid->uuid, ev);
351
352 obd_getref(obd);
353 for (index = 0; index < lov->desc.ld_tgt_count; index++) {
354 tgt = lov->lov_tgts[index];
355 if (!tgt)
356 continue;
357 /*
358 * LU-642, initially inactive OSC could miss the obd_connect,
359 * we make up for it here.
360 */
361 if (ev == OBD_NOTIFY_ACTIVATE && tgt->ltd_exp == NULL &&
362 obd_uuid_equals(uuid, &tgt->ltd_uuid)) {
363 struct obd_uuid lov_osc_uuid = {"LOV_OSC_UUID"};
364
365 obd_connect(NULL, &tgt->ltd_exp, tgt->ltd_obd,
366 &lov_osc_uuid, &lov->lov_ocd, NULL);
367 }
368 if (!tgt->ltd_exp)
369 continue;
370
55f5a824 371 CDEBUG(D_INFO, "lov idx %d is %s conn %#llx\n",
d7e09d03
PT
372 index, obd_uuid2str(&tgt->ltd_uuid),
373 tgt->ltd_exp->exp_handle.h_cookie);
374 if (obd_uuid_equals(uuid, &tgt->ltd_uuid))
375 break;
376 }
377
18751668
JL
378 if (index == lov->desc.ld_tgt_count) {
379 index = -EINVAL;
380 goto out;
381 }
d7e09d03
PT
382
383 if (ev == OBD_NOTIFY_DEACTIVATE || ev == OBD_NOTIFY_ACTIVATE) {
384 activate = (ev == OBD_NOTIFY_ACTIVATE) ? 1 : 0;
385
386 if (lov->lov_tgts[index]->ltd_activate == activate) {
387 CDEBUG(D_INFO, "OSC %s already %sactivate!\n",
388 uuid->uuid, activate ? "" : "de");
389 } else {
390 lov->lov_tgts[index]->ltd_activate = activate;
391 CDEBUG(D_CONFIG, "%sactivate OSC %s\n",
392 activate ? "" : "de", obd_uuid2str(uuid));
393 }
394
395 } else if (ev == OBD_NOTIFY_INACTIVE || ev == OBD_NOTIFY_ACTIVE) {
396 active = (ev == OBD_NOTIFY_ACTIVE) ? 1 : 0;
397
398 if (lov->lov_tgts[index]->ltd_active == active) {
399 CDEBUG(D_INFO, "OSC %s already %sactive!\n",
400 uuid->uuid, active ? "" : "in");
18751668 401 goto out;
d7e09d03
PT
402 } else {
403 CDEBUG(D_CONFIG, "Marking OSC %s %sactive\n",
404 obd_uuid2str(uuid), active ? "" : "in");
405 }
406
407 lov->lov_tgts[index]->ltd_active = active;
408 if (active) {
409 lov->desc.ld_active_tgt_count++;
410 lov->lov_tgts[index]->ltd_exp->exp_obd->obd_inactive = 0;
411 } else {
412 lov->desc.ld_active_tgt_count--;
413 lov->lov_tgts[index]->ltd_exp->exp_obd->obd_inactive = 1;
414 }
415 } else {
416 CERROR("Unknown event(%d) for uuid %s", ev, uuid->uuid);
417 }
418
419 out:
420 obd_putref(obd);
0a3bdb00 421 return index;
d7e09d03
PT
422}
423
424static int lov_notify(struct obd_device *obd, struct obd_device *watched,
425 enum obd_notify_event ev, void *data)
426{
427 int rc = 0;
428 struct lov_obd *lov = &obd->u.lov;
d7e09d03
PT
429
430 down_read(&lov->lov_notify_lock);
431 if (!lov->lov_connects) {
432 up_read(&lov->lov_notify_lock);
0a3bdb00 433 return rc;
d7e09d03
PT
434 }
435
436 if (ev == OBD_NOTIFY_ACTIVE || ev == OBD_NOTIFY_INACTIVE ||
437 ev == OBD_NOTIFY_ACTIVATE || ev == OBD_NOTIFY_DEACTIVATE) {
438 struct obd_uuid *uuid;
439
440 LASSERT(watched);
441
442 if (strcmp(watched->obd_type->typ_name, LUSTRE_OSC_NAME)) {
443 up_read(&lov->lov_notify_lock);
444 CERROR("unexpected notification of %s %s!\n",
445 watched->obd_type->typ_name,
446 watched->obd_name);
0a3bdb00 447 return -EINVAL;
d7e09d03
PT
448 }
449 uuid = &watched->u.cli.cl_target_uuid;
450
451 /* Set OSC as active before notifying the observer, so the
452 * observer can use the OSC normally.
453 */
454 rc = lov_set_osc_active(obd, uuid, ev);
455 if (rc < 0) {
456 up_read(&lov->lov_notify_lock);
457 CERROR("event(%d) of %s failed: %d\n", ev,
458 obd_uuid2str(uuid), rc);
0a3bdb00 459 return rc;
d7e09d03
PT
460 }
461 /* active event should be pass lov target index as data */
462 data = &rc;
463 }
464
465 /* Pass the notification up the chain. */
466 if (watched) {
467 rc = obd_notify_observer(obd, watched, ev, data);
468 } else {
469 /* NULL watched means all osc's in the lov (only for syncs) */
470 /* sync event should be send lov idx as data */
471 struct lov_obd *lov = &obd->u.lov;
472 int i, is_sync;
473
474 data = &i;
475 is_sync = (ev == OBD_NOTIFY_SYNC) ||
476 (ev == OBD_NOTIFY_SYNC_NONBLOCK);
477
478 obd_getref(obd);
479 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
480 if (!lov->lov_tgts[i])
481 continue;
482
483 /* don't send sync event if target not
484 * connected/activated */
485 if (is_sync && !lov->lov_tgts[i]->ltd_active)
486 continue;
487
488 rc = obd_notify_observer(obd, lov->lov_tgts[i]->ltd_obd,
489 ev, data);
490 if (rc) {
491 CERROR("%s: notify %s of %s failed %d\n",
492 obd->obd_name,
493 obd->obd_observer->obd_name,
494 lov->lov_tgts[i]->ltd_obd->obd_name,
495 rc);
496 }
497 }
498 obd_putref(obd);
499 }
500
501 up_read(&lov->lov_notify_lock);
0a3bdb00 502 return rc;
d7e09d03
PT
503}
504
505static int lov_add_target(struct obd_device *obd, struct obd_uuid *uuidp,
506 __u32 index, int gen, int active)
507{
508 struct lov_obd *lov = &obd->u.lov;
509 struct lov_tgt_desc *tgt;
510 struct obd_device *tgt_obd;
511 int rc;
d7e09d03
PT
512
513 CDEBUG(D_CONFIG, "uuid:%s idx:%d gen:%d active:%d\n",
514 uuidp->uuid, index, gen, active);
515
516 if (gen <= 0) {
517 CERROR("request to add OBD %s with invalid generation: %d\n",
518 uuidp->uuid, gen);
0a3bdb00 519 return -EINVAL;
d7e09d03
PT
520 }
521
522 tgt_obd = class_find_client_obd(uuidp, LUSTRE_OSC_NAME,
523 &obd->obd_uuid);
524 if (tgt_obd == NULL)
0a3bdb00 525 return -EINVAL;
d7e09d03
PT
526
527 mutex_lock(&lov->lov_lock);
528
529 if ((index < lov->lov_tgt_size) && (lov->lov_tgts[index] != NULL)) {
530 tgt = lov->lov_tgts[index];
531 CERROR("UUID %s already assigned at LOV target index %d\n",
532 obd_uuid2str(&tgt->ltd_uuid), index);
533 mutex_unlock(&lov->lov_lock);
0a3bdb00 534 return -EEXIST;
d7e09d03
PT
535 }
536
537 if (index >= lov->lov_tgt_size) {
538 /* We need to reallocate the lov target array. */
539 struct lov_tgt_desc **newtgts, **old = NULL;
540 __u32 newsize, oldsize = 0;
541
2c0514ee 542 newsize = max_t(__u32, lov->lov_tgt_size, 2);
d7e09d03 543 while (newsize < index + 1)
09c99f8f 544 newsize <<= 1;
840c94d5 545 newtgts = kcalloc(newsize, sizeof(*newtgts), GFP_NOFS);
d7e09d03
PT
546 if (newtgts == NULL) {
547 mutex_unlock(&lov->lov_lock);
0a3bdb00 548 return -ENOMEM;
d7e09d03
PT
549 }
550
551 if (lov->lov_tgt_size) {
552 memcpy(newtgts, lov->lov_tgts, sizeof(*newtgts) *
553 lov->lov_tgt_size);
554 old = lov->lov_tgts;
555 oldsize = lov->lov_tgt_size;
556 }
557
558 lov->lov_tgts = newtgts;
559 lov->lov_tgt_size = newsize;
560 smp_rmb();
c93f5463 561 kfree(old);
d7e09d03
PT
562
563 CDEBUG(D_CONFIG, "tgts: %p size: %d\n",
564 lov->lov_tgts, lov->lov_tgt_size);
565 }
566
840c94d5 567 tgt = kzalloc(sizeof(*tgt), GFP_NOFS);
d7e09d03
PT
568 if (!tgt) {
569 mutex_unlock(&lov->lov_lock);
0a3bdb00 570 return -ENOMEM;
d7e09d03
PT
571 }
572
573 rc = lov_ost_pool_add(&lov->lov_packed, index, lov->lov_tgt_size);
574 if (rc) {
575 mutex_unlock(&lov->lov_lock);
840c94d5 576 kfree(tgt);
0a3bdb00 577 return rc;
d7e09d03
PT
578 }
579
580 tgt->ltd_uuid = *uuidp;
581 tgt->ltd_obd = tgt_obd;
582 /* XXX - add a sanity check on the generation number. */
583 tgt->ltd_gen = gen;
584 tgt->ltd_index = index;
585 tgt->ltd_activate = active;
586 lov->lov_tgts[index] = tgt;
587 if (index >= lov->desc.ld_tgt_count)
588 lov->desc.ld_tgt_count = index + 1;
589
590 mutex_unlock(&lov->lov_lock);
591
592 CDEBUG(D_CONFIG, "idx=%d ltd_gen=%d ld_tgt_count=%d\n",
593 index, tgt->ltd_gen, lov->desc.ld_tgt_count);
594
595 rc = obd_notify(obd, tgt_obd, OBD_NOTIFY_CREATE, &index);
596
597 if (lov->lov_connects == 0) {
598 /* lov_connect hasn't been called yet. We'll do the
599 lov_connect_obd on this target when that fn first runs,
600 because we don't know the connect flags yet. */
0a3bdb00 601 return 0;
d7e09d03
PT
602 }
603
604 obd_getref(obd);
605
606 rc = lov_connect_obd(obd, index, active, &lov->lov_ocd);
607 if (rc)
18751668 608 goto out;
d7e09d03
PT
609
610 /* connect to administrative disabled ost */
18751668
JL
611 if (!tgt->ltd_exp) {
612 rc = 0;
613 goto out;
614 }
d7e09d03
PT
615
616 if (lov->lov_cache != NULL) {
617 rc = obd_set_info_async(NULL, tgt->ltd_exp,
618 sizeof(KEY_CACHE_SET), KEY_CACHE_SET,
619 sizeof(struct cl_client_cache), lov->lov_cache,
620 NULL);
621 if (rc < 0)
18751668 622 goto out;
d7e09d03
PT
623 }
624
625 rc = lov_notify(obd, tgt->ltd_exp->exp_obd,
626 active ? OBD_NOTIFY_CONNECT : OBD_NOTIFY_INACTIVE,
627 (void *)&index);
628
629out:
630 if (rc) {
631 CERROR("add failed (%d), deleting %s\n", rc,
632 obd_uuid2str(&tgt->ltd_uuid));
2046a81d 633 lov_del_target(obd, index, NULL, 0);
d7e09d03
PT
634 }
635 obd_putref(obd);
0a3bdb00 636 return rc;
d7e09d03
PT
637}
638
639/* Schedule a target for deletion */
640int lov_del_target(struct obd_device *obd, __u32 index,
641 struct obd_uuid *uuidp, int gen)
642{
643 struct lov_obd *lov = &obd->u.lov;
644 int count = lov->desc.ld_tgt_count;
645 int rc = 0;
d7e09d03
PT
646
647 if (index >= count) {
648 CERROR("LOV target index %d >= number of LOV OBDs %d.\n",
649 index, count);
0a3bdb00 650 return -EINVAL;
d7e09d03
PT
651 }
652
653 /* to make sure there's no ongoing lov_notify() now */
654 down_write(&lov->lov_notify_lock);
655 obd_getref(obd);
656
657 if (!lov->lov_tgts[index]) {
658 CERROR("LOV target at index %d is not setup.\n", index);
18751668
JL
659 rc = -EINVAL;
660 goto out;
d7e09d03
PT
661 }
662
663 if (uuidp && !obd_uuid_equals(uuidp, &lov->lov_tgts[index]->ltd_uuid)) {
664 CERROR("LOV target UUID %s at index %d doesn't match %s.\n",
665 lov_uuid2str(lov, index), index,
666 obd_uuid2str(uuidp));
18751668
JL
667 rc = -EINVAL;
668 goto out;
d7e09d03
PT
669 }
670
671 CDEBUG(D_CONFIG, "uuid: %s idx: %d gen: %d exp: %p active: %d\n",
672 lov_uuid2str(lov, index), index,
673 lov->lov_tgts[index]->ltd_gen, lov->lov_tgts[index]->ltd_exp,
674 lov->lov_tgts[index]->ltd_active);
675
676 lov->lov_tgts[index]->ltd_reap = 1;
677 lov->lov_death_row++;
678 /* we really delete it from obd_putref */
679out:
680 obd_putref(obd);
681 up_write(&lov->lov_notify_lock);
682
0a3bdb00 683 return rc;
d7e09d03
PT
684}
685
686static void __lov_del_obd(struct obd_device *obd, struct lov_tgt_desc *tgt)
687{
688 struct obd_device *osc_obd;
689
690 LASSERT(tgt);
691 LASSERT(tgt->ltd_reap);
692
693 osc_obd = class_exp2obd(tgt->ltd_exp);
694
695 CDEBUG(D_CONFIG, "Removing tgt %s : %s\n",
696 tgt->ltd_uuid.uuid,
697 osc_obd ? osc_obd->obd_name : "<no obd>");
698
699 if (tgt->ltd_exp)
700 lov_disconnect_obd(obd, tgt);
701
840c94d5 702 kfree(tgt);
d7e09d03
PT
703
704 /* Manual cleanup - no cleanup logs to clean up the osc's. We must
705 do it ourselves. And we can't do it from lov_cleanup,
706 because we just lost our only reference to it. */
707 if (osc_obd)
708 class_manual_cleanup(osc_obd);
709}
710
711void lov_fix_desc_stripe_size(__u64 *val)
712{
50dc198a
AD
713 if (*val < LOV_MIN_STRIPE_SIZE) {
714 if (*val != 0)
2d00bd17 715 LCONSOLE_INFO("Increasing default stripe size to minimum %u\n",
081b7265
JH
716 LOV_DESC_STRIPE_SIZE_DEFAULT);
717 *val = LOV_DESC_STRIPE_SIZE_DEFAULT;
d7e09d03
PT
718 } else if (*val & (LOV_MIN_STRIPE_SIZE - 1)) {
719 *val &= ~(LOV_MIN_STRIPE_SIZE - 1);
b0f5aad5 720 LCONSOLE_WARN("Changing default stripe size to %llu (a multiple of %u)\n",
d7e09d03
PT
721 *val, LOV_MIN_STRIPE_SIZE);
722 }
723}
724
725void lov_fix_desc_stripe_count(__u32 *val)
726{
727 if (*val == 0)
728 *val = 1;
729}
730
731void lov_fix_desc_pattern(__u32 *val)
732{
733 /* from lov_setstripe */
734 if ((*val != 0) && (*val != LOV_PATTERN_RAID0)) {
735 LCONSOLE_WARN("Unknown stripe pattern: %#x\n", *val);
736 *val = 0;
737 }
738}
739
740void lov_fix_desc_qos_maxage(__u32 *val)
741{
d7e09d03 742 if (*val == 0)
081b7265 743 *val = LOV_DESC_QOS_MAXAGE_DEFAULT;
d7e09d03
PT
744}
745
746void lov_fix_desc(struct lov_desc *desc)
747{
748 lov_fix_desc_stripe_size(&desc->ld_default_stripe_size);
749 lov_fix_desc_stripe_count(&desc->ld_default_stripe_count);
750 lov_fix_desc_pattern(&desc->ld_pattern);
751 lov_fix_desc_qos_maxage(&desc->ld_qos_maxage);
752}
753
754int lov_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
755{
2046a81d 756 struct lprocfs_static_vars lvars = { NULL };
d7e09d03
PT
757 struct lov_desc *desc;
758 struct lov_obd *lov = &obd->u.lov;
759 int rc;
d7e09d03
PT
760
761 if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
762 CERROR("LOV setup requires a descriptor\n");
0a3bdb00 763 return -EINVAL;
d7e09d03
PT
764 }
765
766 desc = (struct lov_desc *)lustre_cfg_buf(lcfg, 1);
767
768 if (sizeof(*desc) > LUSTRE_CFG_BUFLEN(lcfg, 1)) {
769 CERROR("descriptor size wrong: %d > %d\n",
770 (int)sizeof(*desc), LUSTRE_CFG_BUFLEN(lcfg, 1));
0a3bdb00 771 return -EINVAL;
d7e09d03
PT
772 }
773
774 if (desc->ld_magic != LOV_DESC_MAGIC) {
775 if (desc->ld_magic == __swab32(LOV_DESC_MAGIC)) {
776 CDEBUG(D_OTHER, "%s: Swabbing lov desc %p\n",
777 obd->obd_name, desc);
778 lustre_swab_lov_desc(desc);
779 } else {
780 CERROR("%s: Bad lov desc magic: %#x\n",
781 obd->obd_name, desc->ld_magic);
0a3bdb00 782 return -EINVAL;
d7e09d03
PT
783 }
784 }
785
786 lov_fix_desc(desc);
787
788 desc->ld_active_tgt_count = 0;
789 lov->desc = *desc;
790 lov->lov_tgt_size = 0;
791
792 mutex_init(&lov->lov_lock);
793 atomic_set(&lov->lov_refcount, 0);
794 lov->lov_sp_me = LUSTRE_SP_CLI;
795
796 init_rwsem(&lov->lov_notify_lock);
797
798 lov->lov_pools_hash_body = cfs_hash_create("POOLS", HASH_POOLS_CUR_BITS,
799 HASH_POOLS_MAX_BITS,
800 HASH_POOLS_BKT_BITS, 0,
801 CFS_HASH_MIN_THETA,
802 CFS_HASH_MAX_THETA,
803 &pool_hash_operations,
804 CFS_HASH_DEFAULT);
805 INIT_LIST_HEAD(&lov->lov_pool_list);
806 lov->lov_pool_count = 0;
807 rc = lov_ost_pool_init(&lov->lov_packed, 0);
808 if (rc)
18751668 809 goto out;
d7e09d03
PT
810
811 lprocfs_lov_init_vars(&lvars);
9b801302 812 lprocfs_obd_setup(obd, lvars.obd_vars, lvars.sysfs_vars);
d7e09d03 813
61e87ab0
DE
814 rc = ldebugfs_seq_create(obd->obd_debugfs_entry, "target_obd",
815 0444, &lov_proc_target_fops, obd);
816 if (rc)
817 CWARN("Error adding the target_obd file\n");
d7e09d03 818
61e87ab0
DE
819 lov->lov_pool_debugfs_entry = ldebugfs_register("pools",
820 obd->obd_debugfs_entry,
821 NULL, NULL);
0a3bdb00 822 return 0;
d7e09d03
PT
823
824out:
825 return rc;
826}
827
828static int lov_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
829{
d7e09d03
PT
830 struct lov_obd *lov = &obd->u.lov;
831
d7e09d03
PT
832 switch (stage) {
833 case OBD_CLEANUP_EARLY: {
834 int i;
835 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
836 if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_active)
837 continue;
838 obd_precleanup(class_exp2obd(lov->lov_tgts[i]->ltd_exp),
839 OBD_CLEANUP_EARLY);
840 }
841 break;
842 }
a5d490c2 843 default:
d7e09d03
PT
844 break;
845 }
a5d490c2 846
e588f1bf 847 return 0;
d7e09d03
PT
848}
849
850static int lov_cleanup(struct obd_device *obd)
851{
852 struct lov_obd *lov = &obd->u.lov;
853 struct list_head *pos, *tmp;
854 struct pool_desc *pool;
d7e09d03
PT
855
856 list_for_each_safe(pos, tmp, &lov->lov_pool_list) {
857 pool = list_entry(pos, struct pool_desc, pool_list);
858 /* free pool structs */
859 CDEBUG(D_INFO, "delete pool %p\n", pool);
860 /* In the function below, .hs_keycmp resolves to
861 * pool_hashkey_keycmp() */
862 /* coverity[overrun-buffer-val] */
863 lov_pool_del(obd, pool->pool_name);
864 }
865 cfs_hash_putref(lov->lov_pools_hash_body);
866 lov_ost_pool_free(&lov->lov_packed);
867
868 lprocfs_obd_cleanup(obd);
869 if (lov->lov_tgts) {
870 int i;
871 obd_getref(obd);
872 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
873 if (!lov->lov_tgts[i])
874 continue;
875
876 /* Inactive targets may never have connected */
877 if (lov->lov_tgts[i]->ltd_active ||
878 atomic_read(&lov->lov_refcount))
879 /* We should never get here - these
880 should have been removed in the
881 disconnect. */
2d00bd17 882 CERROR("lov tgt %d not cleaned! deathrow=%d, lovrc=%d\n",
d7e09d03
PT
883 i, lov->lov_death_row,
884 atomic_read(&lov->lov_refcount));
e6be8e63 885 lov_del_target(obd, i, NULL, 0);
d7e09d03
PT
886 }
887 obd_putref(obd);
840c94d5 888 kfree(lov->lov_tgts);
d7e09d03
PT
889 lov->lov_tgt_size = 0;
890 }
0a3bdb00 891 return 0;
d7e09d03
PT
892}
893
894int lov_process_config_base(struct obd_device *obd, struct lustre_cfg *lcfg,
895 __u32 *indexp, int *genp)
896{
897 struct obd_uuid obd_uuid;
898 int cmd;
899 int rc = 0;
d7e09d03 900
5f3a68f9 901 switch (cmd = lcfg->lcfg_command) {
d7e09d03
PT
902 case LCFG_LOV_ADD_OBD:
903 case LCFG_LOV_ADD_INA:
904 case LCFG_LOV_DEL_OBD: {
905 __u32 index;
906 int gen;
907 /* lov_modify_tgts add 0:lov_mdsA 1:ost1_UUID 2:0 3:1 */
18751668
JL
908 if (LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(obd_uuid.uuid)) {
909 rc = -EINVAL;
910 goto out;
911 }
d7e09d03
PT
912
913 obd_str2uuid(&obd_uuid, lustre_cfg_buf(lcfg, 1));
914
18751668
JL
915 if (sscanf(lustre_cfg_buf(lcfg, 2), "%d", indexp) != 1) {
916 rc = -EINVAL;
917 goto out;
918 }
919 if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", genp) != 1) {
920 rc = -EINVAL;
921 goto out;
922 }
d7e09d03
PT
923 index = *indexp;
924 gen = *genp;
925 if (cmd == LCFG_LOV_ADD_OBD)
926 rc = lov_add_target(obd, &obd_uuid, index, gen, 1);
927 else if (cmd == LCFG_LOV_ADD_INA)
928 rc = lov_add_target(obd, &obd_uuid, index, gen, 0);
929 else
930 rc = lov_del_target(obd, index, &obd_uuid, gen);
18751668 931 goto out;
d7e09d03
PT
932 }
933 case LCFG_PARAM: {
e6be8e63 934 struct lprocfs_static_vars lvars = { NULL };
d7e09d03
PT
935 struct lov_desc *desc = &(obd->u.lov.desc);
936
18751668
JL
937 if (!desc) {
938 rc = -EINVAL;
939 goto out;
940 }
d7e09d03
PT
941
942 lprocfs_lov_init_vars(&lvars);
943
944 rc = class_process_proc_param(PARAM_LOV, lvars.obd_vars,
945 lcfg, obd);
946 if (rc > 0)
947 rc = 0;
18751668 948 goto out;
d7e09d03
PT
949 }
950 case LCFG_POOL_NEW:
951 case LCFG_POOL_ADD:
952 case LCFG_POOL_DEL:
953 case LCFG_POOL_REM:
18751668 954 goto out;
d7e09d03
PT
955
956 default: {
957 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
18751668
JL
958 rc = -EINVAL;
959 goto out;
d7e09d03
PT
960
961 }
962 }
963out:
0a3bdb00 964 return rc;
d7e09d03
PT
965}
966
967static int lov_recreate(struct obd_export *exp, struct obdo *src_oa,
968 struct lov_stripe_md **ea, struct obd_trans_info *oti)
969{
970 struct lov_stripe_md *obj_mdp, *lsm;
971 struct lov_obd *lov = &exp->exp_obd->u.lov;
972 unsigned ost_idx;
973 int rc, i;
d7e09d03
PT
974
975 LASSERT(src_oa->o_valid & OBD_MD_FLFLAGS &&
976 src_oa->o_flags & OBD_FL_RECREATE_OBJS);
977
840c94d5 978 obj_mdp = kzalloc(sizeof(*obj_mdp), GFP_NOFS);
d7e09d03 979 if (obj_mdp == NULL)
0a3bdb00 980 return -ENOMEM;
d7e09d03
PT
981
982 ost_idx = src_oa->o_nlink;
983 lsm = *ea;
18751668
JL
984 if (lsm == NULL) {
985 rc = -EINVAL;
986 goto out;
987 }
d7e09d03 988 if (ost_idx >= lov->desc.ld_tgt_count ||
18751668
JL
989 !lov->lov_tgts[ost_idx]) {
990 rc = -EINVAL;
991 goto out;
992 }
d7e09d03
PT
993
994 for (i = 0; i < lsm->lsm_stripe_count; i++) {
397632e4
YS
995 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
996
997 if (lov_oinfo_is_dummy(loi))
998 continue;
999
1000 if (loi->loi_ost_idx == ost_idx) {
1001 if (ostid_id(&loi->loi_oi) != ostid_id(&src_oa->o_oi)) {
18751668
JL
1002 rc = -EINVAL;
1003 goto out;
1004 }
d7e09d03
PT
1005 break;
1006 }
1007 }
18751668
JL
1008 if (i == lsm->lsm_stripe_count) {
1009 rc = -EINVAL;
1010 goto out;
1011 }
d7e09d03
PT
1012
1013 rc = obd_create(NULL, lov->lov_tgts[ost_idx]->ltd_exp,
1014 src_oa, &obj_mdp, oti);
1015out:
840c94d5 1016 kfree(obj_mdp);
0a3bdb00 1017 return rc;
d7e09d03
PT
1018}
1019
1020/* the LOV expects oa->o_id to be set to the LOV object id */
1021static int lov_create(const struct lu_env *env, struct obd_export *exp,
1022 struct obdo *src_oa, struct lov_stripe_md **ea,
1023 struct obd_trans_info *oti)
1024{
1025 struct lov_obd *lov;
1026 int rc = 0;
d7e09d03
PT
1027
1028 LASSERT(ea != NULL);
1029 if (exp == NULL)
0a3bdb00 1030 return -EINVAL;
d7e09d03
PT
1031
1032 if ((src_oa->o_valid & OBD_MD_FLFLAGS) &&
1033 src_oa->o_flags == OBD_FL_DELORPHAN) {
1034 /* should be used with LOV anymore */
1035 LBUG();
1036 }
1037
1038 lov = &exp->exp_obd->u.lov;
1039 if (!lov->desc.ld_active_tgt_count)
0a3bdb00 1040 return -EIO;
d7e09d03
PT
1041
1042 obd_getref(exp->exp_obd);
1043 /* Recreate a specific object id at the given OST index */
1044 if ((src_oa->o_valid & OBD_MD_FLFLAGS) &&
1045 (src_oa->o_flags & OBD_FL_RECREATE_OBJS)) {
1046 rc = lov_recreate(exp, src_oa, ea, oti);
1047 }
1048
1049 obd_putref(exp->exp_obd);
0a3bdb00 1050 return rc;
d7e09d03
PT
1051}
1052
1053#define ASSERT_LSM_MAGIC(lsmp) \
1054do { \
1055 LASSERT((lsmp) != NULL); \
1056 LASSERTF(((lsmp)->lsm_magic == LOV_MAGIC_V1 || \
1057 (lsmp)->lsm_magic == LOV_MAGIC_V3), \
1058 "%p->lsm_magic=%x\n", (lsmp), (lsmp)->lsm_magic); \
1059} while (0)
1060
1061static int lov_destroy(const struct lu_env *env, struct obd_export *exp,
1062 struct obdo *oa, struct lov_stripe_md *lsm,
1063 struct obd_trans_info *oti, struct obd_export *md_exp,
1064 void *capa)
1065{
1066 struct lov_request_set *set;
1067 struct obd_info oinfo;
1068 struct lov_request *req;
1069 struct list_head *pos;
1070 struct lov_obd *lov;
1071 int rc = 0, err = 0;
d7e09d03
PT
1072
1073 ASSERT_LSM_MAGIC(lsm);
1074
1075 if (!exp || !exp->exp_obd)
0a3bdb00 1076 return -ENODEV;
d7e09d03
PT
1077
1078 if (oa->o_valid & OBD_MD_FLCOOKIE) {
1079 LASSERT(oti);
1080 LASSERT(oti->oti_logcookies);
1081 }
1082
1083 lov = &exp->exp_obd->u.lov;
1084 obd_getref(exp->exp_obd);
1085 rc = lov_prep_destroy_set(exp, &oinfo, oa, lsm, oti, &set);
1086 if (rc)
18751668 1087 goto out;
d7e09d03 1088
66e7a94a 1089 list_for_each(pos, &set->set_list) {
d7e09d03
PT
1090 req = list_entry(pos, struct lov_request, rq_link);
1091
1092 if (oa->o_valid & OBD_MD_FLCOOKIE)
1093 oti->oti_logcookies = set->set_cookies + req->rq_stripe;
1094
1095 err = obd_destroy(env, lov->lov_tgts[req->rq_idx]->ltd_exp,
1096 req->rq_oi.oi_oa, NULL, oti, NULL, capa);
1097 err = lov_update_common_set(set, req, err);
1098 if (err) {
1099 CERROR("%s: destroying objid "DOSTID" subobj "
1100 DOSTID" on OST idx %d: rc = %d\n",
1101 exp->exp_obd->obd_name, POSTID(&oa->o_oi),
1102 POSTID(&req->rq_oi.oi_oa->o_oi),
1103 req->rq_idx, err);
1104 if (!rc)
1105 rc = err;
1106 }
1107 }
1108
1109 if (rc == 0) {
1110 LASSERT(lsm_op_find(lsm->lsm_magic) != NULL);
1111 rc = lsm_op_find(lsm->lsm_magic)->lsm_destroy(lsm, oa, md_exp);
1112 }
1113 err = lov_fini_destroy_set(set);
1114out:
1115 obd_putref(exp->exp_obd);
0a3bdb00 1116 return rc ? rc : err;
d7e09d03
PT
1117}
1118
d7e09d03
PT
1119static int lov_getattr_interpret(struct ptlrpc_request_set *rqset,
1120 void *data, int rc)
1121{
1122 struct lov_request_set *lovset = (struct lov_request_set *)data;
1123 int err;
d7e09d03 1124
1208bcd8 1125 /* don't do attribute merge if this async op failed */
d7e09d03
PT
1126 if (rc)
1127 atomic_set(&lovset->set_completes, 0);
1128 err = lov_fini_getattr_set(lovset);
0a3bdb00 1129 return rc ? rc : err;
d7e09d03
PT
1130}
1131
1132static int lov_getattr_async(struct obd_export *exp, struct obd_info *oinfo,
1133 struct ptlrpc_request_set *rqset)
1134{
1135 struct lov_request_set *lovset;
1136 struct lov_obd *lov;
1137 struct list_head *pos;
1138 struct lov_request *req;
1139 int rc = 0, err;
d7e09d03
PT
1140
1141 LASSERT(oinfo);
1142 ASSERT_LSM_MAGIC(oinfo->oi_md);
1143
1144 if (!exp || !exp->exp_obd)
0a3bdb00 1145 return -ENODEV;
d7e09d03
PT
1146
1147 lov = &exp->exp_obd->u.lov;
1148
1149 rc = lov_prep_getattr_set(exp, oinfo, &lovset);
1150 if (rc)
0a3bdb00 1151 return rc;
d7e09d03
PT
1152
1153 CDEBUG(D_INFO, "objid "DOSTID": %ux%u byte stripes\n",
1154 POSTID(&oinfo->oi_md->lsm_oi), oinfo->oi_md->lsm_stripe_count,
1155 oinfo->oi_md->lsm_stripe_size);
1156
1157 list_for_each(pos, &lovset->set_list) {
1158 req = list_entry(pos, struct lov_request, rq_link);
1159
2d00bd17
JP
1160 CDEBUG(D_INFO, "objid " DOSTID "[%d] has subobj " DOSTID " at idx%u\n",
1161 POSTID(&oinfo->oi_oa->o_oi), req->rq_stripe,
d7e09d03
PT
1162 POSTID(&req->rq_oi.oi_oa->o_oi), req->rq_idx);
1163 rc = obd_getattr_async(lov->lov_tgts[req->rq_idx]->ltd_exp,
1164 &req->rq_oi, rqset);
1165 if (rc) {
1166 CERROR("%s: getattr objid "DOSTID" subobj"
1167 DOSTID" on OST idx %d: rc = %d\n",
1168 exp->exp_obd->obd_name,
1169 POSTID(&oinfo->oi_oa->o_oi),
1170 POSTID(&req->rq_oi.oi_oa->o_oi),
1171 req->rq_idx, rc);
18751668 1172 goto out;
d7e09d03
PT
1173 }
1174 }
1175
1176 if (!list_empty(&rqset->set_requests)) {
1177 LASSERT(rc == 0);
66e7a94a 1178 LASSERT(rqset->set_interpret == NULL);
d7e09d03
PT
1179 rqset->set_interpret = lov_getattr_interpret;
1180 rqset->set_arg = (void *)lovset;
0a3bdb00 1181 return rc;
d7e09d03
PT
1182 }
1183out:
1184 if (rc)
1185 atomic_set(&lovset->set_completes, 0);
1186 err = lov_fini_getattr_set(lovset);
0a3bdb00 1187 return rc ? rc : err;
d7e09d03
PT
1188}
1189
d7e09d03
PT
1190static int lov_setattr_interpret(struct ptlrpc_request_set *rqset,
1191 void *data, int rc)
1192{
1193 struct lov_request_set *lovset = (struct lov_request_set *)data;
1194 int err;
d7e09d03
PT
1195
1196 if (rc)
1197 atomic_set(&lovset->set_completes, 0);
1198 err = lov_fini_setattr_set(lovset);
0a3bdb00 1199 return rc ? rc : err;
d7e09d03
PT
1200}
1201
1202/* If @oti is given, the request goes from MDS and responses from OSTs are not
1203 needed. Otherwise, a client is waiting for responses. */
1204static int lov_setattr_async(struct obd_export *exp, struct obd_info *oinfo,
1205 struct obd_trans_info *oti,
1206 struct ptlrpc_request_set *rqset)
1207{
1208 struct lov_request_set *set;
1209 struct lov_request *req;
1210 struct list_head *pos;
1211 struct lov_obd *lov;
1212 int rc = 0;
d7e09d03
PT
1213
1214 LASSERT(oinfo);
1215 ASSERT_LSM_MAGIC(oinfo->oi_md);
1216 if (oinfo->oi_oa->o_valid & OBD_MD_FLCOOKIE) {
1217 LASSERT(oti);
1218 LASSERT(oti->oti_logcookies);
1219 }
1220
1221 if (!exp || !exp->exp_obd)
0a3bdb00 1222 return -ENODEV;
d7e09d03
PT
1223
1224 lov = &exp->exp_obd->u.lov;
1225 rc = lov_prep_setattr_set(exp, oinfo, oti, &set);
1226 if (rc)
0a3bdb00 1227 return rc;
d7e09d03
PT
1228
1229 CDEBUG(D_INFO, "objid "DOSTID": %ux%u byte stripes\n",
1230 POSTID(&oinfo->oi_md->lsm_oi),
1231 oinfo->oi_md->lsm_stripe_count,
1232 oinfo->oi_md->lsm_stripe_size);
1233
1234 list_for_each(pos, &set->set_list) {
1235 req = list_entry(pos, struct lov_request, rq_link);
1236
1237 if (oinfo->oi_oa->o_valid & OBD_MD_FLCOOKIE)
1238 oti->oti_logcookies = set->set_cookies + req->rq_stripe;
1239
2d00bd17
JP
1240 CDEBUG(D_INFO, "objid " DOSTID "[%d] has subobj " DOSTID " at idx%u\n",
1241 POSTID(&oinfo->oi_oa->o_oi), req->rq_stripe,
d7e09d03
PT
1242 POSTID(&req->rq_oi.oi_oa->o_oi), req->rq_idx);
1243
1244 rc = obd_setattr_async(lov->lov_tgts[req->rq_idx]->ltd_exp,
1245 &req->rq_oi, oti, rqset);
1246 if (rc) {
1247 CERROR("error: setattr objid "DOSTID" subobj"
1248 DOSTID" on OST idx %d: rc = %d\n",
1249 POSTID(&set->set_oi->oi_oa->o_oi),
1250 POSTID(&req->rq_oi.oi_oa->o_oi),
1251 req->rq_idx, rc);
1252 break;
1253 }
1254 }
1255
1256 /* If we are not waiting for responses on async requests, return. */
1257 if (rc || !rqset || list_empty(&rqset->set_requests)) {
1258 int err;
1259 if (rc)
1260 atomic_set(&set->set_completes, 0);
1261 err = lov_fini_setattr_set(set);
0a3bdb00 1262 return rc ? rc : err;
d7e09d03
PT
1263 }
1264
1265 LASSERT(rqset->set_interpret == NULL);
1266 rqset->set_interpret = lov_setattr_interpret;
1267 rqset->set_arg = (void *)set;
1268
0a3bdb00 1269 return 0;
d7e09d03
PT
1270}
1271
d7e09d03
PT
1272/* find any ldlm lock of the inode in lov
1273 * return 0 not find
1274 * 1 find one
1275 * < 0 error */
1276static int lov_find_cbdata(struct obd_export *exp,
1277 struct lov_stripe_md *lsm, ldlm_iterator_t it,
1278 void *data)
1279{
1280 struct lov_obd *lov;
1281 int rc = 0, i;
d7e09d03
PT
1282
1283 ASSERT_LSM_MAGIC(lsm);
1284
1285 if (!exp || !exp->exp_obd)
0a3bdb00 1286 return -ENODEV;
d7e09d03
PT
1287
1288 lov = &exp->exp_obd->u.lov;
1289 for (i = 0; i < lsm->lsm_stripe_count; i++) {
1290 struct lov_stripe_md submd;
1291 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
1292
397632e4
YS
1293 if (lov_oinfo_is_dummy(loi))
1294 continue;
1295
d7e09d03 1296 if (!lov->lov_tgts[loi->loi_ost_idx]) {
397632e4 1297 CDEBUG(D_HA, "lov idx %d NULL\n", loi->loi_ost_idx);
d7e09d03
PT
1298 continue;
1299 }
397632e4 1300
d7e09d03
PT
1301 submd.lsm_oi = loi->loi_oi;
1302 submd.lsm_stripe_count = 0;
1303 rc = obd_find_cbdata(lov->lov_tgts[loi->loi_ost_idx]->ltd_exp,
1304 &submd, it, data);
1305 if (rc != 0)
0a3bdb00 1306 return rc;
d7e09d03 1307 }
0a3bdb00 1308 return rc;
d7e09d03
PT
1309}
1310
d7e09d03
PT
1311int lov_statfs_interpret(struct ptlrpc_request_set *rqset, void *data, int rc)
1312{
1313 struct lov_request_set *lovset = (struct lov_request_set *)data;
1314 int err;
d7e09d03
PT
1315
1316 if (rc)
1317 atomic_set(&lovset->set_completes, 0);
1318
1319 err = lov_fini_statfs_set(lovset);
0a3bdb00 1320 return rc ? rc : err;
d7e09d03
PT
1321}
1322
1323static int lov_statfs_async(struct obd_export *exp, struct obd_info *oinfo,
1324 __u64 max_age, struct ptlrpc_request_set *rqset)
1325{
1326 struct obd_device *obd = class_exp2obd(exp);
1327 struct lov_request_set *set;
1328 struct lov_request *req;
1329 struct list_head *pos;
1330 struct lov_obd *lov;
1331 int rc = 0;
d7e09d03
PT
1332
1333 LASSERT(oinfo != NULL);
1334 LASSERT(oinfo->oi_osfs != NULL);
1335
1336 lov = &obd->u.lov;
1337 rc = lov_prep_statfs_set(obd, oinfo, &set);
1338 if (rc)
0a3bdb00 1339 return rc;
d7e09d03 1340
66e7a94a 1341 list_for_each(pos, &set->set_list) {
d7e09d03
PT
1342 req = list_entry(pos, struct lov_request, rq_link);
1343 rc = obd_statfs_async(lov->lov_tgts[req->rq_idx]->ltd_exp,
1344 &req->rq_oi, max_age, rqset);
1345 if (rc)
1346 break;
1347 }
1348
1349 if (rc || list_empty(&rqset->set_requests)) {
1350 int err;
1351 if (rc)
1352 atomic_set(&set->set_completes, 0);
1353 err = lov_fini_statfs_set(set);
0a3bdb00 1354 return rc ? rc : err;
d7e09d03
PT
1355 }
1356
1357 LASSERT(rqset->set_interpret == NULL);
1358 rqset->set_interpret = lov_statfs_interpret;
1359 rqset->set_arg = (void *)set;
0a3bdb00 1360 return 0;
d7e09d03
PT
1361}
1362
1363static int lov_statfs(const struct lu_env *env, struct obd_export *exp,
1364 struct obd_statfs *osfs, __u64 max_age, __u32 flags)
1365{
1366 struct ptlrpc_request_set *set = NULL;
1367 struct obd_info oinfo = { { { 0 } } };
1368 int rc = 0;
d7e09d03
PT
1369
1370 /* for obdclass we forbid using obd_statfs_rqset, but prefer using async
1371 * statfs requests */
1372 set = ptlrpc_prep_set();
1373 if (set == NULL)
0a3bdb00 1374 return -ENOMEM;
d7e09d03
PT
1375
1376 oinfo.oi_osfs = osfs;
1377 oinfo.oi_flags = flags;
1378 rc = lov_statfs_async(exp, &oinfo, max_age, set);
1379 if (rc == 0)
1380 rc = ptlrpc_set_wait(set);
1381 ptlrpc_set_destroy(set);
1382
0a3bdb00 1383 return rc;
d7e09d03
PT
1384}
1385
1386static int lov_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1387 void *karg, void *uarg)
1388{
1389 struct obd_device *obddev = class_exp2obd(exp);
1390 struct lov_obd *lov = &obddev->u.lov;
1391 int i = 0, rc = 0, count = lov->desc.ld_tgt_count;
1392 struct obd_uuid *uuidp;
d7e09d03
PT
1393
1394 switch (cmd) {
1395 case IOC_OBD_STATFS: {
1396 struct obd_ioctl_data *data = karg;
1397 struct obd_device *osc_obd;
1398 struct obd_statfs stat_buf = {0};
1399 __u32 index;
1400 __u32 flags;
1401
1402 memcpy(&index, data->ioc_inlbuf2, sizeof(__u32));
23191c97 1403 if (index >= count)
0a3bdb00 1404 return -ENODEV;
d7e09d03
PT
1405
1406 if (!lov->lov_tgts[index])
1407 /* Try again with the next index */
0a3bdb00 1408 return -EAGAIN;
d7e09d03 1409 if (!lov->lov_tgts[index]->ltd_active)
0a3bdb00 1410 return -ENODATA;
d7e09d03
PT
1411
1412 osc_obd = class_exp2obd(lov->lov_tgts[index]->ltd_exp);
1413 if (!osc_obd)
0a3bdb00 1414 return -EINVAL;
d7e09d03
PT
1415
1416 /* copy UUID */
1417 if (copy_to_user(data->ioc_pbuf2, obd2cli_tgt(osc_obd),
1418 min((int) data->ioc_plen2,
1419 (int) sizeof(struct obd_uuid))))
0a3bdb00 1420 return -EFAULT;
d7e09d03 1421
bcc3b704 1422 flags = uarg ? *(__u32 *)uarg : 0;
d7e09d03
PT
1423 /* got statfs data */
1424 rc = obd_statfs(NULL, lov->lov_tgts[index]->ltd_exp, &stat_buf,
1425 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
1426 flags);
1427 if (rc)
0a3bdb00 1428 return rc;
d7e09d03
PT
1429 if (copy_to_user(data->ioc_pbuf1, &stat_buf,
1430 min((int) data->ioc_plen1,
1431 (int) sizeof(stat_buf))))
0a3bdb00 1432 return -EFAULT;
d7e09d03
PT
1433 break;
1434 }
1435 case OBD_IOC_LOV_GET_CONFIG: {
1436 struct obd_ioctl_data *data;
1437 struct lov_desc *desc;
1438 char *buf = NULL;
1439 __u32 *genp;
1440
1441 len = 0;
1442 if (obd_ioctl_getdata(&buf, &len, (void *)uarg))
0a3bdb00 1443 return -EINVAL;
d7e09d03
PT
1444
1445 data = (struct obd_ioctl_data *)buf;
1446
1447 if (sizeof(*desc) > data->ioc_inllen1) {
1448 obd_ioctl_freedata(buf, len);
0a3bdb00 1449 return -EINVAL;
d7e09d03
PT
1450 }
1451
1452 if (sizeof(uuidp->uuid) * count > data->ioc_inllen2) {
1453 obd_ioctl_freedata(buf, len);
0a3bdb00 1454 return -EINVAL;
d7e09d03
PT
1455 }
1456
1457 if (sizeof(__u32) * count > data->ioc_inllen3) {
1458 obd_ioctl_freedata(buf, len);
0a3bdb00 1459 return -EINVAL;
d7e09d03
PT
1460 }
1461
1462 desc = (struct lov_desc *)data->ioc_inlbuf1;
1463 memcpy(desc, &(lov->desc), sizeof(*desc));
1464
1465 uuidp = (struct obd_uuid *)data->ioc_inlbuf2;
1466 genp = (__u32 *)data->ioc_inlbuf3;
1467 /* the uuid will be empty for deleted OSTs */
1468 for (i = 0; i < count; i++, uuidp++, genp++) {
1469 if (!lov->lov_tgts[i])
1470 continue;
1471 *uuidp = lov->lov_tgts[i]->ltd_uuid;
1472 *genp = lov->lov_tgts[i]->ltd_gen;
1473 }
1474
1475 if (copy_to_user((void *)uarg, buf, len))
1476 rc = -EFAULT;
1477 obd_ioctl_freedata(buf, len);
1478 break;
1479 }
d7e09d03
PT
1480 case LL_IOC_LOV_GETSTRIPE:
1481 rc = lov_getstripe(exp, karg, uarg);
1482 break;
d7e09d03
PT
1483 case OBD_IOC_QUOTACTL: {
1484 struct if_quotactl *qctl = karg;
1485 struct lov_tgt_desc *tgt = NULL;
1486 struct obd_quotactl *oqctl;
1487
1488 if (qctl->qc_valid == QC_OSTIDX) {
1489 if (qctl->qc_idx < 0 || count <= qctl->qc_idx)
0a3bdb00 1490 return -EINVAL;
d7e09d03
PT
1491
1492 tgt = lov->lov_tgts[qctl->qc_idx];
1493 if (!tgt || !tgt->ltd_exp)
0a3bdb00 1494 return -EINVAL;
d7e09d03
PT
1495 } else if (qctl->qc_valid == QC_UUID) {
1496 for (i = 0; i < count; i++) {
1497 tgt = lov->lov_tgts[i];
1498 if (!tgt ||
1499 !obd_uuid_equals(&tgt->ltd_uuid,
1500 &qctl->obd_uuid))
1501 continue;
1502
1503 if (tgt->ltd_exp == NULL)
0a3bdb00 1504 return -EINVAL;
d7e09d03
PT
1505
1506 break;
1507 }
1508 } else {
0a3bdb00 1509 return -EINVAL;
d7e09d03
PT
1510 }
1511
1512 if (i >= count)
0a3bdb00 1513 return -EAGAIN;
d7e09d03
PT
1514
1515 LASSERT(tgt && tgt->ltd_exp);
840c94d5 1516 oqctl = kzalloc(sizeof(*oqctl), GFP_NOFS);
d7e09d03 1517 if (!oqctl)
0a3bdb00 1518 return -ENOMEM;
d7e09d03
PT
1519
1520 QCTL_COPY(oqctl, qctl);
1521 rc = obd_quotactl(tgt->ltd_exp, oqctl);
1522 if (rc == 0) {
1523 QCTL_COPY(qctl, oqctl);
1524 qctl->qc_valid = QC_OSTIDX;
1525 qctl->obd_uuid = tgt->ltd_uuid;
1526 }
840c94d5 1527 kfree(oqctl);
d7e09d03
PT
1528 break;
1529 }
1530 default: {
1531 int set = 0;
1532
1533 if (count == 0)
0a3bdb00 1534 return -ENOTTY;
d7e09d03
PT
1535
1536 for (i = 0; i < count; i++) {
1537 int err;
1538 struct obd_device *osc_obd;
1539
1540 /* OST was disconnected */
1541 if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_exp)
1542 continue;
1543
1544 /* ll_umount_begin() sets force flag but for lov, not
1545 * osc. Let's pass it through */
1546 osc_obd = class_exp2obd(lov->lov_tgts[i]->ltd_exp);
1547 osc_obd->obd_force = obddev->obd_force;
1548 err = obd_iocontrol(cmd, lov->lov_tgts[i]->ltd_exp,
1549 len, karg, uarg);
1550 if (err == -ENODATA && cmd == OBD_IOC_POLL_QUOTACHECK) {
0a3bdb00 1551 return err;
d7e09d03
PT
1552 } else if (err) {
1553 if (lov->lov_tgts[i]->ltd_active) {
1554 CDEBUG(err == -ENOTTY ?
1555 D_IOCTL : D_WARNING,
2d00bd17 1556 "iocontrol OSC %s on OST idx %d cmd %x: err = %d\n",
d7e09d03
PT
1557 lov_uuid2str(lov, i),
1558 i, cmd, err);
1559 if (!rc)
1560 rc = err;
1561 }
1562 } else {
1563 set = 1;
1564 }
1565 }
1566 if (!set && !rc)
1567 rc = -EIO;
1568 }
1569 }
1570
0a3bdb00 1571 return rc;
d7e09d03
PT
1572}
1573
1574#define FIEMAP_BUFFER_SIZE 4096
1575
1576/**
1577 * Non-zero fe_logical indicates that this is a continuation FIEMAP
1578 * call. The local end offset and the device are sent in the first
1579 * fm_extent. This function calculates the stripe number from the index.
1580 * This function returns a stripe_no on which mapping is to be restarted.
1581 *
1582 * This function returns fm_end_offset which is the in-OST offset at which
1583 * mapping should be restarted. If fm_end_offset=0 is returned then caller
1584 * will re-calculate proper offset in next stripe.
1585 * Note that the first extent is passed to lov_get_info via the value field.
1586 *
1587 * \param fiemap fiemap request header
1588 * \param lsm striping information for the file
1589 * \param fm_start logical start of mapping
1590 * \param fm_end logical end of mapping
1591 * \param start_stripe starting stripe will be returned in this
1592 */
12e397cd
LT
1593static u64 fiemap_calc_fm_end_offset(struct ll_user_fiemap *fiemap,
1594 struct lov_stripe_md *lsm, u64 fm_start,
1595 u64 fm_end, int *start_stripe)
d7e09d03 1596{
21aef7d9
OD
1597 u64 local_end = fiemap->fm_extents[0].fe_logical;
1598 u64 lun_start, lun_end;
1599 u64 fm_end_offset;
d7e09d03
PT
1600 int stripe_no = -1, i;
1601
1602 if (fiemap->fm_extent_count == 0 ||
1603 fiemap->fm_extents[0].fe_logical == 0)
1604 return 0;
1605
1606 /* Find out stripe_no from ost_index saved in the fe_device */
1607 for (i = 0; i < lsm->lsm_stripe_count; i++) {
397632e4
YS
1608 struct lov_oinfo *oinfo = lsm->lsm_oinfo[i];
1609
1610 if (lov_oinfo_is_dummy(oinfo))
1611 continue;
1612
1613 if (oinfo->loi_ost_idx == fiemap->fm_extents[0].fe_device) {
d7e09d03
PT
1614 stripe_no = i;
1615 break;
1616 }
1617 }
1618 if (stripe_no == -1)
1619 return -EINVAL;
1620
1621 /* If we have finished mapping on previous device, shift logical
1622 * offset to start of next device */
1623 if ((lov_stripe_intersects(lsm, stripe_no, fm_start, fm_end,
1624 &lun_start, &lun_end)) != 0 &&
1625 local_end < lun_end) {
1626 fm_end_offset = local_end;
1627 *start_stripe = stripe_no;
1628 } else {
1629 /* This is a special value to indicate that caller should
1630 * calculate offset in next stripe. */
1631 fm_end_offset = 0;
1632 *start_stripe = (stripe_no + 1) % lsm->lsm_stripe_count;
1633 }
1634
1635 return fm_end_offset;
1636}
1637
1638/**
1639 * We calculate on which OST the mapping will end. If the length of mapping
1640 * is greater than (stripe_size * stripe_count) then the last_stripe will
1641 * will be one just before start_stripe. Else we check if the mapping
1642 * intersects each OST and find last_stripe.
1643 * This function returns the last_stripe and also sets the stripe_count
1644 * over which the mapping is spread
1645 *
1646 * \param lsm striping information for the file
1647 * \param fm_start logical start of mapping
1648 * \param fm_end logical end of mapping
1649 * \param start_stripe starting stripe of the mapping
1650 * \param stripe_count the number of stripes across which to map is returned
1651 *
1652 * \retval last_stripe return the last stripe of the mapping
1653 */
12e397cd
LT
1654static int fiemap_calc_last_stripe(struct lov_stripe_md *lsm, u64 fm_start,
1655 u64 fm_end, int start_stripe,
1656 int *stripe_count)
d7e09d03
PT
1657{
1658 int last_stripe;
21aef7d9 1659 u64 obd_start, obd_end;
d7e09d03
PT
1660 int i, j;
1661
1662 if (fm_end - fm_start > lsm->lsm_stripe_size * lsm->lsm_stripe_count) {
b6ee3824
HM
1663 last_stripe = start_stripe < 1 ? lsm->lsm_stripe_count - 1 :
1664 start_stripe - 1;
d7e09d03
PT
1665 *stripe_count = lsm->lsm_stripe_count;
1666 } else {
1667 for (j = 0, i = start_stripe; j < lsm->lsm_stripe_count;
1668 i = (i + 1) % lsm->lsm_stripe_count, j++) {
1669 if ((lov_stripe_intersects(lsm, i, fm_start, fm_end,
1670 &obd_start, &obd_end)) == 0)
1671 break;
1672 }
1673 *stripe_count = j;
1674 last_stripe = (start_stripe + j - 1) %lsm->lsm_stripe_count;
1675 }
1676
1677 return last_stripe;
1678}
1679
1680/**
1681 * Set fe_device and copy extents from local buffer into main return buffer.
1682 *
1683 * \param fiemap fiemap request header
1684 * \param lcl_fm_ext array of local fiemap extents to be copied
1685 * \param ost_index OST index to be written into the fm_device field for each
1686 extent
1687 * \param ext_count number of extents to be copied
1688 * \param current_extent where to start copying in main extent array
1689 */
12e397cd
LT
1690static void fiemap_prepare_and_copy_exts(struct ll_user_fiemap *fiemap,
1691 struct ll_fiemap_extent *lcl_fm_ext,
1692 int ost_index, unsigned int ext_count,
1693 int current_extent)
d7e09d03
PT
1694{
1695 char *to;
1696 int ext;
1697
1698 for (ext = 0; ext < ext_count; ext++) {
1699 lcl_fm_ext[ext].fe_device = ost_index;
1700 lcl_fm_ext[ext].fe_flags |= FIEMAP_EXTENT_NET;
1701 }
1702
1703 /* Copy fm_extent's from fm_local to return buffer */
1704 to = (char *)fiemap + fiemap_count_to_size(current_extent);
1705 memcpy(to, lcl_fm_ext, ext_count * sizeof(struct ll_fiemap_extent));
1706}
1707
1708/**
1709 * Break down the FIEMAP request and send appropriate calls to individual OSTs.
1710 * This also handles the restarting of FIEMAP calls in case mapping overflows
1711 * the available number of extents in single call.
1712 */
1713static int lov_fiemap(struct lov_obd *lov, __u32 keylen, void *key,
1714 __u32 *vallen, void *val, struct lov_stripe_md *lsm)
1715{
1716 struct ll_fiemap_info_key *fm_key = key;
1717 struct ll_user_fiemap *fiemap = val;
1718 struct ll_user_fiemap *fm_local = NULL;
1719 struct ll_fiemap_extent *lcl_fm_ext;
1720 int count_local;
1721 unsigned int get_num_extents = 0;
1722 int ost_index = 0, actual_start_stripe, start_stripe;
21aef7d9
OD
1723 u64 fm_start, fm_end, fm_length, fm_end_offset;
1724 u64 curr_loc;
d7e09d03
PT
1725 int current_extent = 0, rc = 0, i;
1726 int ost_eof = 0; /* EOF for object */
1727 int ost_done = 0; /* done with required mapping for this OST? */
1728 int last_stripe;
1729 int cur_stripe = 0, cur_stripe_wrap = 0, stripe_count;
1730 unsigned int buffer_size = FIEMAP_BUFFER_SIZE;
1731
18751668
JL
1732 if (!lsm_has_objects(lsm)) {
1733 rc = 0;
1734 goto out;
1735 }
d7e09d03
PT
1736
1737 if (fiemap_count_to_size(fm_key->fiemap.fm_extent_count) < buffer_size)
1738 buffer_size = fiemap_count_to_size(fm_key->fiemap.fm_extent_count);
1739
1740 OBD_ALLOC_LARGE(fm_local, buffer_size);
18751668
JL
1741 if (fm_local == NULL) {
1742 rc = -ENOMEM;
1743 goto out;
1744 }
d7e09d03
PT
1745 lcl_fm_ext = &fm_local->fm_extents[0];
1746
1747 count_local = fiemap_size_to_count(buffer_size);
1748
1749 memcpy(fiemap, &fm_key->fiemap, sizeof(*fiemap));
1750 fm_start = fiemap->fm_start;
1751 fm_length = fiemap->fm_length;
1752 /* Calculate start stripe, last stripe and length of mapping */
1753 actual_start_stripe = start_stripe = lov_stripe_number(lsm, fm_start);
1754 fm_end = (fm_length == ~0ULL ? fm_key->oa.o_size :
1755 fm_start + fm_length - 1);
1756 /* If fm_length != ~0ULL but fm_start+fm_length-1 exceeds file size */
1757 if (fm_end > fm_key->oa.o_size)
1758 fm_end = fm_key->oa.o_size;
1759
1760 last_stripe = fiemap_calc_last_stripe(lsm, fm_start, fm_end,
1761 actual_start_stripe, &stripe_count);
1762
1763 fm_end_offset = fiemap_calc_fm_end_offset(fiemap, lsm, fm_start,
1764 fm_end, &start_stripe);
18751668
JL
1765 if (fm_end_offset == -EINVAL) {
1766 rc = -EINVAL;
1767 goto out;
1768 }
d7e09d03 1769
ebdc4fc5
BJ
1770 if (fiemap_count_to_size(fiemap->fm_extent_count) > *vallen)
1771 fiemap->fm_extent_count = fiemap_size_to_count(*vallen);
d7e09d03
PT
1772 if (fiemap->fm_extent_count == 0) {
1773 get_num_extents = 1;
1774 count_local = 0;
1775 }
d7e09d03
PT
1776 /* Check each stripe */
1777 for (cur_stripe = start_stripe, i = 0; i < stripe_count;
1778 i++, cur_stripe = (cur_stripe + 1) % lsm->lsm_stripe_count) {
21aef7d9
OD
1779 u64 req_fm_len; /* Stores length of required mapping */
1780 u64 len_mapped_single_call;
1781 u64 lun_start, lun_end, obd_object_end;
d7e09d03
PT
1782 unsigned int ext_count;
1783
1784 cur_stripe_wrap = cur_stripe;
1785
1786 /* Find out range of mapping on this stripe */
1787 if ((lov_stripe_intersects(lsm, cur_stripe, fm_start, fm_end,
1788 &lun_start, &obd_object_end)) == 0)
1789 continue;
1790
397632e4
YS
1791 if (lov_oinfo_is_dummy(lsm->lsm_oinfo[cur_stripe])) {
1792 rc = -EIO;
1793 goto out;
1794 }
1795
d7e09d03
PT
1796 /* If this is a continuation FIEMAP call and we are on
1797 * starting stripe then lun_start needs to be set to
1798 * fm_end_offset */
1799 if (fm_end_offset != 0 && cur_stripe == start_stripe)
1800 lun_start = fm_end_offset;
1801
1802 if (fm_length != ~0ULL) {
1803 /* Handle fm_start + fm_length overflow */
1804 if (fm_start + fm_length < fm_start)
1805 fm_length = ~0ULL - fm_start;
1806 lun_end = lov_size_to_stripe(lsm, fm_start + fm_length,
1807 cur_stripe);
1808 } else {
1809 lun_end = ~0ULL;
1810 }
1811
1812 if (lun_start == lun_end)
1813 continue;
1814
1815 req_fm_len = obd_object_end - lun_start;
1816 fm_local->fm_length = 0;
1817 len_mapped_single_call = 0;
1818
1819 /* If the output buffer is very large and the objects have many
1820 * extents we may need to loop on a single OST repeatedly */
1821 ost_eof = 0;
1822 ost_done = 0;
1823 do {
1824 if (get_num_extents == 0) {
1825 /* Don't get too many extents. */
1826 if (current_extent + count_local >
1827 fiemap->fm_extent_count)
1828 count_local = fiemap->fm_extent_count -
1829 current_extent;
1830 }
1831
1832 lun_start += len_mapped_single_call;
1833 fm_local->fm_length = req_fm_len - len_mapped_single_call;
1834 req_fm_len = fm_local->fm_length;
1835 fm_local->fm_extent_count = count_local;
1836 fm_local->fm_mapped_extents = 0;
1837 fm_local->fm_flags = fiemap->fm_flags;
1838
1839 fm_key->oa.o_oi = lsm->lsm_oinfo[cur_stripe]->loi_oi;
1840 ost_index = lsm->lsm_oinfo[cur_stripe]->loi_ost_idx;
1841
18751668
JL
1842 if (ost_index < 0 ||
1843 ost_index >= lov->desc.ld_tgt_count) {
1844 rc = -EINVAL;
1845 goto out;
1846 }
d7e09d03
PT
1847
1848 /* If OST is inactive, return extent with UNKNOWN flag */
1849 if (!lov->lov_tgts[ost_index]->ltd_active) {
1850 fm_local->fm_flags |= FIEMAP_EXTENT_LAST;
1851 fm_local->fm_mapped_extents = 1;
1852
1853 lcl_fm_ext[0].fe_logical = lun_start;
1854 lcl_fm_ext[0].fe_length = obd_object_end -
1855 lun_start;
1856 lcl_fm_ext[0].fe_flags |= FIEMAP_EXTENT_UNKNOWN;
1857
1858 goto inactive_tgt;
1859 }
1860
1861 fm_local->fm_start = lun_start;
1862 fm_local->fm_flags &= ~FIEMAP_FLAG_DEVICE_ORDER;
1863 memcpy(&fm_key->fiemap, fm_local, sizeof(*fm_local));
1864 *vallen=fiemap_count_to_size(fm_local->fm_extent_count);
1865 rc = obd_get_info(NULL,
1866 lov->lov_tgts[ost_index]->ltd_exp,
1867 keylen, key, vallen, fm_local, lsm);
1868 if (rc != 0)
18751668 1869 goto out;
d7e09d03
PT
1870
1871inactive_tgt:
1872 ext_count = fm_local->fm_mapped_extents;
1873 if (ext_count == 0) {
1874 ost_done = 1;
1875 /* If last stripe has hole at the end,
1876 * then we need to return */
1877 if (cur_stripe_wrap == last_stripe) {
1878 fiemap->fm_mapped_extents = 0;
1879 goto finish;
1880 }
1881 break;
1882 }
1883
1884 /* If we just need num of extents then go to next device */
1885 if (get_num_extents) {
1886 current_extent += ext_count;
1887 break;
1888 }
1889
1890 len_mapped_single_call = lcl_fm_ext[ext_count-1].fe_logical -
1891 lun_start + lcl_fm_ext[ext_count - 1].fe_length;
1892
1893 /* Have we finished mapping on this device? */
1894 if (req_fm_len <= len_mapped_single_call)
1895 ost_done = 1;
1896
1897 /* Clear the EXTENT_LAST flag which can be present on
1898 * last extent */
1899 if (lcl_fm_ext[ext_count-1].fe_flags & FIEMAP_EXTENT_LAST)
1900 lcl_fm_ext[ext_count - 1].fe_flags &=
1901 ~FIEMAP_EXTENT_LAST;
1902
1903 curr_loc = lov_stripe_size(lsm,
1904 lcl_fm_ext[ext_count - 1].fe_logical+
1905 lcl_fm_ext[ext_count - 1].fe_length,
1906 cur_stripe);
1907 if (curr_loc >= fm_key->oa.o_size)
1908 ost_eof = 1;
1909
1910 fiemap_prepare_and_copy_exts(fiemap, lcl_fm_ext,
1911 ost_index, ext_count,
1912 current_extent);
1913
1914 current_extent += ext_count;
1915
1916 /* Ran out of available extents? */
1917 if (current_extent >= fiemap->fm_extent_count)
1918 goto finish;
1919 } while (ost_done == 0 && ost_eof == 0);
1920
1921 if (cur_stripe_wrap == last_stripe)
1922 goto finish;
1923 }
1924
1925finish:
1926 /* Indicate that we are returning device offsets unless file just has
1927 * single stripe */
1928 if (lsm->lsm_stripe_count > 1)
1929 fiemap->fm_flags |= FIEMAP_FLAG_DEVICE_ORDER;
1930
1931 if (get_num_extents)
1932 goto skip_last_device_calc;
1933
1934 /* Check if we have reached the last stripe and whether mapping for that
1935 * stripe is done. */
1936 if (cur_stripe_wrap == last_stripe) {
1937 if (ost_done || ost_eof)
1938 fiemap->fm_extents[current_extent - 1].fe_flags |=
1939 FIEMAP_EXTENT_LAST;
1940 }
1941
1942skip_last_device_calc:
1943 fiemap->fm_mapped_extents = current_extent;
1944
1945out:
1946 OBD_FREE_LARGE(fm_local, buffer_size);
1947 return rc;
1948}
1949
1950static int lov_get_info(const struct lu_env *env, struct obd_export *exp,
1951 __u32 keylen, void *key, __u32 *vallen, void *val,
1952 struct lov_stripe_md *lsm)
1953{
1954 struct obd_device *obddev = class_exp2obd(exp);
1955 struct lov_obd *lov = &obddev->u.lov;
1956 int i, rc;
d7e09d03
PT
1957
1958 if (!vallen || !val)
0a3bdb00 1959 return -EFAULT;
d7e09d03
PT
1960
1961 obd_getref(obddev);
1962
1963 if (KEY_IS(KEY_LOCK_TO_STRIPE)) {
1964 struct {
1965 char name[16];
1966 struct ldlm_lock *lock;
1967 } *data = key;
1968 struct ldlm_res_id *res_id = &data->lock->l_resource->lr_name;
1969 struct lov_oinfo *loi;
1970 __u32 *stripe = val;
1971
18751668
JL
1972 if (*vallen < sizeof(*stripe)) {
1973 rc = -EFAULT;
1974 goto out;
1975 }
d7e09d03
PT
1976 *vallen = sizeof(*stripe);
1977
1978 /* XXX This is another one of those bits that will need to
1979 * change if we ever actually support nested LOVs. It uses
1980 * the lock's export to find out which stripe it is. */
1981 /* XXX - it's assumed all the locks for deleted OSTs have
1982 * been cancelled. Also, the export for deleted OSTs will
1983 * be NULL and won't match the lock's export. */
1984 for (i = 0; i < lsm->lsm_stripe_count; i++) {
1985 loi = lsm->lsm_oinfo[i];
397632e4
YS
1986 if (lov_oinfo_is_dummy(loi))
1987 continue;
1988
d7e09d03
PT
1989 if (!lov->lov_tgts[loi->loi_ost_idx])
1990 continue;
1991 if (lov->lov_tgts[loi->loi_ost_idx]->ltd_exp ==
1992 data->lock->l_conn_export &&
1993 ostid_res_name_eq(&loi->loi_oi, res_id)) {
1994 *stripe = i;
18751668
JL
1995 rc = 0;
1996 goto out;
d7e09d03
PT
1997 }
1998 }
1999 LDLM_ERROR(data->lock, "lock on inode without such object");
2000 dump_lsm(D_ERROR, lsm);
18751668
JL
2001 rc = -ENXIO;
2002 goto out;
d7e09d03
PT
2003 } else if (KEY_IS(KEY_LAST_ID)) {
2004 struct obd_id_info *info = val;
21aef7d9 2005 __u32 size = sizeof(u64);
d7e09d03
PT
2006 struct lov_tgt_desc *tgt;
2007
2008 LASSERT(*vallen == sizeof(struct obd_id_info));
2009 tgt = lov->lov_tgts[info->idx];
2010
18751668
JL
2011 if (!tgt || !tgt->ltd_active) {
2012 rc = -ESRCH;
2013 goto out;
2014 }
d7e09d03
PT
2015
2016 rc = obd_get_info(env, tgt->ltd_exp, keylen, key,
2017 &size, info->data, NULL);
18751668
JL
2018 rc = 0;
2019 goto out;
d7e09d03
PT
2020 } else if (KEY_IS(KEY_LOVDESC)) {
2021 struct lov_desc *desc_ret = val;
2022 *desc_ret = lov->desc;
2023
18751668
JL
2024 rc = 0;
2025 goto out;
d7e09d03
PT
2026 } else if (KEY_IS(KEY_FIEMAP)) {
2027 rc = lov_fiemap(lov, keylen, key, vallen, val, lsm);
18751668 2028 goto out;
d7e09d03
PT
2029 } else if (KEY_IS(KEY_CONNECT_FLAG)) {
2030 struct lov_tgt_desc *tgt;
bcc3b704 2031 __u64 ost_idx = *((__u64 *)val);
d7e09d03
PT
2032
2033 LASSERT(*vallen == sizeof(__u64));
2034 LASSERT(ost_idx < lov->desc.ld_tgt_count);
2035 tgt = lov->lov_tgts[ost_idx];
2036
18751668
JL
2037 if (!tgt || !tgt->ltd_exp) {
2038 rc = -ESRCH;
2039 goto out;
2040 }
d7e09d03
PT
2041
2042 *((__u64 *)val) = exp_connect_flags(tgt->ltd_exp);
18751668
JL
2043 rc = 0;
2044 goto out;
d7e09d03
PT
2045 } else if (KEY_IS(KEY_TGT_COUNT)) {
2046 *((int *)val) = lov->desc.ld_tgt_count;
18751668
JL
2047 rc = 0;
2048 goto out;
d7e09d03
PT
2049 }
2050
2051 rc = -EINVAL;
2052
2053out:
2054 obd_putref(obddev);
0a3bdb00 2055 return rc;
d7e09d03
PT
2056}
2057
2058static int lov_set_info_async(const struct lu_env *env, struct obd_export *exp,
21aef7d9 2059 u32 keylen, void *key, u32 vallen,
d7e09d03
PT
2060 void *val, struct ptlrpc_request_set *set)
2061{
2062 struct obd_device *obddev = class_exp2obd(exp);
2063 struct lov_obd *lov = &obddev->u.lov;
21aef7d9 2064 u32 count;
d7e09d03
PT
2065 int i, rc = 0, err;
2066 struct lov_tgt_desc *tgt;
2067 unsigned incr, check_uuid,
2068 do_inactive, no_set;
2069 unsigned next_id = 0, mds_con = 0, capa = 0;
d7e09d03
PT
2070
2071 incr = check_uuid = do_inactive = no_set = 0;
2072 if (set == NULL) {
2073 no_set = 1;
2074 set = ptlrpc_prep_set();
2075 if (!set)
0a3bdb00 2076 return -ENOMEM;
d7e09d03
PT
2077 }
2078
2079 obd_getref(obddev);
2080 count = lov->desc.ld_tgt_count;
2081
2082 if (KEY_IS(KEY_NEXT_ID)) {
2083 count = vallen / sizeof(struct obd_id_info);
21aef7d9 2084 vallen = sizeof(u64);
d7e09d03
PT
2085 incr = sizeof(struct obd_id_info);
2086 do_inactive = 1;
2087 next_id = 1;
2088 } else if (KEY_IS(KEY_CHECKSUM)) {
2089 do_inactive = 1;
2090 } else if (KEY_IS(KEY_EVICT_BY_NID)) {
2091 /* use defaults: do_inactive = incr = 0; */
2092 } else if (KEY_IS(KEY_MDS_CONN)) {
2093 mds_con = 1;
2094 } else if (KEY_IS(KEY_CAPA_KEY)) {
2095 capa = 1;
2096 } else if (KEY_IS(KEY_CACHE_SET)) {
2097 LASSERT(lov->lov_cache == NULL);
2098 lov->lov_cache = val;
2099 do_inactive = 1;
2100 }
2101
2102 for (i = 0; i < count; i++, val = (char *)val + incr) {
2103 if (next_id) {
bcc3b704 2104 tgt = lov->lov_tgts[((struct obd_id_info *)val)->idx];
d7e09d03
PT
2105 } else {
2106 tgt = lov->lov_tgts[i];
2107 }
2108 /* OST was disconnected */
2109 if (!tgt || !tgt->ltd_exp)
2110 continue;
2111
2112 /* OST is inactive and we don't want inactive OSCs */
2113 if (!tgt->ltd_active && !do_inactive)
2114 continue;
2115
2116 if (mds_con) {
2117 struct mds_group_info *mgi;
2118
2119 LASSERT(vallen == sizeof(*mgi));
2120 mgi = (struct mds_group_info *)val;
2121
2122 /* Only want a specific OSC */
2123 if (mgi->uuid && !obd_uuid_equals(mgi->uuid,
2124 &tgt->ltd_uuid))
2125 continue;
2126
2127 err = obd_set_info_async(env, tgt->ltd_exp,
2128 keylen, key, sizeof(int),
2129 &mgi->group, set);
2130 } else if (next_id) {
2131 err = obd_set_info_async(env, tgt->ltd_exp,
2132 keylen, key, vallen,
bcc3b704 2133 ((struct obd_id_info *)val)->data, set);
d7e09d03 2134 } else if (capa) {
bcc3b704 2135 struct mds_capa_info *info = (struct mds_capa_info *)val;
d7e09d03
PT
2136
2137 LASSERT(vallen == sizeof(*info));
2138
2139 /* Only want a specific OSC */
2140 if (info->uuid &&
2141 !obd_uuid_equals(info->uuid, &tgt->ltd_uuid))
2142 continue;
2143
2144 err = obd_set_info_async(env, tgt->ltd_exp, keylen,
2145 key, sizeof(*info->capa),
2146 info->capa, set);
2147 } else {
2148 /* Only want a specific OSC */
2149 if (check_uuid &&
2150 !obd_uuid_equals(val, &tgt->ltd_uuid))
2151 continue;
2152
2153 err = obd_set_info_async(env, tgt->ltd_exp,
2154 keylen, key, vallen, val, set);
2155 }
2156
2157 if (!rc)
2158 rc = err;
2159 }
2160
2161 obd_putref(obddev);
2162 if (no_set) {
2163 err = ptlrpc_set_wait(set);
2164 if (!rc)
2165 rc = err;
2166 ptlrpc_set_destroy(set);
2167 }
0a3bdb00 2168 return rc;
d7e09d03
PT
2169}
2170
d7e09d03 2171void lov_stripe_lock(struct lov_stripe_md *md)
82604f8c 2172 __acquires(&md->lsm_lock)
d7e09d03
PT
2173{
2174 LASSERT(md->lsm_lock_owner != current_pid());
2175 spin_lock(&md->lsm_lock);
2176 LASSERT(md->lsm_lock_owner == 0);
2177 md->lsm_lock_owner = current_pid();
2178}
2179EXPORT_SYMBOL(lov_stripe_lock);
2180
2181void lov_stripe_unlock(struct lov_stripe_md *md)
82604f8c 2182 __releases(&md->lsm_lock)
d7e09d03
PT
2183{
2184 LASSERT(md->lsm_lock_owner == current_pid());
2185 md->lsm_lock_owner = 0;
2186 spin_unlock(&md->lsm_lock);
2187}
2188EXPORT_SYMBOL(lov_stripe_unlock);
2189
2190static int lov_quotactl(struct obd_device *obd, struct obd_export *exp,
2191 struct obd_quotactl *oqctl)
2192{
2193 struct lov_obd *lov = &obd->u.lov;
2194 struct lov_tgt_desc *tgt;
2195 __u64 curspace = 0;
2196 __u64 bhardlimit = 0;
2197 int i, rc = 0;
d7e09d03
PT
2198
2199 if (oqctl->qc_cmd != LUSTRE_Q_QUOTAON &&
2200 oqctl->qc_cmd != LUSTRE_Q_QUOTAOFF &&
2201 oqctl->qc_cmd != Q_GETOQUOTA &&
2202 oqctl->qc_cmd != Q_INITQUOTA &&
2203 oqctl->qc_cmd != LUSTRE_Q_SETQUOTA &&
2204 oqctl->qc_cmd != Q_FINVALIDATE) {
2205 CERROR("bad quota opc %x for lov obd", oqctl->qc_cmd);
0a3bdb00 2206 return -EFAULT;
d7e09d03
PT
2207 }
2208
2209 /* for lov tgt */
2210 obd_getref(obd);
2211 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
2212 int err;
2213
2214 tgt = lov->lov_tgts[i];
2215
2216 if (!tgt)
2217 continue;
2218
2219 if (!tgt->ltd_active || tgt->ltd_reap) {
2220 if (oqctl->qc_cmd == Q_GETOQUOTA &&
2221 lov->lov_tgts[i]->ltd_activate) {
2222 rc = -EREMOTEIO;
2223 CERROR("ost %d is inactive\n", i);
2224 } else {
2225 CDEBUG(D_HA, "ost %d is inactive\n", i);
2226 }
2227 continue;
2228 }
2229
2230 err = obd_quotactl(tgt->ltd_exp, oqctl);
2231 if (err) {
2232 if (tgt->ltd_active && !rc)
2233 rc = err;
2234 continue;
2235 }
2236
2237 if (oqctl->qc_cmd == Q_GETOQUOTA) {
2238 curspace += oqctl->qc_dqblk.dqb_curspace;
2239 bhardlimit += oqctl->qc_dqblk.dqb_bhardlimit;
2240 }
2241 }
2242 obd_putref(obd);
2243
2244 if (oqctl->qc_cmd == Q_GETOQUOTA) {
2245 oqctl->qc_dqblk.dqb_curspace = curspace;
2246 oqctl->qc_dqblk.dqb_bhardlimit = bhardlimit;
2247 }
0a3bdb00 2248 return rc;
d7e09d03
PT
2249}
2250
2251static int lov_quotacheck(struct obd_device *obd, struct obd_export *exp,
2252 struct obd_quotactl *oqctl)
2253{
2254 struct lov_obd *lov = &obd->u.lov;
2255 int i, rc = 0;
d7e09d03
PT
2256
2257 obd_getref(obd);
2258
2259 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
2260 if (!lov->lov_tgts[i])
2261 continue;
2262
2263 /* Skip quota check on the administratively disabled OSTs. */
2264 if (!lov->lov_tgts[i]->ltd_activate) {
2d00bd17
JP
2265 CWARN("lov idx %d was administratively disabled, skip quotacheck on it.\n",
2266 i);
d7e09d03
PT
2267 continue;
2268 }
2269
2270 if (!lov->lov_tgts[i]->ltd_active) {
2271 CERROR("lov idx %d inactive\n", i);
2272 rc = -EIO;
2273 goto out;
2274 }
2275 }
2276
2277 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
2278 int err;
2279
2280 if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_activate)
2281 continue;
2282
2283 err = obd_quotacheck(lov->lov_tgts[i]->ltd_exp, oqctl);
2284 if (err && !rc)
2285 rc = err;
2286 }
2287
2288out:
2289 obd_putref(obd);
2290
0a3bdb00 2291 return rc;
d7e09d03
PT
2292}
2293
12e397cd 2294static struct obd_ops lov_obd_ops = {
d7e09d03
PT
2295 .o_owner = THIS_MODULE,
2296 .o_setup = lov_setup,
2297 .o_precleanup = lov_precleanup,
2298 .o_cleanup = lov_cleanup,
5e448831 2299 /*.o_process_config = lov_process_config,*/
d7e09d03
PT
2300 .o_connect = lov_connect,
2301 .o_disconnect = lov_disconnect,
2302 .o_statfs = lov_statfs,
2303 .o_statfs_async = lov_statfs_async,
2304 .o_packmd = lov_packmd,
2305 .o_unpackmd = lov_unpackmd,
2306 .o_create = lov_create,
2307 .o_destroy = lov_destroy,
d7e09d03 2308 .o_getattr_async = lov_getattr_async,
d7e09d03 2309 .o_setattr_async = lov_setattr_async,
d7e09d03 2310 .o_adjust_kms = lov_adjust_kms,
d7e09d03 2311 .o_find_cbdata = lov_find_cbdata,
d7e09d03
PT
2312 .o_iocontrol = lov_iocontrol,
2313 .o_get_info = lov_get_info,
2314 .o_set_info_async = lov_set_info_async,
d7e09d03
PT
2315 .o_notify = lov_notify,
2316 .o_pool_new = lov_pool_new,
2317 .o_pool_rem = lov_pool_remove,
2318 .o_pool_add = lov_pool_add,
2319 .o_pool_del = lov_pool_del,
2320 .o_getref = lov_getref,
2321 .o_putref = lov_putref,
2322 .o_quotactl = lov_quotactl,
2323 .o_quotacheck = lov_quotacheck,
2324};
2325
2326struct kmem_cache *lov_oinfo_slab;
2327
12e397cd 2328static int __init lov_init(void)
d7e09d03 2329{
e6be8e63 2330 struct lprocfs_static_vars lvars = { NULL };
d7e09d03 2331 int rc;
d7e09d03
PT
2332
2333 /* print an address of _any_ initialized kernel symbol from this
2334 * module, to allow debugging with gdb that doesn't support data
2335 * symbols from modules.*/
2336 CDEBUG(D_INFO, "Lustre LOV module (%p).\n", &lov_caches);
2337
2338 rc = lu_kmem_init(lov_caches);
2339 if (rc)
2340 return rc;
2341
2342 lov_oinfo_slab = kmem_cache_create("lov_oinfo",
2343 sizeof(struct lov_oinfo),
2344 0, SLAB_HWCACHE_ALIGN, NULL);
2345 if (lov_oinfo_slab == NULL) {
2346 lu_kmem_fini(lov_caches);
2347 return -ENOMEM;
2348 }
2349 lprocfs_lov_init_vars(&lvars);
2350
2962b440 2351 rc = class_register_type(&lov_obd_ops, NULL,
d7e09d03
PT
2352 LUSTRE_LOV_NAME, &lov_device_type);
2353
2354 if (rc) {
2355 kmem_cache_destroy(lov_oinfo_slab);
2356 lu_kmem_fini(lov_caches);
2357 }
2358
0a3bdb00 2359 return rc;
d7e09d03
PT
2360}
2361
2362static void /*__exit*/ lov_exit(void)
2363{
2364 class_unregister_type(LUSTRE_LOV_NAME);
2365 kmem_cache_destroy(lov_oinfo_slab);
2366
2367 lu_kmem_fini(lov_caches);
2368}
2369
2370MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
2371MODULE_DESCRIPTION("Lustre Logical Object Volume OBD driver");
2372MODULE_LICENSE("GPL");
6960736c 2373MODULE_VERSION(LUSTRE_VERSION_STRING);
d7e09d03 2374
6960736c
GKH
2375module_init(lov_init);
2376module_exit(lov_exit);
This page took 0.86703 seconds and 5 git commands to generate.