Whamcloud - gitweb
b7a51438b555cab681de85b2bbef529241e2efa5
[fs/lustre-release.git] / lustre / osc / osc_internal.h
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
37 #ifndef OSC_INTERNAL_H
38 #define OSC_INTERNAL_H
39
40 #define OAP_MAGIC 8675309
41
42 struct lu_env;
43
44 enum async_flags {
45         ASYNC_READY = 0x1, /* ap_make_ready will not be called before this
46                               page is added to an rpc */
47         ASYNC_URGENT = 0x2, /* page must be put into an RPC before return */
48         ASYNC_COUNT_STABLE = 0x4, /* ap_refresh_count will not be called
49                                      to give the caller a chance to update
50                                      or cancel the size of the io */
51 };
52
53 struct obd_async_page_ops {
54         int  (*ap_make_ready)(const struct lu_env *env, void *data, int cmd);
55         int  (*ap_refresh_count)(const struct lu_env *env, void *data, int cmd);
56         int  (*ap_completion)(const struct lu_env *env,
57                               void *data, int cmd, struct obdo *oa, int rc);
58 };
59
60 struct osc_async_page {
61         int                     oap_magic;
62         unsigned short          oap_cmd;
63         unsigned short          oap_interrupted:1;
64
65         struct list_head        oap_pending_item;
66         struct list_head        oap_urgent_item;
67         struct list_head        oap_rpc_item;
68
69         obd_off                 oap_obj_off;
70         unsigned                oap_page_off;
71         enum async_flags        oap_async_flags;
72
73         struct brw_page         oap_brw_page;
74
75         struct ptlrpc_request   *oap_request;
76         struct client_obd       *oap_cli;
77         struct lov_oinfo        *oap_loi;
78
79         const struct obd_async_page_ops *oap_caller_ops;
80         void                    *oap_caller_data;
81         struct list_head         oap_page_list;
82         struct ldlm_lock        *oap_ldlm_lock;
83         spinlock_t               oap_lock;
84 };
85
86 #define oap_page        oap_brw_page.pg
87 #define oap_count       oap_brw_page.count
88 #define oap_brw_flags   oap_brw_page.flag
89
90 struct osc_cache_waiter {
91         struct list_head        ocw_entry;
92         cfs_waitq_t             ocw_waitq;
93         struct osc_async_page   *ocw_oap;
94         int                     ocw_rc;
95 };
96
97 #define OSCC_FLAG_RECOVERING         0x01
98 #define OSCC_FLAG_CREATING           0x02
99 #define OSCC_FLAG_NOSPC              0x04 /* can't create more objects on OST */
100 #define OSCC_FLAG_SYNC_IN_PROGRESS   0x08 /* only allow one thread to sync */
101 #define OSCC_FLAG_LOW                0x10
102 #define OSCC_FLAG_EXITING            0x20
103
104 int osc_precreate(struct obd_export *exp);
105 int osc_create(struct obd_export *exp, struct obdo *oa,
106                struct lov_stripe_md **ea, struct obd_trans_info *oti);
107 int osc_real_create(struct obd_export *exp, struct obdo *oa,
108                struct lov_stripe_md **ea, struct obd_trans_info *oti);
109 void oscc_init(struct obd_device *obd);
110 void osc_wake_cache_waiters(struct client_obd *cli);
111
112 /*
113  * cl integration.
114  */
115 #include <cl_object.h>
116
117 extern struct ptlrpc_request_set *PTLRPCD_SET;
118
119 int osc_enqueue_base(struct obd_export *exp, struct ldlm_res_id *res_id,
120                      int *flags, ldlm_policy_data_t *policy,
121                      struct ost_lvb *lvb, int kms_valid,
122                      obd_enqueue_update_f upcall,
123                      void *cookie, struct ldlm_enqueue_info *einfo,
124                      struct lustre_handle *lockh,
125                      struct ptlrpc_request_set *rqset, int async);
126 int osc_cancel_base(struct lustre_handle *lockh, __u32 mode);
127
128 int osc_match_base(struct obd_export *exp, struct ldlm_res_id *res_id,
129                    __u32 type, ldlm_policy_data_t *policy, __u32 mode,
130                    int *flags, void *data, struct lustre_handle *lockh,
131                    int unref);
132
133 int osc_punch_base(struct obd_export *exp, struct obdo *oa,
134                    struct obd_capa *capa,
135                    obd_enqueue_update_f upcall, void *cookie,
136                    struct ptlrpc_request_set *rqset);
137
138 int osc_prep_async_page(struct obd_export *exp, struct lov_stripe_md *lsm,
139                         struct lov_oinfo *loi, cfs_page_t *page,
140                         obd_off offset, const struct obd_async_page_ops *ops,
141                         void *data, void **res, int nocache,
142                         struct lustre_handle *lockh);
143 void osc_oap_to_pending(struct osc_async_page *oap);
144 int  osc_oap_interrupted(const struct lu_env *env, struct osc_async_page *oap);
145 void loi_list_maint(struct client_obd *cli, struct lov_oinfo *loi);
146 void osc_check_rpcs(const struct lu_env *env, struct client_obd *cli);
147
148 int osc_queue_async_io(const struct lu_env *env,
149                        struct obd_export *exp, struct lov_stripe_md *lsm,
150                        struct lov_oinfo *loi, void *cookie,
151                        int cmd, obd_off off, int count,
152                        obd_flag brw_flags, enum async_flags async_flags);
153 int osc_teardown_async_page(struct obd_export *exp,
154                             struct lov_stripe_md *lsm,
155                             struct lov_oinfo *loi, void *cookie);
156 int osc_process_config_base(struct obd_device *obd, struct lustre_cfg *cfg);
157 int osc_set_async_flags_base(struct client_obd *cli,
158                              struct lov_oinfo *loi, struct osc_async_page *oap,
159                              obd_flag async_flags);
160 int osc_enter_cache_try(const struct lu_env *env,
161                         struct client_obd *cli, struct lov_oinfo *loi,
162                         struct osc_async_page *oap, int transient);
163
164 struct cl_page *osc_oap2cl_page(struct osc_async_page *oap);
165 extern spinlock_t osc_ast_guard;
166
167 int osc_cleanup(struct obd_device *obd);
168 int osc_setup(struct obd_device *obd, struct lustre_cfg *lcfg);
169
170 #ifdef LPROCFS
171 int lproc_osc_attach_seqstat(struct obd_device *dev);
172 void lprocfs_osc_init_vars(struct lprocfs_static_vars *lvars);
173 #else
174 static inline int lproc_osc_attach_seqstat(struct obd_device *dev) {return 0;}
175 static inline void lprocfs_osc_init_vars(struct lprocfs_static_vars *lvars)
176 {
177         memset(lvars, 0, sizeof(*lvars));
178 }
179 #endif
180
181 extern struct lu_device_type osc_device_type;
182
183 static inline int osc_recoverable_error(int rc)
184 {
185         return (rc == -EIO || rc == -EROFS || rc == -ENOMEM || rc == -EAGAIN);
186 }
187
188 /* return 1 if osc should be resend request */
189 static inline int osc_should_resend(int resend, struct client_obd *cli)
190 {
191         return atomic_read(&cli->cl_resends) ?
192                atomic_read(&cli->cl_resends) > resend : 1;
193 }
194
195 #ifndef min_t
196 #define min_t(type,x,y) \
197         ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
198 #endif
199
200 struct osc_device {
201         struct cl_device    od_cl;
202         struct obd_export  *od_exp;
203
204         /* Write stats is actually protected by client_obd's lock. */
205         struct osc_stats {
206                 uint64_t     os_lockless_writes;          /* by bytes */
207                 uint64_t     os_lockless_reads;           /* by bytes */
208                 uint64_t     os_lockless_truncates;       /* by times */
209         } od_stats;
210
211         /* configuration item(s) */
212         int                 od_contention_time;
213         int                 od_lockless_truncate;
214 };
215
216 static inline struct osc_device *obd2osc_dev(const struct obd_device *d)
217 {
218         return container_of0(d->obd_lu_dev, struct osc_device, od_cl.cd_lu_dev);
219 }
220
221
222 #endif /* OSC_INTERNAL_H */