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