Whamcloud - gitweb
LU-1406 ofd: setup local files for OFD
[fs/lustre-release.git] / lustre / ofd / ofd_internal.h
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) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _OFD_INTERNAL_H
38 #define _OFD_INTERNAL_H
39
40 #include <obd.h>
41 #include <obd_class.h>
42 #include <dt_object.h>
43 #include <lustre_fid.h>
44
45 #define OFD_INIT_OBJID  0
46 #define OFD_ROCOMPAT_SUPP (0)
47 #define OFD_INCOMPAT_SUPP (OBD_INCOMPAT_GROUPS | OBD_INCOMPAT_OST | \
48                            OBD_INCOMPAT_COMMON_LR)
49 #define OFD_MAX_GROUPS  256
50
51 struct ofd_device {
52         struct dt_device         ofd_dt_dev;
53         struct dt_device        *ofd_osd;
54         struct dt_device_param   ofd_dt_conf;
55
56         /* last_rcvd file */
57         struct lu_target         ofd_lut;
58         struct dt_object        *ofd_last_group_file;
59         struct dt_object        *ofd_health_check_file;
60
61         int                      ofd_subdir_count;
62
63         int                      ofd_max_group;
64         obd_id                   ofd_last_objids[OFD_MAX_GROUPS];
65         cfs_mutex_t              ofd_create_locks[OFD_MAX_GROUPS];
66         struct dt_object        *ofd_lastid_obj[OFD_MAX_GROUPS];
67         cfs_spinlock_t           ofd_objid_lock;
68
69         struct lu_site           ofd_site;
70 };
71
72 static inline struct ofd_device *ofd_dev(struct lu_device *d)
73 {
74         return container_of0(d, struct ofd_device, ofd_dt_dev.dd_lu_dev);
75 }
76
77 static inline struct obd_device *ofd_obd(struct ofd_device *ofd)
78 {
79         return ofd->ofd_dt_dev.dd_lu_dev.ld_obd;
80 }
81
82 static inline struct ofd_device *ofd_exp(struct obd_export *exp)
83 {
84         return ofd_dev(exp->exp_obd->obd_lu_dev);
85 }
86
87 static inline char *ofd_name(struct ofd_device *ofd)
88 {
89         return ofd->ofd_dt_dev.dd_lu_dev.ld_obd->obd_name;
90 }
91
92 struct ofd_object {
93         struct lu_object_header ofo_header;
94         struct dt_object        ofo_obj;
95 };
96
97 static inline struct ofd_object *ofd_obj(struct lu_object *o)
98 {
99         return container_of0(o, struct ofd_object, ofo_obj.do_lu);
100 }
101
102 /*
103  * Common data shared by obdofd-level handlers. This is allocated per-thread
104  * to reduce stack consumption.
105  */
106 struct ofd_thread_info {
107         const struct lu_env     *fti_env;
108
109         struct lu_fid            fti_fid;
110         struct lu_attr           fti_attr;
111         union {
112                 char             name[64]; /* for ofd_init0() */
113         } fti_u;
114
115         struct dt_object_format  fti_dof;
116         struct lu_buf            fti_buf;
117         loff_t                   fti_off;
118 };
119
120 static inline int ofd_export_stats_init(struct ofd_device *ofd,
121                                         struct obd_export *exp, void *data)
122 {
123         return 0;
124 }
125
126 extern void target_recovery_fini(struct obd_device *obd);
127 extern void target_recovery_init(struct lu_target *lut, svc_handler_t handler);
128
129 /* ofd_dev.c */
130 extern struct lu_context_key ofd_thread_key;
131
132 /* ofd_obd.c */
133 extern struct obd_ops ofd_obd_ops;
134
135 /* ofd_fs.c */
136 int ofd_fs_setup(const struct lu_env *env, struct ofd_device *ofd,
137                  struct obd_device *obd);
138 void ofd_fs_cleanup(const struct lu_env *env, struct ofd_device *ofd);
139
140 /* lproc_ofd.c */
141 void lprocfs_ofd_init_vars(struct lprocfs_static_vars *lvars);
142
143 static inline struct ofd_thread_info * ofd_info(const struct lu_env *env)
144 {
145         struct ofd_thread_info *info;
146
147         info = lu_context_key_get(&env->le_ctx, &ofd_thread_key);
148         LASSERT(info);
149         LASSERT(info->fti_env);
150         LASSERT(info->fti_env == env);
151         return info;
152 }
153
154 static inline struct ofd_thread_info * ofd_info_init(const struct lu_env *env,
155                                                      struct obd_export *exp)
156 {
157         struct ofd_thread_info *info;
158
159         info = lu_context_key_get(&env->le_ctx, &ofd_thread_key);
160         LASSERT(info);
161         LASSERT(info->fti_env == NULL);
162
163         info->fti_env = env;
164         return info;
165 }
166
167 #endif /* _OFD_INTERNAL_H */