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, 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).
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
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
27 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, 2012, Whamcloud, Inc.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
37 #ifndef OSC_INTERNAL_H
38 #define OSC_INTERNAL_H
40 #define OAP_MAGIC 8675309
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 */
54 struct osc_async_page {
56 unsigned short oap_cmd;
57 unsigned short oap_interrupted:1;
59 cfs_list_t oap_pending_item;
60 cfs_list_t oap_rpc_item;
63 unsigned oap_page_off;
64 enum async_flags oap_async_flags;
66 struct brw_page oap_brw_page;
68 struct ptlrpc_request *oap_request;
69 struct client_obd *oap_cli;
70 struct osc_object *oap_obj;
72 struct ldlm_lock *oap_ldlm_lock;
76 #define oap_page oap_brw_page.pg
77 #define oap_count oap_brw_page.count
78 #define oap_brw_flags oap_brw_page.flag
80 struct osc_cache_waiter {
82 cfs_waitq_t ocw_waitq;
83 struct osc_async_page *ocw_oap;
88 int osc_create(const struct lu_env *env, struct obd_export *exp,
89 struct obdo *oa, struct lov_stripe_md **ea,
90 struct obd_trans_info *oti);
91 int osc_real_create(struct obd_export *exp, struct obdo *oa,
92 struct lov_stripe_md **ea, struct obd_trans_info *oti);
93 void osc_wake_cache_waiters(struct client_obd *cli);
94 int osc_shrink_grant_to_target(struct client_obd *cli, long target);
95 void osc_update_next_shrink(struct client_obd *cli);
100 #include <cl_object.h>
102 extern struct ptlrpc_request_set *PTLRPCD_SET;
104 int osc_enqueue_base(struct obd_export *exp, struct ldlm_res_id *res_id,
105 __u64 *flags, ldlm_policy_data_t *policy,
106 struct ost_lvb *lvb, int kms_valid,
107 obd_enqueue_update_f upcall,
108 void *cookie, struct ldlm_enqueue_info *einfo,
109 struct lustre_handle *lockh,
110 struct ptlrpc_request_set *rqset, int async, int agl);
111 int osc_cancel_base(struct lustre_handle *lockh, __u32 mode);
113 int osc_match_base(struct obd_export *exp, struct ldlm_res_id *res_id,
114 __u32 type, ldlm_policy_data_t *policy, __u32 mode,
115 int *flags, void *data, struct lustre_handle *lockh,
118 int osc_setattr_async_base(struct obd_export *exp, struct obd_info *oinfo,
119 struct obd_trans_info *oti,
120 obd_enqueue_update_f upcall, void *cookie,
121 struct ptlrpc_request_set *rqset);
122 int osc_punch_base(struct obd_export *exp, struct obd_info *oinfo,
123 obd_enqueue_update_f upcall, void *cookie,
124 struct ptlrpc_request_set *rqset);
125 int osc_sync_base(struct obd_export *exp, struct obd_info *oinfo,
126 obd_enqueue_update_f upcall, void *cookie,
127 struct ptlrpc_request_set *rqset);
129 int osc_process_config_base(struct obd_device *obd, struct lustre_cfg *cfg);
130 int osc_build_rpc(const struct lu_env *env, struct client_obd *cli,
131 cfs_list_t *ext_list, int cmd, pdl_policy_t p);
132 int osc_lru_shrink(struct client_obd *cli, int target);
134 extern spinlock_t osc_ast_guard;
136 int osc_cleanup(struct obd_device *obd);
137 int osc_setup(struct obd_device *obd, struct lustre_cfg *lcfg);
140 int lproc_osc_attach_seqstat(struct obd_device *dev);
141 void lprocfs_osc_init_vars(struct lprocfs_static_vars *lvars);
143 static inline int lproc_osc_attach_seqstat(struct obd_device *dev) {return 0;}
144 static inline void lprocfs_osc_init_vars(struct lprocfs_static_vars *lvars)
146 memset(lvars, 0, sizeof(*lvars));
150 extern struct lu_device_type osc_device_type;
152 static inline int osc_recoverable_error(int rc)
154 return (rc == -EIO || rc == -EROFS || rc == -ENOMEM ||
155 rc == -EAGAIN || rc == -EINPROGRESS);
158 static inline unsigned long rpcs_in_flight(struct client_obd *cli)
160 return cli->cl_r_in_flight + cli->cl_w_in_flight;
164 #define min_t(type,x,y) \
165 ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
169 struct cl_device od_cl;
170 struct obd_export *od_exp;
172 /* Write stats is actually protected by client_obd's lock. */
174 uint64_t os_lockless_writes; /* by bytes */
175 uint64_t os_lockless_reads; /* by bytes */
176 uint64_t os_lockless_truncates; /* by times */
179 /* configuration item(s) */
180 int od_contention_time;
181 int od_lockless_truncate;
184 static inline struct osc_device *obd2osc_dev(const struct obd_device *d)
186 return container_of0(d->obd_lu_dev, struct osc_device, od_cl.cd_lu_dev);
189 int osc_dlm_lock_pageref(struct ldlm_lock *dlm);
191 extern cfs_mem_cache_t *osc_quota_kmem;
192 struct osc_quota_info {
193 /** linkage for quota hash table */
194 cfs_hlist_node_t oqi_hash;
197 int osc_quota_setup(struct obd_device *obd);
198 int osc_quota_cleanup(struct obd_device *obd);
199 int osc_quota_setdq(struct client_obd *cli, const unsigned int qid[],
200 obd_flag valid, obd_flag flags);
201 int osc_quota_chkdq(struct client_obd *cli, const unsigned int qid[]);
202 int osc_quotactl(struct obd_device *unused, struct obd_export *exp,
203 struct obd_quotactl *oqctl);
204 int osc_quotacheck(struct obd_device *unused, struct obd_export *exp,
205 struct obd_quotactl *oqctl);
206 int osc_quota_poll_check(struct obd_export *exp, struct if_quotacheck *qchk);
207 #endif /* OSC_INTERNAL_H */