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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License version 2 for more details. A copy is
14 * included in the COPYING file that accompanied this code.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 * Copyright (c) 2012, 2017, Intel Corporation.
26 * lustre/obdclass/local_storage.c
28 * Local storage for file/objects with fid generation. Works on top of OSD.
30 * Author: Mikhail Pershin <mike.pershin@intel.com>
33 #define DEBUG_SUBSYSTEM S_CLASS
35 #include "local_storage.h"
37 /* all initialized local storages on this node are linked on this */
38 static LIST_HEAD(ls_list_head);
39 static DEFINE_MUTEX(ls_list_mutex);
41 static int ls_object_init(const struct lu_env *env, struct lu_object *o,
42 const struct lu_object_conf *unused)
45 struct lu_object *below;
46 struct lu_device *under;
50 ls = container_of(o->lo_dev, struct ls_device, ls_top_dev.dd_lu_dev);
51 under = &ls->ls_osd->dd_lu_dev;
52 below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
56 lu_object_add(o, below);
61 static void ls_object_free(const struct lu_env *env, struct lu_object *o)
63 struct ls_object *obj = lu2ls_obj(o);
64 struct lu_object_header *h = o->lo_header;
66 dt_object_fini(&obj->ls_obj);
67 lu_object_header_fini(h);
68 OBD_FREE_PRE(obj, sizeof(*obj), "kfreed");
69 kfree_rcu(obj, ls_header.loh_rcu);
72 static const struct lu_object_operations ls_lu_obj_ops = {
73 .loo_object_init = ls_object_init,
74 .loo_object_free = ls_object_free,
77 static struct lu_object *ls_object_alloc(const struct lu_env *env,
78 const struct lu_object_header *_h,
81 struct lu_object_header *h;
92 lu_object_header_init(h);
93 dt_object_init(&o->ls_obj, h, d);
94 lu_object_add_top(h, l);
96 l->lo_ops = &ls_lu_obj_ops;
104 static const struct lu_device_operations ls_lu_dev_ops = {
105 .ldo_object_alloc = ls_object_alloc
108 static struct ls_device *__ls_find_dev(struct dt_device *dev)
110 struct ls_device *ls, *ret = NULL;
112 list_for_each_entry(ls, &ls_list_head, ls_linkage) {
113 if (ls->ls_osd == dev) {
114 atomic_inc(&ls->ls_refcount);
122 struct ls_device *ls_find_dev(struct dt_device *dev)
124 struct ls_device *ls;
126 mutex_lock(&ls_list_mutex);
127 ls = __ls_find_dev(dev);
128 mutex_unlock(&ls_list_mutex);
133 static const struct lu_device_type_operations ls_device_type_ops = {
138 static struct lu_device_type ls_lu_type = {
139 .ldt_name = "local_storage",
140 .ldt_ops = &ls_device_type_ops,
143 struct ls_device *ls_device_get(struct dt_device *dev)
145 struct ls_device *ls;
149 mutex_lock(&ls_list_mutex);
150 ls = __ls_find_dev(dev);
154 /* not found, then create */
157 GOTO(out_ls, ls = ERR_PTR(-ENOMEM));
159 atomic_set(&ls->ls_refcount, 1);
160 INIT_LIST_HEAD(&ls->ls_los_list);
161 mutex_init(&ls->ls_los_mutex);
165 LASSERT(dev->dd_lu_dev.ld_site);
166 lu_device_init(&ls->ls_top_dev.dd_lu_dev, &ls_lu_type);
167 ls->ls_top_dev.dd_lu_dev.ld_ops = &ls_lu_dev_ops;
168 ls->ls_top_dev.dd_lu_dev.ld_site = dev->dd_lu_dev.ld_site;
170 /* finally add ls to the list */
171 list_add(&ls->ls_linkage, &ls_list_head);
173 mutex_unlock(&ls_list_mutex);
177 void ls_device_put(const struct lu_env *env, struct ls_device *ls)
180 if (!atomic_dec_and_test(&ls->ls_refcount))
183 mutex_lock(&ls_list_mutex);
184 if (atomic_read(&ls->ls_refcount) == 0) {
185 LASSERT(list_empty(&ls->ls_los_list));
186 list_del(&ls->ls_linkage);
187 lu_site_purge(env, ls->ls_top_dev.dd_lu_dev.ld_site, ~0);
188 lu_device_fini(&ls->ls_top_dev.dd_lu_dev);
191 mutex_unlock(&ls_list_mutex);
195 * local file fid generation
197 int local_object_fid_generate(const struct lu_env *env,
198 struct local_oid_storage *los,
201 LASSERT(los->los_dev);
202 LASSERT(los->los_obj);
206 /* to make it unique after reboot we store
207 * the latest generated fid atomically with
208 * object creation see local_object_create() */
210 mutex_lock(&los->los_id_lock);
211 fid->f_seq = los->los_seq;
212 fid->f_oid = ++los->los_last_oid;
214 mutex_unlock(&los->los_id_lock);
219 int local_object_declare_create(const struct lu_env *env,
220 struct local_oid_storage *los,
221 struct dt_object *o, struct lu_attr *attr,
222 struct dt_object_format *dof,
225 struct dt_thread_info *dti = dt_info(env);
230 /* update fid generation file */
232 LASSERT(dt_object_exists(los->los_obj));
233 dti->dti_lb.lb_buf = NULL;
234 dti->dti_lb.lb_len = sizeof(struct los_ondisk);
235 rc = dt_declare_record_write(env, los->los_obj,
236 &dti->dti_lb, 0, th);
241 rc = dt_declare_create(env, o, attr, NULL, dof, th);
245 dti->dti_lb.lb_buf = NULL;
246 dti->dti_lb.lb_len = sizeof(dti->dti_lma);
247 rc = dt_declare_xattr_set(env, o, &dti->dti_lb, XATTR_NAME_LMA, 0, th);
252 int local_object_create(const struct lu_env *env,
253 struct local_oid_storage *los,
254 struct dt_object *o, struct lu_attr *attr,
255 struct dt_object_format *dof, struct thandle *th)
257 struct dt_thread_info *dti = dt_info(env);
263 rc = dt_create(env, o, attr, NULL, dof, th);
270 LASSERT(los->los_obj);
271 LASSERT(dt_object_exists(los->los_obj));
273 /* many threads can be updated this, serialize
274 * them here to avoid the race where one thread
275 * takes the value first, but writes it last */
276 mutex_lock(&los->los_id_lock);
278 /* update local oid number on disk so that
279 * we know the last one used after reboot */
280 lastid = cpu_to_le64(los->los_last_oid);
283 dti->dti_lb.lb_buf = &lastid;
284 dti->dti_lb.lb_len = sizeof(lastid);
285 rc = dt_record_write(env, los->los_obj, &dti->dti_lb, &dti->dti_off,
287 mutex_unlock(&los->los_id_lock);
293 * Create local named object (file, directory or index) in parent directory.
295 static struct dt_object *__local_file_create(const struct lu_env *env,
296 const struct lu_fid *fid,
297 struct local_oid_storage *los,
298 struct ls_device *ls,
299 struct dt_object *parent,
301 struct lu_attr *attr,
302 struct dt_object_format *dof)
304 struct dt_thread_info *dti = dt_info(env);
305 struct lu_object_conf *conf = &dti->dti_conf;
306 struct dt_insert_rec *rec = &dti->dti_dt_rec;
307 struct dt_object *dto;
311 /* We know that the target object does not exist, to be created,
312 * then give some hints - LOC_F_NEW to help low layer to handle
313 * that efficiently and properly. */
314 memset(conf, 0, sizeof(*conf));
315 conf->loc_flags = LOC_F_NEW;
316 dto = ls_locate(env, ls, fid, conf);
317 if (unlikely(IS_ERR(dto)))
320 LASSERT(dto != NULL);
321 if (dt_object_exists(dto))
322 GOTO(out, rc = -EEXIST);
324 th = dt_trans_create(env, ls->ls_osd);
326 GOTO(out, rc = PTR_ERR(th));
328 rc = local_object_declare_create(env, los, dto, attr, dof, th);
330 GOTO(trans_stop, rc);
332 if (dti->dti_dof.dof_type == DFT_DIR) {
333 rc = dt_declare_ref_add(env, dto, th);
335 GOTO(trans_stop, rc);
337 rc = dt_declare_ref_add(env, parent, th);
339 GOTO(trans_stop, rc);
343 rec->rec_type = attr->la_mode & S_IFMT;
344 rc = dt_declare_insert(env, parent, (const struct dt_rec *)rec,
345 (const struct dt_key *)name, th);
347 GOTO(trans_stop, rc);
349 if (dti->dti_dof.dof_type == DFT_DIR) {
350 if (!dt_try_as_dir(env, dto))
351 GOTO(trans_stop, rc = -ENOTDIR);
353 rec->rec_type = S_IFDIR;
355 rc = dt_declare_insert(env, dto, (const struct dt_rec *)rec,
356 (const struct dt_key *)".", th);
358 GOTO(trans_stop, rc);
360 rec->rec_fid = lu_object_fid(&parent->do_lu);
361 rc = dt_declare_insert(env, dto, (const struct dt_rec *)rec,
362 (const struct dt_key *)"..", th);
364 GOTO(trans_stop, rc);
366 rc = dt_declare_ref_add(env, dto, th);
368 GOTO(trans_stop, rc);
371 rc = dt_trans_start_local(env, ls->ls_osd, th);
373 GOTO(trans_stop, rc);
375 dt_write_lock(env, dto, DT_SRC_CHILD);
376 if (dt_object_exists(dto))
377 GOTO(unlock, rc = 0);
379 CDEBUG(D_OTHER, "create new object "DFID"\n",
380 PFID(lu_object_fid(&dto->do_lu)));
381 rc = local_object_create(env, los, dto, attr, dof, th);
384 LASSERT(dt_object_exists(dto));
386 if (dti->dti_dof.dof_type == DFT_DIR) {
388 rec->rec_type = S_IFDIR;
390 /* Add "." and ".." for newly created dir */
391 rc = dt_insert(env, dto, (const struct dt_rec *)rec,
392 (const struct dt_key *)".", th);
396 dt_ref_add(env, dto, th);
397 rec->rec_fid = lu_object_fid(&parent->do_lu);
398 rc = dt_insert(env, dto, (const struct dt_rec *)rec,
399 (const struct dt_key *)"..", th);
405 rec->rec_type = dto->do_lu.lo_header->loh_attr;
406 dt_write_lock(env, parent, DT_SRC_PARENT);
407 rc = dt_insert(env, parent, (const struct dt_rec *)rec,
408 (const struct dt_key *)name, th);
409 if (dti->dti_dof.dof_type == DFT_DIR)
410 dt_ref_add(env, parent, th);
411 dt_write_unlock(env, parent);
416 dt_destroy(env, dto, th);
418 dt_write_unlock(env, dto);
420 dt_trans_stop(env, ls->ls_osd, th);
423 dt_object_put_nocache(env, dto);
429 struct dt_object *local_file_find(const struct lu_env *env,
430 struct local_oid_storage *los,
431 struct dt_object *parent,
434 struct dt_thread_info *dti = dt_info(env);
435 struct dt_object *dto;
440 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
442 dto = ls_locate(env, dt2ls_dev(los->los_dev),
443 &dti->dti_fid, NULL);
449 EXPORT_SYMBOL(local_file_find);
452 * Look up and create (if it does not exist) a local named file or directory in
455 struct dt_object *local_file_find_or_create(const struct lu_env *env,
456 struct local_oid_storage *los,
457 struct dt_object *parent,
458 const char *name, __u32 mode)
460 struct dt_thread_info *dti = dt_info(env);
461 struct dt_object *dto;
464 dto = local_file_find(env, los, parent, name);
465 if (!IS_ERR(dto) || PTR_ERR(dto) != -ENOENT)
468 rc = local_object_fid_generate(env, los, &dti->dti_fid);
472 /* create the object */
473 dti->dti_attr.la_valid = LA_MODE;
474 dti->dti_attr.la_mode = mode;
475 dti->dti_dof.dof_type = dt_mode_to_dft(mode & S_IFMT);
476 dto = __local_file_create(env, &dti->dti_fid, los,
477 dt2ls_dev(los->los_dev), parent, name,
478 &dti->dti_attr, &dti->dti_dof);
481 EXPORT_SYMBOL(local_file_find_or_create);
483 struct dt_object *local_file_find_or_create_with_fid(const struct lu_env *env,
484 struct dt_device *dt,
485 const struct lu_fid *fid,
486 struct dt_object *parent,
490 struct dt_thread_info *dti = dt_info(env);
491 struct dt_object *dto;
496 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
498 dto = dt_locate(env, dt, &dti->dti_fid);
499 } else if (rc != -ENOENT) {
502 struct ls_device *ls;
504 ls = ls_device_get(dt);
508 /* create the object */
509 dti->dti_attr.la_valid = LA_MODE;
510 dti->dti_attr.la_mode = mode;
511 dti->dti_dof.dof_type = dt_mode_to_dft(mode & S_IFMT);
512 dto = __local_file_create(env, fid, NULL, ls, parent,
513 name, &dti->dti_attr,
515 /* ls_device_put() will finalize the ls device, we
516 * have to open the object in other device stack */
518 dti->dti_fid = dto->do_lu.lo_header->loh_fid;
519 dt_object_put_nocache(env, dto);
520 dto = dt_locate(env, dt, &dti->dti_fid);
522 ls_device_put(env, ls);
527 EXPORT_SYMBOL(local_file_find_or_create_with_fid);
530 * Look up and create (if it does not exist) a local named index file in parent
533 struct dt_object *local_index_find_or_create(const struct lu_env *env,
534 struct local_oid_storage *los,
535 struct dt_object *parent,
536 const char *name, __u32 mode,
537 const struct dt_index_features *ft)
539 struct dt_thread_info *dti = dt_info(env);
540 struct dt_object *dto;
545 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
547 /* name is found, get the object */
548 dto = ls_locate(env, dt2ls_dev(los->los_dev),
549 &dti->dti_fid, NULL);
550 } else if (rc != -ENOENT) {
553 rc = local_object_fid_generate(env, los, &dti->dti_fid);
557 /* create the object */
558 dti->dti_attr.la_valid = LA_MODE;
559 dti->dti_attr.la_mode = mode;
560 dti->dti_dof.dof_type = DFT_INDEX;
561 dti->dti_dof.u.dof_idx.di_feat = ft;
562 dto = __local_file_create(env, &dti->dti_fid, los,
563 dt2ls_dev(los->los_dev),
564 parent, name, &dti->dti_attr,
571 EXPORT_SYMBOL(local_index_find_or_create);
574 local_index_find_or_create_with_fid(const struct lu_env *env,
575 struct dt_device *dt,
576 const struct lu_fid *fid,
577 struct dt_object *parent,
578 const char *name, __u32 mode,
579 const struct dt_index_features *ft)
581 struct dt_thread_info *dti = dt_info(env);
582 struct dt_object *dto;
587 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
589 /* name is found, get the object */
590 if (!lu_fid_eq(fid, &dti->dti_fid))
591 dto = ERR_PTR(-EINVAL);
593 dto = dt_locate(env, dt, fid);
594 } else if (rc != -ENOENT) {
597 struct ls_device *ls;
599 ls = ls_device_get(dt);
603 /* create the object */
604 dti->dti_attr.la_valid = LA_MODE;
605 dti->dti_attr.la_mode = mode;
606 dti->dti_dof.dof_type = DFT_INDEX;
607 dti->dti_dof.u.dof_idx.di_feat = ft;
608 dto = __local_file_create(env, fid, NULL, ls, parent,
609 name, &dti->dti_attr,
611 /* ls_device_put() will finalize the ls device, we
612 * have to open the object in other device stack */
614 dti->dti_fid = dto->do_lu.lo_header->loh_fid;
615 dt_object_put_nocache(env, dto);
616 dto = dt_locate(env, dt, &dti->dti_fid);
618 ls_device_put(env, ls);
623 EXPORT_SYMBOL(local_index_find_or_create_with_fid);
625 static int local_object_declare_unlink(const struct lu_env *env,
626 struct dt_device *dt,
628 struct dt_object *c, const char *name,
633 rc = dt_declare_delete(env, p, (const struct dt_key *)name, th);
637 if (S_ISDIR(p->do_lu.lo_header->loh_attr)) {
638 rc = dt_declare_ref_del(env, p, th);
643 rc = dt_declare_ref_del(env, c, th);
647 return dt_declare_destroy(env, c, th);
650 int local_object_unlink(const struct lu_env *env, struct dt_device *dt,
651 struct dt_object *parent, const char *name)
653 struct dt_thread_info *dti = dt_info(env);
654 struct dt_object *dto;
660 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
666 dto = dt_locate(env, dt, &dti->dti_fid);
667 if (unlikely(IS_ERR(dto)))
668 RETURN(PTR_ERR(dto));
670 th = dt_trans_create(env, dt);
672 GOTO(out, rc = PTR_ERR(th));
674 rc = local_object_declare_unlink(env, dt, parent, dto, name, th);
678 rc = dt_trans_start_local(env, dt, th);
682 if (S_ISDIR(dto->do_lu.lo_header->loh_attr)) {
683 dt_write_lock(env, parent, 0);
684 rc = dt_ref_del(env, parent, th);
685 dt_write_unlock(env, parent);
690 dt_write_lock(env, dto, 0);
691 rc = dt_delete(env, parent, (struct dt_key *)name, th);
695 rc = dt_ref_del(env, dto, th);
697 struct dt_insert_rec *rec = &dti->dti_dt_rec;
699 rec->rec_fid = &dti->dti_fid;
700 rec->rec_type = dto->do_lu.lo_header->loh_attr;
701 rc = dt_insert(env, parent, (const struct dt_rec *)rec,
702 (const struct dt_key *)name, th);
706 rc = dt_destroy(env, dto, th);
708 dt_write_unlock(env, dto);
710 dt_trans_stop(env, dt, th);
712 dt_object_put_nocache(env, dto);
715 EXPORT_SYMBOL(local_object_unlink);
717 struct local_oid_storage *dt_los_find(struct ls_device *ls, __u64 seq)
719 struct local_oid_storage *los, *ret = NULL;
721 list_for_each_entry(los, &ls->ls_los_list, los_list) {
722 if (los->los_seq == seq) {
723 atomic_inc(&los->los_refcount);
731 void dt_los_put(struct local_oid_storage *los)
733 if (atomic_dec_and_test(&los->los_refcount))
734 /* should never happen, only local_oid_storage_fini should
735 * drop refcount to zero */
739 /* after Lustre 2.3 release there may be old file to store last generated FID
740 * If such file exists then we have to read its content
742 static int lastid_compat_check(const struct lu_env *env, struct dt_device *dev,
743 __u64 lastid_seq, __u32 *first_oid,
744 struct ls_device *ls)
746 struct dt_thread_info *dti = dt_info(env);
747 struct dt_object *root = NULL;
748 struct los_ondisk losd;
749 struct dt_object *o = NULL;
752 rc = dt_root_get(env, dev, &dti->dti_fid);
756 root = ls_locate(env, ls, &dti->dti_fid, NULL);
758 return PTR_ERR(root);
760 /* find old last_id file */
761 snprintf(dti->dti_buf, sizeof(dti->dti_buf), "seq-%#llx-lastid",
763 rc = dt_lookup_dir(env, root, dti->dti_buf, &dti->dti_fid);
764 dt_object_put_nocache(env, root);
766 /* old llog lastid accessed by FID only */
767 if (lastid_seq != FID_SEQ_LLOG)
769 dti->dti_fid.f_seq = FID_SEQ_LLOG;
770 dti->dti_fid.f_oid = 1;
771 dti->dti_fid.f_ver = 0;
772 o = ls_locate(env, ls, &dti->dti_fid, NULL);
776 if (!dt_object_exists(o)) {
777 dt_object_put_nocache(env, o);
780 CDEBUG(D_INFO, "Found old llog lastid file\n");
784 CDEBUG(D_INFO, "Found old lastid file for sequence %#llx\n",
786 o = ls_locate(env, ls, &dti->dti_fid, NULL);
790 /* let's read seq-NNNNNN-lastid file value */
791 LASSERT(dt_object_exists(o));
793 dti->dti_lb.lb_buf = &losd;
794 dti->dti_lb.lb_len = sizeof(losd);
795 dt_read_lock(env, o, 0);
796 rc = dt_record_read(env, o, &dti->dti_lb, &dti->dti_off);
797 dt_read_unlock(env, o);
798 if (rc == 0 && le32_to_cpu(losd.lso_magic) != LOS_MAGIC) {
799 CERROR("%s: wrong content of seq-%#llx-lastid file, magic %x\n",
800 o->do_lu.lo_dev->ld_obd->obd_name, lastid_seq,
801 le32_to_cpu(losd.lso_magic));
804 CERROR("%s: failed to read seq-%#llx-lastid: rc = %d\n",
805 o->do_lu.lo_dev->ld_obd->obd_name, lastid_seq, rc);
807 dt_object_put_nocache(env, o);
809 *first_oid = le32_to_cpu(losd.lso_next_oid);
814 * Initialize local OID storage for required sequence.
815 * That may be needed for services that uses local files and requires
816 * dynamic OID allocation for them.
818 * Per each sequence we have an object with 'first_fid' identificator
819 * containing the counter for OIDs of locally created files with that
822 * It is used now by llog subsystem and MGS for NID tables
824 * Function gets first_fid to create counter object.
825 * All dynamic fids will be generated with the same sequence and incremented
828 * Returned local_oid_storage is in-memory representaion of OID storage
830 int local_oid_storage_init(const struct lu_env *env, struct dt_device *dev,
831 const struct lu_fid *first_fid,
832 struct local_oid_storage **los)
834 struct dt_thread_info *dti = dt_info(env);
835 struct ls_device *ls;
837 struct dt_object *o = NULL;
839 __u32 first_oid = fid_oid(first_fid);
844 ls = ls_device_get(dev);
848 mutex_lock(&ls->ls_los_mutex);
849 *los = dt_los_find(ls, fid_seq(first_fid));
853 /* not found, then create */
856 GOTO(out, rc = -ENOMEM);
858 atomic_set(&(*los)->los_refcount, 1);
859 mutex_init(&(*los)->los_id_lock);
860 (*los)->los_dev = &ls->ls_top_dev;
861 atomic_inc(&ls->ls_refcount);
862 list_add(&(*los)->los_list, &ls->ls_los_list);
864 /* Use {seq, 0, 0} to create the LAST_ID file for every
865 * sequence. OIDs start at LUSTRE_FID_INIT_OID.
867 dti->dti_fid.f_seq = fid_seq(first_fid);
868 dti->dti_fid.f_oid = LUSTRE_FID_LASTID_OID;
869 dti->dti_fid.f_ver = 0;
870 o = ls_locate(env, ls, &dti->dti_fid, NULL);
872 GOTO(out_los, rc = PTR_ERR(o));
874 if (!dt_object_exists(o)) {
875 rc = lastid_compat_check(env, dev, fid_seq(first_fid),
880 th = dt_trans_create(env, dev);
882 GOTO(out_los, rc = PTR_ERR(th));
884 dti->dti_attr.la_valid = LA_MODE | LA_TYPE;
885 dti->dti_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
886 dti->dti_dof.dof_type = dt_mode_to_dft(S_IFREG);
888 rc = dt_declare_create(env, o, &dti->dti_attr, NULL,
893 lastid = cpu_to_le64(first_oid);
896 dti->dti_lb.lb_buf = &lastid;
897 dti->dti_lb.lb_len = sizeof(lastid);
898 rc = dt_declare_record_write(env, o, &dti->dti_lb, dti->dti_off,
903 rc = dt_trans_start_local(env, dev, th);
907 dt_write_lock(env, o, 0);
908 if (dt_object_exists(o))
909 GOTO(out_lock, rc = 0);
911 rc = dt_create(env, o, &dti->dti_attr, NULL, &dti->dti_dof,
916 rc = dt_record_write(env, o, &dti->dti_lb, &dti->dti_off, th);
920 dt_write_unlock(env, o);
922 dt_trans_stop(env, dev, th);
925 dti->dti_lb.lb_buf = &lastid;
926 dti->dti_lb.lb_len = sizeof(lastid);
927 dt_read_lock(env, o, 0);
928 rc = dt_record_read(env, o, &dti->dti_lb, &dti->dti_off);
929 dt_read_unlock(env, o);
930 if (rc == 0 && le64_to_cpu(lastid) > OBIF_MAX_OID) {
931 CERROR("%s: bad oid %llu is read from LAST_ID\n",
932 o->do_lu.lo_dev->ld_obd->obd_name,
933 le64_to_cpu(lastid));
939 list_del(&(*los)->los_list);
940 atomic_dec(&ls->ls_refcount);
943 if (o != NULL && !IS_ERR(o))
944 dt_object_put_nocache(env, o);
946 (*los)->los_seq = fid_seq(first_fid);
947 (*los)->los_last_oid = le64_to_cpu(lastid);
949 /* Read value should not be less than initial one
950 * but possible after upgrade from older fs.
951 * In this case just switch to the first_oid in memory and
952 * it will be updated on disk with first object generated */
953 if ((*los)->los_last_oid < first_oid)
954 (*los)->los_last_oid = first_oid;
957 mutex_unlock(&ls->ls_los_mutex);
958 ls_device_put(env, ls);
961 EXPORT_SYMBOL(local_oid_storage_init);
963 void local_oid_storage_fini(const struct lu_env *env,
964 struct local_oid_storage *los)
966 struct ls_device *ls;
969 LASSERT(los->los_dev);
970 ls = dt2ls_dev(los->los_dev);
972 /* Take the mutex before decreasing the reference to avoid race
973 * conditions as described in LU-4721. */
974 mutex_lock(&ls->ls_los_mutex);
975 if (!atomic_dec_and_test(&los->los_refcount)) {
976 mutex_unlock(&ls->ls_los_mutex);
981 dt_object_put_nocache(env, los->los_obj);
982 list_del(&los->los_list);
984 mutex_unlock(&ls->ls_los_mutex);
985 ls_device_put(env, ls);
987 EXPORT_SYMBOL(local_oid_storage_fini);