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, 2015, 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 struct list_head ls_list_head = LIST_HEAD_INIT(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_of0(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);
71 static struct lu_object_operations ls_lu_obj_ops = {
72 .loo_object_init = ls_object_init,
73 .loo_object_free = ls_object_free,
76 static struct lu_object *ls_object_alloc(const struct lu_env *env,
77 const struct lu_object_header *_h,
80 struct lu_object_header *h;
91 lu_object_header_init(h);
92 dt_object_init(&o->ls_obj, h, d);
93 lu_object_add_top(h, l);
95 l->lo_ops = &ls_lu_obj_ops;
103 static struct lu_device_operations ls_lu_dev_ops = {
104 .ldo_object_alloc = ls_object_alloc
107 static struct ls_device *__ls_find_dev(struct dt_device *dev)
109 struct ls_device *ls, *ret = NULL;
111 list_for_each_entry(ls, &ls_list_head, ls_linkage) {
112 if (ls->ls_osd == dev) {
113 atomic_inc(&ls->ls_refcount);
121 struct ls_device *ls_find_dev(struct dt_device *dev)
123 struct ls_device *ls;
125 mutex_lock(&ls_list_mutex);
126 ls = __ls_find_dev(dev);
127 mutex_unlock(&ls_list_mutex);
132 static struct lu_device_type_operations ls_device_type_ops = {
137 static struct lu_device_type ls_lu_type = {
138 .ldt_name = "local_storage",
139 .ldt_ops = &ls_device_type_ops,
142 struct ls_device *ls_device_get(struct dt_device *dev)
144 struct ls_device *ls;
148 mutex_lock(&ls_list_mutex);
149 ls = __ls_find_dev(dev);
153 /* not found, then create */
156 GOTO(out_ls, ls = ERR_PTR(-ENOMEM));
158 atomic_set(&ls->ls_refcount, 1);
159 INIT_LIST_HEAD(&ls->ls_los_list);
160 mutex_init(&ls->ls_los_mutex);
164 LASSERT(dev->dd_lu_dev.ld_site);
165 lu_device_init(&ls->ls_top_dev.dd_lu_dev, &ls_lu_type);
166 ls->ls_top_dev.dd_lu_dev.ld_ops = &ls_lu_dev_ops;
167 ls->ls_top_dev.dd_lu_dev.ld_site = dev->dd_lu_dev.ld_site;
169 /* finally add ls to the list */
170 list_add(&ls->ls_linkage, &ls_list_head);
172 mutex_unlock(&ls_list_mutex);
176 void ls_device_put(const struct lu_env *env, struct ls_device *ls)
179 if (!atomic_dec_and_test(&ls->ls_refcount))
182 mutex_lock(&ls_list_mutex);
183 if (atomic_read(&ls->ls_refcount) == 0) {
184 LASSERT(list_empty(&ls->ls_los_list));
185 list_del(&ls->ls_linkage);
186 lu_site_purge(env, ls->ls_top_dev.dd_lu_dev.ld_site, ~0);
187 lu_device_fini(&ls->ls_top_dev.dd_lu_dev);
190 mutex_unlock(&ls_list_mutex);
194 * local file fid generation
196 int local_object_fid_generate(const struct lu_env *env,
197 struct local_oid_storage *los,
200 LASSERT(los->los_dev);
201 LASSERT(los->los_obj);
205 /* to make it unique after reboot we store
206 * the latest generated fid atomically with
207 * object creation see local_object_create() */
209 mutex_lock(&los->los_id_lock);
210 fid->f_seq = los->los_seq;
211 fid->f_oid = ++los->los_last_oid;
213 mutex_unlock(&los->los_id_lock);
218 int local_object_declare_create(const struct lu_env *env,
219 struct local_oid_storage *los,
220 struct dt_object *o, struct lu_attr *attr,
221 struct dt_object_format *dof,
224 struct dt_thread_info *dti = dt_info(env);
229 /* update fid generation file */
231 LASSERT(dt_object_exists(los->los_obj));
232 dti->dti_lb.lb_buf = NULL;
233 dti->dti_lb.lb_len = sizeof(struct los_ondisk);
234 rc = dt_declare_record_write(env, los->los_obj,
235 &dti->dti_lb, 0, th);
240 rc = dt_declare_create(env, o, attr, NULL, dof, th);
244 dti->dti_lb.lb_buf = NULL;
245 dti->dti_lb.lb_len = sizeof(dti->dti_lma);
246 rc = dt_declare_xattr_set(env, o, &dti->dti_lb, XATTR_NAME_LMA, 0, th);
251 int local_object_create(const struct lu_env *env,
252 struct local_oid_storage *los,
253 struct dt_object *o, struct lu_attr *attr,
254 struct dt_object_format *dof, struct thandle *th)
256 struct dt_thread_info *dti = dt_info(env);
262 rc = dt_create(env, o, attr, NULL, dof, th);
269 LASSERT(los->los_obj);
270 LASSERT(dt_object_exists(los->los_obj));
272 /* many threads can be updated this, serialize
273 * them here to avoid the race where one thread
274 * takes the value first, but writes it last */
275 mutex_lock(&los->los_id_lock);
277 /* update local oid number on disk so that
278 * we know the last one used after reboot */
279 lastid = cpu_to_le64(los->los_last_oid);
282 dti->dti_lb.lb_buf = &lastid;
283 dti->dti_lb.lb_len = sizeof(lastid);
284 rc = dt_record_write(env, los->los_obj, &dti->dti_lb, &dti->dti_off,
286 mutex_unlock(&los->los_id_lock);
292 * Create local named object (file, directory or index) in parent directory.
294 static struct dt_object *__local_file_create(const struct lu_env *env,
295 const struct lu_fid *fid,
296 struct local_oid_storage *los,
297 struct ls_device *ls,
298 struct dt_object *parent,
300 struct lu_attr *attr,
301 struct dt_object_format *dof)
303 struct dt_thread_info *dti = dt_info(env);
304 struct lu_object_conf *conf = &dti->dti_conf;
305 struct dt_insert_rec *rec = &dti->dti_dt_rec;
306 struct dt_object *dto;
310 /* We know that the target object does not exist, to be created,
311 * then give some hints - LOC_F_NEW to help low layer to handle
312 * that efficiently and properly. */
313 memset(conf, 0, sizeof(*conf));
314 conf->loc_flags = LOC_F_NEW;
315 dto = ls_locate(env, ls, fid, conf);
316 if (unlikely(IS_ERR(dto)))
319 LASSERT(dto != NULL);
320 if (dt_object_exists(dto))
321 GOTO(out, rc = -EEXIST);
323 th = dt_trans_create(env, ls->ls_osd);
325 GOTO(out, rc = PTR_ERR(th));
327 rc = local_object_declare_create(env, los, dto, attr, dof, th);
329 GOTO(trans_stop, rc);
331 if (dti->dti_dof.dof_type == DFT_DIR) {
332 rc = dt_declare_ref_add(env, dto, th);
334 GOTO(trans_stop, rc);
336 rc = dt_declare_ref_add(env, parent, th);
338 GOTO(trans_stop, rc);
342 rec->rec_type = attr->la_mode & S_IFMT;
343 rc = dt_declare_insert(env, parent, (const struct dt_rec *)rec,
344 (const struct dt_key *)name, th);
346 GOTO(trans_stop, rc);
348 if (dti->dti_dof.dof_type == DFT_DIR) {
349 if (!dt_try_as_dir(env, dto))
350 GOTO(trans_stop, rc = -ENOTDIR);
352 rec->rec_type = S_IFDIR;
354 rc = dt_declare_insert(env, dto, (const struct dt_rec *)rec,
355 (const struct dt_key *)".", th);
357 GOTO(trans_stop, rc);
359 rec->rec_fid = lu_object_fid(&parent->do_lu);
360 rc = dt_declare_insert(env, dto, (const struct dt_rec *)rec,
361 (const struct dt_key *)"..", th);
363 GOTO(trans_stop, rc);
365 rc = dt_declare_ref_add(env, dto, th);
367 GOTO(trans_stop, rc);
370 rc = dt_trans_start_local(env, ls->ls_osd, th);
372 GOTO(trans_stop, rc);
374 dt_write_lock(env, dto, LOS_CHILD);
375 if (dt_object_exists(dto))
376 GOTO(unlock, rc = 0);
378 CDEBUG(D_OTHER, "create new object "DFID"\n",
379 PFID(lu_object_fid(&dto->do_lu)));
380 rc = local_object_create(env, los, dto, attr, dof, th);
383 LASSERT(dt_object_exists(dto));
385 if (dti->dti_dof.dof_type == DFT_DIR) {
387 rec->rec_type = S_IFDIR;
389 /* Add "." and ".." for newly created dir */
390 rc = dt_insert(env, dto, (const struct dt_rec *)rec,
391 (const struct dt_key *)".", th, 1);
395 dt_ref_add(env, dto, th);
396 rec->rec_fid = lu_object_fid(&parent->do_lu);
397 rc = dt_insert(env, dto, (const struct dt_rec *)rec,
398 (const struct dt_key *)"..", th, 1);
404 rec->rec_type = dto->do_lu.lo_header->loh_attr;
405 dt_write_lock(env, parent, LOS_PARENT);
406 rc = dt_insert(env, parent, (const struct dt_rec *)rec,
407 (const struct dt_key *)name, th, 1);
408 if (dti->dti_dof.dof_type == DFT_DIR)
409 dt_ref_add(env, parent, th);
410 dt_write_unlock(env, parent);
415 dt_destroy(env, dto, th);
417 dt_write_unlock(env, dto);
419 dt_trans_stop(env, ls->ls_osd, th);
422 lu_object_put_nocache(env, &dto->do_lu);
429 * Look up and create (if it does not exist) a local named file or directory in
432 struct dt_object *local_file_find_or_create(const struct lu_env *env,
433 struct local_oid_storage *los,
434 struct dt_object *parent,
435 const char *name, __u32 mode)
437 struct dt_thread_info *dti = dt_info(env);
438 struct dt_object *dto;
443 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
445 /* name is found, get the object */
446 dto = ls_locate(env, dt2ls_dev(los->los_dev),
447 &dti->dti_fid, NULL);
448 else if (rc != -ENOENT)
451 rc = local_object_fid_generate(env, los, &dti->dti_fid);
455 /* create the object */
456 dti->dti_attr.la_valid = LA_MODE;
457 dti->dti_attr.la_mode = mode;
458 dti->dti_dof.dof_type = dt_mode_to_dft(mode & S_IFMT);
459 dto = __local_file_create(env, &dti->dti_fid, los,
460 dt2ls_dev(los->los_dev),
461 parent, name, &dti->dti_attr,
467 EXPORT_SYMBOL(local_file_find_or_create);
469 struct dt_object *local_file_find_or_create_with_fid(const struct lu_env *env,
470 struct dt_device *dt,
471 const struct lu_fid *fid,
472 struct dt_object *parent,
476 struct dt_thread_info *dti = dt_info(env);
477 struct dt_object *dto;
482 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
484 dto = dt_locate(env, dt, &dti->dti_fid);
485 } else if (rc != -ENOENT) {
488 struct ls_device *ls;
490 ls = ls_device_get(dt);
492 dto = ERR_PTR(PTR_ERR(ls));
494 /* create the object */
495 dti->dti_attr.la_valid = LA_MODE;
496 dti->dti_attr.la_mode = mode;
497 dti->dti_dof.dof_type = dt_mode_to_dft(mode & S_IFMT);
498 dto = __local_file_create(env, fid, NULL, ls, parent,
499 name, &dti->dti_attr,
501 /* ls_device_put() will finalize the ls device, we
502 * have to open the object in other device stack */
504 dti->dti_fid = dto->do_lu.lo_header->loh_fid;
505 lu_object_put_nocache(env, &dto->do_lu);
506 dto = dt_locate(env, dt, &dti->dti_fid);
508 ls_device_put(env, ls);
513 EXPORT_SYMBOL(local_file_find_or_create_with_fid);
516 * Look up and create (if it does not exist) a local named index file in parent
519 struct dt_object *local_index_find_or_create(const struct lu_env *env,
520 struct local_oid_storage *los,
521 struct dt_object *parent,
522 const char *name, __u32 mode,
523 const struct dt_index_features *ft)
525 struct dt_thread_info *dti = dt_info(env);
526 struct dt_object *dto;
531 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
533 /* name is found, get the object */
534 dto = ls_locate(env, dt2ls_dev(los->los_dev),
535 &dti->dti_fid, NULL);
536 } else if (rc != -ENOENT) {
539 rc = local_object_fid_generate(env, los, &dti->dti_fid);
543 /* create the object */
544 dti->dti_attr.la_valid = LA_MODE;
545 dti->dti_attr.la_mode = mode;
546 dti->dti_dof.dof_type = DFT_INDEX;
547 dti->dti_dof.u.dof_idx.di_feat = ft;
548 dto = __local_file_create(env, &dti->dti_fid, los,
549 dt2ls_dev(los->los_dev),
550 parent, name, &dti->dti_attr,
557 EXPORT_SYMBOL(local_index_find_or_create);
560 local_index_find_or_create_with_fid(const struct lu_env *env,
561 struct dt_device *dt,
562 const struct lu_fid *fid,
563 struct dt_object *parent,
564 const char *name, __u32 mode,
565 const struct dt_index_features *ft)
567 struct dt_thread_info *dti = dt_info(env);
568 struct dt_object *dto;
573 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
575 /* name is found, get the object */
576 if (!lu_fid_eq(fid, &dti->dti_fid))
577 dto = ERR_PTR(-EINVAL);
579 dto = dt_locate(env, dt, fid);
580 } else if (rc != -ENOENT) {
583 struct ls_device *ls;
585 ls = ls_device_get(dt);
587 dto = ERR_PTR(PTR_ERR(ls));
589 /* create the object */
590 dti->dti_attr.la_valid = LA_MODE;
591 dti->dti_attr.la_mode = mode;
592 dti->dti_dof.dof_type = DFT_INDEX;
593 dti->dti_dof.u.dof_idx.di_feat = ft;
594 dto = __local_file_create(env, fid, NULL, ls, parent,
595 name, &dti->dti_attr,
597 /* ls_device_put() will finalize the ls device, we
598 * have to open the object in other device stack */
600 dti->dti_fid = dto->do_lu.lo_header->loh_fid;
601 lu_object_put_nocache(env, &dto->do_lu);
602 dto = dt_locate(env, dt, &dti->dti_fid);
604 ls_device_put(env, ls);
609 EXPORT_SYMBOL(local_index_find_or_create_with_fid);
611 static int local_object_declare_unlink(const struct lu_env *env,
612 struct dt_device *dt,
614 struct dt_object *c, const char *name,
619 rc = dt_declare_delete(env, p, (const struct dt_key *)name, th);
623 rc = dt_declare_ref_del(env, c, th);
627 return dt_declare_destroy(env, c, th);
630 int local_object_unlink(const struct lu_env *env, struct dt_device *dt,
631 struct dt_object *parent, const char *name)
633 struct dt_thread_info *dti = dt_info(env);
634 struct dt_object *dto;
640 rc = dt_lookup_dir(env, parent, name, &dti->dti_fid);
646 dto = dt_locate(env, dt, &dti->dti_fid);
647 if (unlikely(IS_ERR(dto)))
648 RETURN(PTR_ERR(dto));
650 th = dt_trans_create(env, dt);
652 GOTO(out, rc = PTR_ERR(th));
654 rc = local_object_declare_unlink(env, dt, parent, dto, name, th);
658 rc = dt_trans_start_local(env, dt, th);
662 dt_write_lock(env, dto, 0);
663 rc = dt_delete(env, parent, (struct dt_key *)name, th);
667 rc = dt_ref_del(env, dto, th);
669 struct dt_insert_rec *rec = &dti->dti_dt_rec;
671 rec->rec_fid = &dti->dti_fid;
672 rec->rec_type = dto->do_lu.lo_header->loh_attr;
673 rc = dt_insert(env, parent, (const struct dt_rec *)rec,
674 (const struct dt_key *)name, th, 1);
678 rc = dt_destroy(env, dto, th);
680 dt_write_unlock(env, dto);
682 dt_trans_stop(env, dt, th);
684 lu_object_put_nocache(env, &dto->do_lu);
687 EXPORT_SYMBOL(local_object_unlink);
689 struct local_oid_storage *dt_los_find(struct ls_device *ls, __u64 seq)
691 struct local_oid_storage *los, *ret = NULL;
693 list_for_each_entry(los, &ls->ls_los_list, los_list) {
694 if (los->los_seq == seq) {
695 atomic_inc(&los->los_refcount);
703 void dt_los_put(struct local_oid_storage *los)
705 if (atomic_dec_and_test(&los->los_refcount))
706 /* should never happen, only local_oid_storage_fini should
707 * drop refcount to zero */
712 /* after Lustre 2.3 release there may be old file to store last generated FID
713 * If such file exists then we have to read its content
715 static int lastid_compat_check(const struct lu_env *env, struct dt_device *dev,
716 __u64 lastid_seq, __u32 *first_oid,
717 struct ls_device *ls)
719 struct dt_thread_info *dti = dt_info(env);
720 struct dt_object *root = NULL;
721 struct los_ondisk losd;
722 struct dt_object *o = NULL;
725 rc = dt_root_get(env, dev, &dti->dti_fid);
729 root = ls_locate(env, ls, &dti->dti_fid, NULL);
731 return PTR_ERR(root);
733 /* find old last_id file */
734 snprintf(dti->dti_buf, sizeof(dti->dti_buf), "seq-"LPX64"-lastid",
736 rc = dt_lookup_dir(env, root, dti->dti_buf, &dti->dti_fid);
737 lu_object_put_nocache(env, &root->do_lu);
739 /* old llog lastid accessed by FID only */
740 if (lastid_seq != FID_SEQ_LLOG)
742 dti->dti_fid.f_seq = FID_SEQ_LLOG;
743 dti->dti_fid.f_oid = 1;
744 dti->dti_fid.f_ver = 0;
745 o = ls_locate(env, ls, &dti->dti_fid, NULL);
749 if (!dt_object_exists(o)) {
750 lu_object_put_nocache(env, &o->do_lu);
753 CDEBUG(D_INFO, "Found old llog lastid file\n");
757 CDEBUG(D_INFO, "Found old lastid file for sequence "LPX64"\n",
759 o = ls_locate(env, ls, &dti->dti_fid, NULL);
763 /* let's read seq-NNNNNN-lastid file value */
764 LASSERT(dt_object_exists(o));
766 dti->dti_lb.lb_buf = &losd;
767 dti->dti_lb.lb_len = sizeof(losd);
768 dt_read_lock(env, o, 0);
769 rc = dt_record_read(env, o, &dti->dti_lb, &dti->dti_off);
770 dt_read_unlock(env, o);
771 if (rc == 0 && le32_to_cpu(losd.lso_magic) != LOS_MAGIC) {
772 CERROR("%s: wrong content of seq-"LPX64"-lastid file, magic %x\n",
773 o->do_lu.lo_dev->ld_obd->obd_name, lastid_seq,
774 le32_to_cpu(losd.lso_magic));
777 CERROR("%s: failed to read seq-"LPX64"-lastid: rc = %d\n",
778 o->do_lu.lo_dev->ld_obd->obd_name, lastid_seq, rc);
780 lu_object_put_nocache(env, &o->do_lu);
782 *first_oid = le32_to_cpu(losd.lso_next_oid);
787 * Initialize local OID storage for required sequence.
788 * That may be needed for services that uses local files and requires
789 * dynamic OID allocation for them.
791 * Per each sequence we have an object with 'first_fid' identificator
792 * containing the counter for OIDs of locally created files with that
795 * It is used now by llog subsystem and MGS for NID tables
797 * Function gets first_fid to create counter object.
798 * All dynamic fids will be generated with the same sequence and incremented
801 * Returned local_oid_storage is in-memory representaion of OID storage
803 int local_oid_storage_init(const struct lu_env *env, struct dt_device *dev,
804 const struct lu_fid *first_fid,
805 struct local_oid_storage **los)
807 struct dt_thread_info *dti = dt_info(env);
808 struct ls_device *ls;
810 struct dt_object *o = NULL;
812 __u32 first_oid = fid_oid(first_fid);
817 ls = ls_device_get(dev);
821 mutex_lock(&ls->ls_los_mutex);
822 *los = dt_los_find(ls, fid_seq(first_fid));
826 /* not found, then create */
829 GOTO(out, rc = -ENOMEM);
831 atomic_set(&(*los)->los_refcount, 1);
832 mutex_init(&(*los)->los_id_lock);
833 (*los)->los_dev = &ls->ls_top_dev;
834 atomic_inc(&ls->ls_refcount);
835 list_add(&(*los)->los_list, &ls->ls_los_list);
837 /* Use {seq, 0, 0} to create the LAST_ID file for every
838 * sequence. OIDs start at LUSTRE_FID_INIT_OID.
840 dti->dti_fid.f_seq = fid_seq(first_fid);
841 dti->dti_fid.f_oid = LUSTRE_FID_LASTID_OID;
842 dti->dti_fid.f_ver = 0;
843 o = ls_locate(env, ls, &dti->dti_fid, NULL);
845 GOTO(out_los, rc = PTR_ERR(o));
847 if (!dt_object_exists(o)) {
848 rc = lastid_compat_check(env, dev, fid_seq(first_fid),
853 th = dt_trans_create(env, dev);
855 GOTO(out_los, rc = PTR_ERR(th));
857 dti->dti_attr.la_valid = LA_MODE | LA_TYPE;
858 dti->dti_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
859 dti->dti_dof.dof_type = dt_mode_to_dft(S_IFREG);
861 rc = dt_declare_create(env, o, &dti->dti_attr, NULL,
866 lastid = cpu_to_le64(first_oid);
869 dti->dti_lb.lb_buf = &lastid;
870 dti->dti_lb.lb_len = sizeof(lastid);
871 rc = dt_declare_record_write(env, o, &dti->dti_lb, dti->dti_off,
876 rc = dt_trans_start_local(env, dev, th);
880 dt_write_lock(env, o, 0);
881 if (dt_object_exists(o))
882 GOTO(out_lock, rc = 0);
884 rc = dt_create(env, o, &dti->dti_attr, NULL, &dti->dti_dof,
889 rc = dt_record_write(env, o, &dti->dti_lb, &dti->dti_off, th);
893 dt_write_unlock(env, o);
895 dt_trans_stop(env, dev, th);
898 dti->dti_lb.lb_buf = &lastid;
899 dti->dti_lb.lb_len = sizeof(lastid);
900 dt_read_lock(env, o, 0);
901 rc = dt_record_read(env, o, &dti->dti_lb, &dti->dti_off);
902 dt_read_unlock(env, o);
903 if (rc == 0 && le64_to_cpu(lastid) > OBIF_MAX_OID) {
904 CERROR("%s: bad oid "LPU64" is read from LAST_ID\n",
905 o->do_lu.lo_dev->ld_obd->obd_name,
906 le64_to_cpu(lastid));
912 list_del(&(*los)->los_list);
913 atomic_dec(&ls->ls_refcount);
916 if (o != NULL && !IS_ERR(o))
917 lu_object_put_nocache(env, &o->do_lu);
919 (*los)->los_seq = fid_seq(first_fid);
920 (*los)->los_last_oid = le64_to_cpu(lastid);
922 /* Read value should not be less than initial one
923 * but possible after upgrade from older fs.
924 * In this case just switch to the first_oid in memory and
925 * it will be updated on disk with first object generated */
926 if ((*los)->los_last_oid < first_oid)
927 (*los)->los_last_oid = first_oid;
930 mutex_unlock(&ls->ls_los_mutex);
931 ls_device_put(env, ls);
934 EXPORT_SYMBOL(local_oid_storage_init);
936 void local_oid_storage_fini(const struct lu_env *env,
937 struct local_oid_storage *los)
939 struct ls_device *ls;
942 LASSERT(los->los_dev);
943 ls = dt2ls_dev(los->los_dev);
945 /* Take the mutex before decreasing the reference to avoid race
946 * conditions as described in LU-4721. */
947 mutex_lock(&ls->ls_los_mutex);
948 if (!atomic_dec_and_test(&los->los_refcount)) {
949 mutex_unlock(&ls->ls_los_mutex);
954 lu_object_put_nocache(env, &los->los_obj->do_lu);
955 list_del(&los->los_list);
957 mutex_unlock(&ls->ls_los_mutex);
958 ls_device_put(env, ls);
960 EXPORT_SYMBOL(local_oid_storage_fini);