Whamcloud - gitweb
775b888b5a659982479c9b6b77e73e489cfff1e0
[fs/lustre-release.git] / lustre / osc / osc_object.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * Implementation of cl_object for OSC layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  */
40
41 /** \addtogroup osc osc @{ */
42
43 #define DEBUG_SUBSYSTEM S_OSC
44
45 #include "osc_cl_internal.h"
46
47 /*****************************************************************************
48  *
49  * Type conversions.
50  *
51  */
52
53 static struct lu_object *osc2lu(struct osc_object *osc)
54 {
55         return &osc->oo_cl.co_lu;
56 }
57
58 static struct osc_object *lu2osc(const struct lu_object *obj)
59 {
60         LINVRNT(osc_is_object(obj));
61         return container_of0(obj, struct osc_object, oo_cl.co_lu);
62 }
63
64 /*****************************************************************************
65  *
66  * Object operations.
67  *
68  */
69
70 static int osc_object_init(const struct lu_env *env, struct lu_object *obj,
71                            const struct lu_object_conf *conf)
72 {
73         struct osc_object           *osc   = lu2osc(obj);
74         const struct cl_object_conf *cconf = lu2cl_conf(conf);
75         int i;
76
77         osc->oo_oinfo = cconf->u.coc_oinfo;
78 #ifdef INVARIANT_CHECK
79         mutex_init(&osc->oo_debug_mutex);
80 #endif
81         spin_lock_init(&osc->oo_seatbelt);
82         for (i = 0; i < CRT_NR; ++i)
83                 CFS_INIT_LIST_HEAD(&osc->oo_inflight[i]);
84         return 0;
85 }
86
87 static void osc_object_free(const struct lu_env *env, struct lu_object *obj)
88 {
89         struct osc_object *osc = lu2osc(obj);
90         int i;
91
92         for (i = 0; i < CRT_NR; ++i)
93                 LASSERT(list_empty(&osc->oo_inflight[i]));
94
95         lu_object_fini(obj);
96         OBD_SLAB_FREE_PTR(osc, osc_object_kmem);
97 }
98
99 int osc_lvb_print(const struct lu_env *env, void *cookie,
100                   lu_printer_t p, const struct ost_lvb *lvb)
101 {
102         return (*p)(env, cookie, "size: "LPU64" mtime: "LPU64" atime: "LPU64" "
103                     "ctime: "LPU64" blocks: "LPU64,
104                     lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime,
105                     lvb->lvb_ctime, lvb->lvb_blocks);
106 }
107
108 static int osc_object_print(const struct lu_env *env, void *cookie,
109                             lu_printer_t p, const struct lu_object *obj)
110 {
111         struct osc_object   *osc   = lu2osc(obj);
112         struct lov_oinfo    *oinfo = osc->oo_oinfo;
113         struct osc_async_rc *ar    = &oinfo->loi_ar;
114
115         (*p)(env, cookie, "id: "LPU64" gr: "LPU64" "
116              "idx: %d gen: %d kms_valid: %u kms "LPU64" "
117              "rc: %d force_sync: %d min_xid: "LPU64" ",
118              oinfo->loi_id, oinfo->loi_gr, oinfo->loi_ost_idx,
119              oinfo->loi_ost_gen, oinfo->loi_kms_valid, oinfo->loi_kms,
120              ar->ar_rc, ar->ar_force_sync, ar->ar_min_xid);
121         osc_lvb_print(env, cookie, p, &oinfo->loi_lvb);
122         return 0;
123 }
124
125
126 static int osc_attr_get(const struct lu_env *env, struct cl_object *obj,
127                         struct cl_attr *attr)
128 {
129         struct lov_oinfo *oinfo = cl2osc(obj)->oo_oinfo;
130
131         cl_lvb2attr(attr, &oinfo->loi_lvb);
132         attr->cat_kms = oinfo->loi_kms_valid ? oinfo->loi_kms : 0;
133         return 0;
134 }
135
136 int osc_attr_set(const struct lu_env *env, struct cl_object *obj,
137                  const struct cl_attr *attr, unsigned valid)
138 {
139         struct lov_oinfo *oinfo = cl2osc(obj)->oo_oinfo;
140         struct ost_lvb   *lvb   = &oinfo->loi_lvb;
141
142         if (valid & CAT_SIZE)
143                 lvb->lvb_size = attr->cat_size;
144         if (valid & CAT_MTIME)
145                 lvb->lvb_mtime = attr->cat_mtime;
146         if (valid & CAT_ATIME)
147                 lvb->lvb_atime = attr->cat_atime;
148         if (valid & CAT_CTIME)
149                 lvb->lvb_ctime = attr->cat_ctime;
150         if (valid & CAT_BLOCKS)
151                 lvb->lvb_blocks = attr->cat_blocks;
152         if (valid & CAT_KMS)
153                 loi_kms_set(oinfo, attr->cat_kms);
154         return 0;
155 }
156
157 static int osc_object_glimpse(const struct lu_env *env,
158                               const struct cl_object *obj, struct ost_lvb *lvb)
159 {
160         struct lov_oinfo *oinfo = cl2osc(obj)->oo_oinfo;
161
162         ENTRY;
163         lvb->lvb_size   = oinfo->loi_kms;
164         lvb->lvb_blocks = oinfo->loi_lvb.lvb_blocks;
165         RETURN(0);
166 }
167
168
169 void osc_object_set_contended(struct osc_object *obj)
170 {
171         obj->oo_contention_time = cfs_time_current();
172         /* mb(); */
173         obj->oo_contended = 1;
174 }
175
176 void osc_object_clear_contended(struct osc_object *obj)
177 {
178         obj->oo_contended = 0;
179 }
180
181 int osc_object_is_contended(struct osc_object *obj)
182 {
183         struct osc_device *dev  = lu2osc_dev(obj->oo_cl.co_lu.lo_dev);
184         int osc_contention_time = dev->od_contention_time;
185         cfs_time_t cur_time     = cfs_time_current();
186         cfs_time_t retry_time;
187
188         if (OBD_FAIL_CHECK(OBD_FAIL_OSC_OBJECT_CONTENTION))
189                 return 1;
190
191         if (!obj->oo_contended)
192                 return 0;
193
194         /*
195          * I like copy-paste. the code is copied from
196          * ll_file_is_contended.
197          */
198         retry_time = cfs_time_add(obj->oo_contention_time,
199                                   cfs_time_seconds(osc_contention_time));
200         if (cfs_time_after(cur_time, retry_time)) {
201                 osc_object_clear_contended(obj);
202                 return 0;
203         }
204         return 1;
205 }
206
207 static const struct cl_object_operations osc_ops = {
208         .coo_page_init = osc_page_init,
209         .coo_lock_init = osc_lock_init,
210         .coo_io_init   = osc_io_init,
211         .coo_attr_get  = osc_attr_get,
212         .coo_attr_set  = osc_attr_set,
213         .coo_glimpse   = osc_object_glimpse
214 };
215
216 static const struct lu_object_operations osc_lu_obj_ops = {
217         .loo_object_init      = osc_object_init,
218         .loo_object_delete    = NULL,
219         .loo_object_release   = NULL,
220         .loo_object_free      = osc_object_free,
221         .loo_object_print     = osc_object_print,
222         .loo_object_invariant = NULL
223 };
224
225 struct lu_object *osc_object_alloc(const struct lu_env *env,
226                                    const struct lu_object_header *_,
227                                    struct lu_device *dev)
228 {
229         struct osc_object *osc;
230         struct lu_object  *obj;
231
232         OBD_SLAB_ALLOC_PTR_GFP(osc, osc_object_kmem, CFS_ALLOC_IO);
233         if (osc != NULL) {
234                 obj = osc2lu(osc);
235                 lu_object_init(obj, NULL, dev);
236                 osc->oo_cl.co_ops = &osc_ops;
237                 obj->lo_ops = &osc_lu_obj_ops;
238         } else
239                 obj = NULL;
240         return obj;
241 }
242
243 /** @} osc */