4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
27 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, 2013, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * Implementation of cl_object for LOV layer.
38 * Author: Nikita Danilov <nikita.danilov@sun.com>
39 * Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
42 #define DEBUG_SUBSYSTEM S_LOV
44 #include "lov_cl_internal.h"
51 /*****************************************************************************
57 struct lov_layout_operations {
58 int (*llo_init)(const struct lu_env *env, struct lov_device *dev,
59 struct lov_object *lov,
60 const struct cl_object_conf *conf,
61 union lov_layout_state *state);
62 int (*llo_delete)(const struct lu_env *env, struct lov_object *lov,
63 union lov_layout_state *state);
64 void (*llo_fini)(const struct lu_env *env, struct lov_object *lov,
65 union lov_layout_state *state);
66 void (*llo_install)(const struct lu_env *env, struct lov_object *lov,
67 union lov_layout_state *state);
68 int (*llo_print)(const struct lu_env *env, void *cookie,
69 lu_printer_t p, const struct lu_object *o);
70 int (*llo_page_init)(const struct lu_env *env, struct cl_object *obj,
71 struct cl_page *page, pgoff_t index);
72 int (*llo_lock_init)(const struct lu_env *env,
73 struct cl_object *obj, struct cl_lock *lock,
74 const struct cl_io *io);
75 int (*llo_io_init)(const struct lu_env *env,
76 struct cl_object *obj, struct cl_io *io);
77 int (*llo_getattr)(const struct lu_env *env, struct cl_object *obj,
78 struct cl_attr *attr);
81 static int lov_layout_wait(const struct lu_env *env, struct lov_object *lov);
83 /*****************************************************************************
85 * Lov object layout operations.
89 static void lov_install_empty(const struct lu_env *env,
90 struct lov_object *lov,
91 union lov_layout_state *state)
94 * File without objects.
98 static int lov_init_empty(const struct lu_env *env,
99 struct lov_device *dev, struct lov_object *lov,
100 const struct cl_object_conf *conf,
101 union lov_layout_state *state)
106 static void lov_install_raid0(const struct lu_env *env,
107 struct lov_object *lov,
108 union lov_layout_state *state)
112 static struct cl_object *lov_sub_find(const struct lu_env *env,
113 struct cl_device *dev,
114 const struct lu_fid *fid,
115 const struct cl_object_conf *conf)
120 o = lu_object_find_at(env, cl2lu_dev(dev), fid, &conf->coc_lu);
121 LASSERT(ergo(!IS_ERR(o), o->lo_dev->ld_type == &lovsub_device_type));
125 static int lov_init_sub(const struct lu_env *env, struct lov_object *lov,
126 struct cl_object *stripe, struct lov_layout_raid0 *r0,
129 struct cl_object_header *hdr;
130 struct cl_object_header *subhdr;
131 struct cl_object_header *parent;
132 struct lov_oinfo *oinfo;
135 if (OBD_FAIL_CHECK(OBD_FAIL_LOV_INIT)) {
136 /* For sanity:test_206.
137 * Do not leave the object in cache to avoid accessing
138 * freed memory. This is because osc_object is referring to
139 * lov_oinfo of lsm_stripe_data which will be freed due to
141 cl_object_kill(env, stripe);
142 cl_object_put(env, stripe);
146 hdr = cl_object_header(lov2cl(lov));
147 subhdr = cl_object_header(stripe);
149 oinfo = lov->lo_lsm->lsm_oinfo[idx];
150 CDEBUG(D_INODE, DFID"@%p[%d] -> "DFID"@%p: ostid: "DOSTID
151 " idx: %d gen: %d\n",
152 PFID(&subhdr->coh_lu.loh_fid), subhdr, idx,
153 PFID(&hdr->coh_lu.loh_fid), hdr, POSTID(&oinfo->loi_oi),
154 oinfo->loi_ost_idx, oinfo->loi_ost_gen);
156 /* reuse ->coh_attr_guard to protect coh_parent change */
157 spin_lock(&subhdr->coh_attr_guard);
158 parent = subhdr->coh_parent;
159 if (parent == NULL) {
160 subhdr->coh_parent = hdr;
161 spin_unlock(&subhdr->coh_attr_guard);
162 subhdr->coh_nesting = hdr->coh_nesting + 1;
163 lu_object_ref_add(&stripe->co_lu, "lov-parent", lov);
164 r0->lo_sub[idx] = cl2lovsub(stripe);
165 r0->lo_sub[idx]->lso_super = lov;
166 r0->lo_sub[idx]->lso_index = idx;
169 struct lu_object *old_obj;
170 struct lov_object *old_lov;
171 unsigned int mask = D_INODE;
173 spin_unlock(&subhdr->coh_attr_guard);
174 old_obj = lu_object_locate(&parent->coh_lu, &lov_device_type);
175 LASSERT(old_obj != NULL);
176 old_lov = cl2lov(lu2cl(old_obj));
177 if (old_lov->lo_layout_invalid) {
178 /* the object's layout has already changed but isn't
180 lu_object_unhash(env, &stripe->co_lu);
187 LU_OBJECT_DEBUG(mask, env, &stripe->co_lu,
188 "stripe %d is already owned.\n", idx);
189 LU_OBJECT_DEBUG(mask, env, old_obj, "owned.\n");
190 LU_OBJECT_HEADER(mask, env, lov2lu(lov), "try to own.\n");
191 cl_object_put(env, stripe);
196 static int lov_page_slice_fixup(struct lov_object *lov,
197 struct cl_object *stripe)
199 struct cl_object_header *hdr = cl_object_header(&lov->lo_cl);
203 return hdr->coh_page_bufsize - lov->lo_cl.co_slice_off -
204 cfs_size_round(sizeof(struct lov_page));
206 cl_object_for_each(o, stripe)
207 o->co_slice_off += hdr->coh_page_bufsize;
209 return cl_object_header(stripe)->coh_page_bufsize;
212 static int lov_init_raid0(const struct lu_env *env,
213 struct lov_device *dev, struct lov_object *lov,
214 const struct cl_object_conf *conf,
215 union lov_layout_state *state)
220 struct cl_object *stripe;
221 struct lov_thread_info *lti = lov_env_info(env);
222 struct cl_object_conf *subconf = <i->lti_stripe_conf;
223 struct lov_stripe_md *lsm = conf->u.coc_md->lsm;
224 struct lu_fid *ofid = <i->lti_fid;
225 struct lov_layout_raid0 *r0 = &state->raid0;
229 if (lsm->lsm_magic != LOV_MAGIC_V1 && lsm->lsm_magic != LOV_MAGIC_V3) {
230 dump_lsm(D_ERROR, lsm);
231 LASSERTF(0, "magic mismatch, expected %d/%d, actual %d.\n",
232 LOV_MAGIC_V1, LOV_MAGIC_V3, lsm->lsm_magic);
235 LASSERT(lov->lo_lsm == NULL);
236 lov->lo_lsm = lsm_addref(lsm);
237 r0->lo_nr = lsm->lsm_stripe_count;
238 LASSERT(r0->lo_nr <= lov_targets_nr(dev));
240 lov->lo_layout_invalid = true;
242 OBD_ALLOC_LARGE(r0->lo_sub, r0->lo_nr * sizeof r0->lo_sub[0]);
243 if (r0->lo_sub != NULL) {
247 subconf->coc_inode = conf->coc_inode;
248 spin_lock_init(&r0->lo_sub_lock);
250 * Create stripe cl_objects.
252 for (i = 0; i < r0->lo_nr && result == 0; ++i) {
253 struct cl_device *subdev;
254 struct lov_oinfo *oinfo = lsm->lsm_oinfo[i];
255 int ost_idx = oinfo->loi_ost_idx;
257 if (lov_oinfo_is_dummy(oinfo))
260 result = ostid_to_fid(ofid, &oinfo->loi_oi,
265 subdev = lovsub2cl_dev(dev->ld_target[ost_idx]);
266 subconf->u.coc_oinfo = oinfo;
267 LASSERTF(subdev != NULL, "not init ost %d\n", ost_idx);
268 /* In the function below, .hs_keycmp resolves to
269 * lu_obj_hop_keycmp() */
270 /* coverity[overrun-buffer-val] */
271 stripe = lov_sub_find(env, subdev, ofid, subconf);
272 if (!IS_ERR(stripe)) {
273 result = lov_init_sub(env, lov, stripe, r0, i);
274 if (result == -EAGAIN) { /* try again */
280 result = PTR_ERR(stripe);
284 int sz = lov_page_slice_fixup(lov, stripe);
285 LASSERT(ergo(psz > 0, psz == sz));
290 cl_object_header(&lov->lo_cl)->coh_page_bufsize += psz;
297 static int lov_init_released(const struct lu_env *env,
298 struct lov_device *dev, struct lov_object *lov,
299 const struct cl_object_conf *conf,
300 union lov_layout_state *state)
302 struct lov_stripe_md *lsm = conf->u.coc_md->lsm;
304 LASSERT(lsm != NULL);
305 LASSERT(lsm_is_released(lsm));
306 LASSERT(lov->lo_lsm == NULL);
308 lov->lo_lsm = lsm_addref(lsm);
312 static int lov_delete_empty(const struct lu_env *env, struct lov_object *lov,
313 union lov_layout_state *state)
315 LASSERT(lov->lo_type == LLT_EMPTY || lov->lo_type == LLT_RELEASED);
317 lov_layout_wait(env, lov);
321 static void lov_subobject_kill(const struct lu_env *env, struct lov_object *lov,
322 struct lovsub_object *los, int idx)
324 struct cl_object *sub;
325 struct lov_layout_raid0 *r0;
326 struct lu_site *site;
327 struct lu_site_bkt_data *bkt;
328 wait_queue_t *waiter;
331 LASSERT(r0->lo_sub[idx] == los);
333 sub = lovsub2cl(los);
334 site = sub->co_lu.lo_dev->ld_site;
335 bkt = lu_site_bkt_from_fid(site, &sub->co_lu.lo_header->loh_fid);
337 cl_object_kill(env, sub);
338 /* release a reference to the sub-object and ... */
339 lu_object_ref_del(&sub->co_lu, "lov-parent", lov);
340 cl_object_put(env, sub);
342 /* ... wait until it is actually destroyed---sub-object clears its
343 * ->lo_sub[] slot in lovsub_object_fini() */
344 if (r0->lo_sub[idx] == los) {
345 waiter = &lov_env_info(env)->lti_waiter;
346 init_waitqueue_entry_current(waiter);
347 add_wait_queue(&bkt->lsb_marche_funebre, waiter);
348 set_current_state(TASK_UNINTERRUPTIBLE);
350 /* this wait-queue is signaled at the end of
351 * lu_object_free(). */
352 set_current_state(TASK_UNINTERRUPTIBLE);
353 spin_lock(&r0->lo_sub_lock);
354 if (r0->lo_sub[idx] == los) {
355 spin_unlock(&r0->lo_sub_lock);
356 waitq_wait(waiter, TASK_UNINTERRUPTIBLE);
358 spin_unlock(&r0->lo_sub_lock);
359 set_current_state(TASK_RUNNING);
363 remove_wait_queue(&bkt->lsb_marche_funebre, waiter);
365 LASSERT(r0->lo_sub[idx] == NULL);
368 static int lov_delete_raid0(const struct lu_env *env, struct lov_object *lov,
369 union lov_layout_state *state)
371 struct lov_layout_raid0 *r0 = &state->raid0;
372 struct lov_stripe_md *lsm = lov->lo_lsm;
377 dump_lsm(D_INODE, lsm);
379 lov_layout_wait(env, lov);
380 if (r0->lo_sub != NULL) {
381 for (i = 0; i < r0->lo_nr; ++i) {
382 struct lovsub_object *los = r0->lo_sub[i];
385 cl_object_prune(env, &los->lso_cl);
387 * If top-level object is to be evicted from
388 * the cache, so are its sub-objects.
390 lov_subobject_kill(env, lov, los, i);
397 static void lov_fini_empty(const struct lu_env *env, struct lov_object *lov,
398 union lov_layout_state *state)
400 LASSERT(lov->lo_type == LLT_EMPTY || lov->lo_type == LLT_RELEASED);
403 static void lov_fini_raid0(const struct lu_env *env, struct lov_object *lov,
404 union lov_layout_state *state)
406 struct lov_layout_raid0 *r0 = &state->raid0;
409 if (r0->lo_sub != NULL) {
410 OBD_FREE_LARGE(r0->lo_sub, r0->lo_nr * sizeof r0->lo_sub[0]);
414 dump_lsm(D_INODE, lov->lo_lsm);
415 lov_free_memmd(&lov->lo_lsm);
420 static void lov_fini_released(const struct lu_env *env, struct lov_object *lov,
421 union lov_layout_state *state)
424 dump_lsm(D_INODE, lov->lo_lsm);
425 lov_free_memmd(&lov->lo_lsm);
429 static int lov_print_empty(const struct lu_env *env, void *cookie,
430 lu_printer_t p, const struct lu_object *o)
432 (*p)(env, cookie, "empty %d\n", lu2lov(o)->lo_layout_invalid);
436 static int lov_print_raid0(const struct lu_env *env, void *cookie,
437 lu_printer_t p, const struct lu_object *o)
439 struct lov_object *lov = lu2lov(o);
440 struct lov_layout_raid0 *r0 = lov_r0(lov);
441 struct lov_stripe_md *lsm = lov->lo_lsm;
444 (*p)(env, cookie, "stripes: %d, %s, lsm{%p 0x%08X %d %u %u}:\n",
445 r0->lo_nr, lov->lo_layout_invalid ? "invalid" : "valid", lsm,
446 lsm->lsm_magic, atomic_read(&lsm->lsm_refc),
447 lsm->lsm_stripe_count, lsm->lsm_layout_gen);
448 for (i = 0; i < r0->lo_nr; ++i) {
449 struct lu_object *sub;
451 if (r0->lo_sub[i] != NULL) {
452 sub = lovsub2lu(r0->lo_sub[i]);
453 lu_object_print(env, cookie, p, sub);
455 (*p)(env, cookie, "sub %d absent\n", i);
461 static int lov_print_released(const struct lu_env *env, void *cookie,
462 lu_printer_t p, const struct lu_object *o)
464 struct lov_object *lov = lu2lov(o);
465 struct lov_stripe_md *lsm = lov->lo_lsm;
468 "released: %s, lsm{%p 0x%08X %d %u %u}:\n",
469 lov->lo_layout_invalid ? "invalid" : "valid", lsm,
470 lsm->lsm_magic, atomic_read(&lsm->lsm_refc),
471 lsm->lsm_stripe_count, lsm->lsm_layout_gen);
476 * Implements cl_object_operations::coo_attr_get() method for an object
477 * without stripes (LLT_EMPTY layout type).
479 * The only attributes this layer is authoritative in this case is
480 * cl_attr::cat_blocks---it's 0.
482 static int lov_attr_get_empty(const struct lu_env *env, struct cl_object *obj,
483 struct cl_attr *attr)
485 attr->cat_blocks = 0;
489 static int lov_attr_get_raid0(const struct lu_env *env, struct cl_object *obj,
490 struct cl_attr *attr)
492 struct lov_object *lov = cl2lov(obj);
493 struct lov_layout_raid0 *r0 = lov_r0(lov);
494 struct cl_attr *lov_attr = &r0->lo_attr;
499 /* this is called w/o holding type guard mutex, so it must be inside
500 * an on going IO otherwise lsm may be replaced.
501 * LU-2117: it turns out there exists one exception. For mmaped files,
502 * the lock of those files may be requested in the other file's IO
503 * context, and this function is called in ccc_lock_state(), it will
504 * hit this assertion.
505 * Anyway, it's still okay to call attr_get w/o type guard as layout
506 * can't go if locks exist. */
507 /* LASSERT(atomic_read(&lsm->lsm_refc) > 1); */
509 if (!r0->lo_attr_valid) {
510 struct lov_stripe_md *lsm = lov->lo_lsm;
511 struct ost_lvb *lvb = &lov_env_info(env)->lti_lvb;
514 memset(lvb, 0, sizeof(*lvb));
515 /* XXX: timestamps can be negative by sanity:test_39m,
517 lvb->lvb_atime = LLONG_MIN;
518 lvb->lvb_ctime = LLONG_MIN;
519 lvb->lvb_mtime = LLONG_MIN;
522 * XXX that should be replaced with a loop over sub-objects,
523 * doing cl_object_attr_get() on them. But for now, let's
524 * reuse old lov code.
528 * XXX take lsm spin-lock to keep lov_merge_lvb_kms()
529 * happy. It's not needed, because new code uses
530 * ->coh_attr_guard spin-lock to protect consistency of
531 * sub-object attributes.
533 lov_stripe_lock(lsm);
534 result = lov_merge_lvb_kms(lsm, lvb, &kms);
535 lov_stripe_unlock(lsm);
537 cl_lvb2attr(lov_attr, lvb);
538 lov_attr->cat_kms = kms;
539 r0->lo_attr_valid = 1;
542 if (result == 0) { /* merge results */
543 attr->cat_blocks = lov_attr->cat_blocks;
544 attr->cat_size = lov_attr->cat_size;
545 attr->cat_kms = lov_attr->cat_kms;
546 if (attr->cat_atime < lov_attr->cat_atime)
547 attr->cat_atime = lov_attr->cat_atime;
548 if (attr->cat_ctime < lov_attr->cat_ctime)
549 attr->cat_ctime = lov_attr->cat_ctime;
550 if (attr->cat_mtime < lov_attr->cat_mtime)
551 attr->cat_mtime = lov_attr->cat_mtime;
556 const static struct lov_layout_operations lov_dispatch[] = {
558 .llo_init = lov_init_empty,
559 .llo_delete = lov_delete_empty,
560 .llo_fini = lov_fini_empty,
561 .llo_install = lov_install_empty,
562 .llo_print = lov_print_empty,
563 .llo_page_init = lov_page_init_empty,
564 .llo_lock_init = lov_lock_init_empty,
565 .llo_io_init = lov_io_init_empty,
566 .llo_getattr = lov_attr_get_empty
569 .llo_init = lov_init_raid0,
570 .llo_delete = lov_delete_raid0,
571 .llo_fini = lov_fini_raid0,
572 .llo_install = lov_install_raid0,
573 .llo_print = lov_print_raid0,
574 .llo_page_init = lov_page_init_raid0,
575 .llo_lock_init = lov_lock_init_raid0,
576 .llo_io_init = lov_io_init_raid0,
577 .llo_getattr = lov_attr_get_raid0
580 .llo_init = lov_init_released,
581 .llo_delete = lov_delete_empty,
582 .llo_fini = lov_fini_released,
583 .llo_install = lov_install_empty,
584 .llo_print = lov_print_released,
585 .llo_page_init = lov_page_init_empty,
586 .llo_lock_init = lov_lock_init_empty,
587 .llo_io_init = lov_io_init_released,
588 .llo_getattr = lov_attr_get_empty
593 * Performs a double-dispatch based on the layout type of an object.
595 #define LOV_2DISPATCH_NOLOCK(obj, op, ...) \
597 struct lov_object *__obj = (obj); \
598 enum lov_layout_type __llt; \
600 __llt = __obj->lo_type; \
601 LASSERT(0 <= __llt && __llt < ARRAY_SIZE(lov_dispatch)); \
602 lov_dispatch[__llt].op(__VA_ARGS__); \
606 * Return lov_layout_type associated with a given lsm
608 static enum lov_layout_type lov_type(struct lov_stripe_md *lsm)
612 if (lsm_is_released(lsm))
617 static inline void lov_conf_freeze(struct lov_object *lov)
619 if (lov->lo_owner != current)
620 down_read(&lov->lo_type_guard);
623 static inline void lov_conf_thaw(struct lov_object *lov)
625 if (lov->lo_owner != current)
626 up_read(&lov->lo_type_guard);
629 #define LOV_2DISPATCH_MAYLOCK(obj, op, lock, ...) \
631 struct lov_object *__obj = (obj); \
632 int __lock = !!(lock); \
633 typeof(lov_dispatch[0].op(__VA_ARGS__)) __result; \
636 lov_conf_freeze(__obj); \
637 __result = LOV_2DISPATCH_NOLOCK(obj, op, __VA_ARGS__); \
639 lov_conf_thaw(__obj); \
644 * Performs a locked double-dispatch based on the layout type of an object.
646 #define LOV_2DISPATCH(obj, op, ...) \
647 LOV_2DISPATCH_MAYLOCK(obj, op, 1, __VA_ARGS__)
649 #define LOV_2DISPATCH_VOID(obj, op, ...) \
651 struct lov_object *__obj = (obj); \
652 enum lov_layout_type __llt; \
654 lov_conf_freeze(__obj); \
655 __llt = __obj->lo_type; \
656 LASSERT(0 <= __llt && __llt < ARRAY_SIZE(lov_dispatch)); \
657 lov_dispatch[__llt].op(__VA_ARGS__); \
658 lov_conf_thaw(__obj); \
661 static void lov_conf_lock(struct lov_object *lov)
663 LASSERT(lov->lo_owner != current);
664 down_write(&lov->lo_type_guard);
665 LASSERT(lov->lo_owner == NULL);
666 lov->lo_owner = current;
669 static void lov_conf_unlock(struct lov_object *lov)
671 lov->lo_owner = NULL;
672 up_write(&lov->lo_type_guard);
675 static int lov_layout_wait(const struct lu_env *env, struct lov_object *lov)
677 struct l_wait_info lwi = { 0 };
680 while (atomic_read(&lov->lo_active_ios) > 0) {
681 CDEBUG(D_INODE, "file:"DFID" wait for active IO, now: %d.\n",
682 PFID(lu_object_fid(lov2lu(lov))),
683 atomic_read(&lov->lo_active_ios));
685 l_wait_event(lov->lo_waitq,
686 atomic_read(&lov->lo_active_ios) == 0, &lwi);
691 static int lov_layout_change(const struct lu_env *unused,
692 struct lov_object *lov,
693 const struct cl_object_conf *conf)
696 enum lov_layout_type llt = LLT_EMPTY;
697 union lov_layout_state *state = &lov->u;
698 const struct lov_layout_operations *old_ops;
699 const struct lov_layout_operations *new_ops;
706 LASSERT(0 <= lov->lo_type && lov->lo_type < ARRAY_SIZE(lov_dispatch));
708 if (conf->u.coc_md != NULL)
709 llt = lov_type(conf->u.coc_md->lsm);
710 LASSERT(0 <= llt && llt < ARRAY_SIZE(lov_dispatch));
712 cookie = cl_env_reenter();
713 env = cl_env_get(&refcheck);
715 cl_env_reexit(cookie);
716 RETURN(PTR_ERR(env));
719 CDEBUG(D_INODE, DFID" from %s to %s\n",
720 PFID(lu_object_fid(lov2lu(lov))),
721 llt2str(lov->lo_type), llt2str(llt));
723 old_ops = &lov_dispatch[lov->lo_type];
724 new_ops = &lov_dispatch[llt];
726 result = cl_object_prune(env, &lov->lo_cl);
730 result = old_ops->llo_delete(env, lov, &lov->u);
732 old_ops->llo_fini(env, lov, &lov->u);
734 LASSERT(atomic_read(&lov->lo_active_ios) == 0);
736 lov->lo_type = LLT_EMPTY;
737 /* page bufsize fixup */
738 cl_object_header(&lov->lo_cl)->coh_page_bufsize -=
739 lov_page_slice_fixup(lov, NULL);
741 result = new_ops->llo_init(env,
742 lu2lov_dev(lov->lo_cl.co_lu.lo_dev),
745 new_ops->llo_install(env, lov, state);
748 new_ops->llo_delete(env, lov, state);
749 new_ops->llo_fini(env, lov, state);
750 /* this file becomes an EMPTY file. */
755 cl_env_put(env, &refcheck);
756 cl_env_reexit(cookie);
760 /*****************************************************************************
762 * Lov object operations.
765 int lov_object_init(const struct lu_env *env, struct lu_object *obj,
766 const struct lu_object_conf *conf)
768 struct lov_device *dev = lu2lov_dev(obj->lo_dev);
769 struct lov_object *lov = lu2lov(obj);
770 const struct cl_object_conf *cconf = lu2cl_conf(conf);
771 union lov_layout_state *set = &lov->u;
772 const struct lov_layout_operations *ops;
776 init_rwsem(&lov->lo_type_guard);
777 atomic_set(&lov->lo_active_ios, 0);
778 init_waitqueue_head(&lov->lo_waitq);
780 cl_object_page_init(lu2cl(obj), sizeof(struct lov_page));
782 /* no locking is necessary, as object is being created */
783 lov->lo_type = lov_type(cconf->u.coc_md->lsm);
784 ops = &lov_dispatch[lov->lo_type];
785 result = ops->llo_init(env, dev, lov, cconf, set);
787 ops->llo_install(env, lov, set);
791 static int lov_conf_set(const struct lu_env *env, struct cl_object *obj,
792 const struct cl_object_conf *conf)
794 struct lov_stripe_md *lsm = NULL;
795 struct lov_object *lov = cl2lov(obj);
800 if (conf->coc_opc == OBJECT_CONF_INVALIDATE) {
801 lov->lo_layout_invalid = true;
802 GOTO(out, result = 0);
805 if (conf->coc_opc == OBJECT_CONF_WAIT) {
806 if (lov->lo_layout_invalid &&
807 atomic_read(&lov->lo_active_ios) > 0) {
808 lov_conf_unlock(lov);
809 result = lov_layout_wait(env, lov);
815 LASSERT(conf->coc_opc == OBJECT_CONF_SET);
817 if (conf->u.coc_md != NULL)
818 lsm = conf->u.coc_md->lsm;
819 if ((lsm == NULL && lov->lo_lsm == NULL) ||
820 ((lsm != NULL && lov->lo_lsm != NULL) &&
821 (lov->lo_lsm->lsm_layout_gen == lsm->lsm_layout_gen) &&
822 (lov->lo_lsm->lsm_pattern == lsm->lsm_pattern))) {
823 /* same version of layout */
824 lov->lo_layout_invalid = false;
825 GOTO(out, result = 0);
828 /* will change layout - check if there still exists active IO. */
829 if (atomic_read(&lov->lo_active_ios) > 0) {
830 lov->lo_layout_invalid = true;
831 GOTO(out, result = -EBUSY);
834 result = lov_layout_change(env, lov, conf);
835 lov->lo_layout_invalid = result != 0;
839 lov_conf_unlock(lov);
840 CDEBUG(D_INODE, DFID" lo_layout_invalid=%d\n",
841 PFID(lu_object_fid(lov2lu(lov))), lov->lo_layout_invalid);
845 static void lov_object_delete(const struct lu_env *env, struct lu_object *obj)
847 struct lov_object *lov = lu2lov(obj);
850 LOV_2DISPATCH_VOID(lov, llo_delete, env, lov, &lov->u);
854 static void lov_object_free(const struct lu_env *env, struct lu_object *obj)
856 struct lov_object *lov = lu2lov(obj);
859 LOV_2DISPATCH_VOID(lov, llo_fini, env, lov, &lov->u);
861 OBD_SLAB_FREE_PTR(lov, lov_object_kmem);
865 static int lov_object_print(const struct lu_env *env, void *cookie,
866 lu_printer_t p, const struct lu_object *o)
868 return LOV_2DISPATCH_NOLOCK(lu2lov(o), llo_print, env, cookie, p, o);
871 int lov_page_init(const struct lu_env *env, struct cl_object *obj,
872 struct cl_page *page, pgoff_t index)
874 return LOV_2DISPATCH_NOLOCK(cl2lov(obj), llo_page_init, env, obj, page,
879 * Implements cl_object_operations::clo_io_init() method for lov
880 * layer. Dispatches to the appropriate layout io initialization method.
882 int lov_io_init(const struct lu_env *env, struct cl_object *obj,
885 CL_IO_SLICE_CLEAN(lov_env_io(env), lis_cl);
886 return LOV_2DISPATCH_MAYLOCK(cl2lov(obj), llo_io_init,
887 !io->ci_ignore_layout, env, obj, io);
891 * An implementation of cl_object_operations::clo_attr_get() method for lov
892 * layer. For raid0 layout this collects and merges attributes of all
895 static int lov_attr_get(const struct lu_env *env, struct cl_object *obj,
896 struct cl_attr *attr)
898 /* do not take lock, as this function is called under a
899 * spin-lock. Layout is protected from changing by ongoing IO. */
900 return LOV_2DISPATCH_NOLOCK(cl2lov(obj), llo_getattr, env, obj, attr);
903 static int lov_attr_set(const struct lu_env *env, struct cl_object *obj,
904 const struct cl_attr *attr, unsigned valid)
907 * No dispatch is required here, as no layout implements this.
912 int lov_lock_init(const struct lu_env *env, struct cl_object *obj,
913 struct cl_lock *lock, const struct cl_io *io)
915 /* No need to lock because we've taken one refcount of layout. */
916 return LOV_2DISPATCH_NOLOCK(cl2lov(obj), llo_lock_init, env, obj, lock,
920 static const struct cl_object_operations lov_ops = {
921 .coo_page_init = lov_page_init,
922 .coo_lock_init = lov_lock_init,
923 .coo_io_init = lov_io_init,
924 .coo_attr_get = lov_attr_get,
925 .coo_attr_set = lov_attr_set,
926 .coo_conf_set = lov_conf_set
929 static const struct lu_object_operations lov_lu_obj_ops = {
930 .loo_object_init = lov_object_init,
931 .loo_object_delete = lov_object_delete,
932 .loo_object_release = NULL,
933 .loo_object_free = lov_object_free,
934 .loo_object_print = lov_object_print,
935 .loo_object_invariant = NULL
938 struct lu_object *lov_object_alloc(const struct lu_env *env,
939 const struct lu_object_header *unused,
940 struct lu_device *dev)
942 struct lov_object *lov;
943 struct lu_object *obj;
946 OBD_SLAB_ALLOC_PTR_GFP(lov, lov_object_kmem, GFP_NOFS);
949 lu_object_init(obj, NULL, dev);
950 lov->lo_cl.co_ops = &lov_ops;
951 lov->lo_type = -1; /* invalid, to catch uninitialized type */
953 * object io operation vector (cl_object::co_iop) is installed
954 * later in lov_object_init(), as different vectors are used
955 * for object with different layouts.
957 obj->lo_ops = &lov_lu_obj_ops;
963 struct lov_stripe_md *lov_lsm_addref(struct lov_object *lov)
965 struct lov_stripe_md *lsm = NULL;
967 lov_conf_freeze(lov);
968 if (lov->lo_lsm != NULL) {
969 lsm = lsm_addref(lov->lo_lsm);
970 CDEBUG(D_INODE, "lsm %p addref %d/%d by %p.\n",
971 lsm, atomic_read(&lsm->lsm_refc),
972 lov->lo_layout_invalid, current);
978 struct lov_stripe_md *lov_lsm_get(struct cl_object *clobj)
980 struct lu_object *luobj;
981 struct lov_stripe_md *lsm = NULL;
986 luobj = lu_object_locate(&cl_object_header(clobj)->coh_lu,
989 lsm = lov_lsm_addref(lu2lov(luobj));
992 EXPORT_SYMBOL(lov_lsm_get);
994 void lov_lsm_put(struct cl_object *unused, struct lov_stripe_md *lsm)
997 lov_free_memmd(&lsm);
999 EXPORT_SYMBOL(lov_lsm_put);
1001 int lov_read_and_clear_async_rc(struct cl_object *clob)
1003 struct lu_object *luobj;
1007 luobj = lu_object_locate(&cl_object_header(clob)->coh_lu,
1009 if (luobj != NULL) {
1010 struct lov_object *lov = lu2lov(luobj);
1012 lov_conf_freeze(lov);
1013 switch (lov->lo_type) {
1015 struct lov_stripe_md *lsm;
1019 LASSERT(lsm != NULL);
1020 for (i = 0; i < lsm->lsm_stripe_count; i++) {
1021 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
1023 if (lov_oinfo_is_dummy(loi))
1026 if (loi->loi_ar.ar_rc && !rc)
1027 rc = loi->loi_ar.ar_rc;
1028 loi->loi_ar.ar_rc = 0;
1041 EXPORT_SYMBOL(lov_read_and_clear_async_rc);