Whamcloud - gitweb
branch: HEAD
[fs/lustre-release.git] / lustre / ldlm / ldlm_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  */
4
5 #define MAX_STRING_SIZE 128
6
7 extern atomic_t ldlm_srv_namespace_nr;
8 extern atomic_t ldlm_cli_namespace_nr;
9 extern struct semaphore ldlm_srv_namespace_lock;
10 extern struct list_head ldlm_srv_namespace_list;
11 extern struct semaphore ldlm_cli_namespace_lock;
12 extern struct list_head ldlm_cli_namespace_list;
13
14 static inline atomic_t *ldlm_namespace_nr(ldlm_side_t client)
15 {
16         return client == LDLM_NAMESPACE_SERVER ? 
17                 &ldlm_srv_namespace_nr : &ldlm_cli_namespace_nr;
18 }
19
20 static inline struct list_head *ldlm_namespace_list(ldlm_side_t client)
21 {
22         return client == LDLM_NAMESPACE_SERVER ? 
23                 &ldlm_srv_namespace_list : &ldlm_cli_namespace_list;
24 }
25
26 static inline struct semaphore *ldlm_namespace_lock(ldlm_side_t client)
27 {
28         return client == LDLM_NAMESPACE_SERVER ? 
29                 &ldlm_srv_namespace_lock : &ldlm_cli_namespace_lock;
30 }
31
32 /* ldlm_request.c */
33 typedef enum {
34         LDLM_ASYNC,
35         LDLM_SYNC,
36 } ldlm_sync_t;
37
38 /* Cancel lru flag, it indicates we cancel aged locks. */
39 enum {
40         LDLM_CANCEL_AGED   = 1 << 0, /* Cancel aged locks (non lru resize). */
41         LDLM_CANCEL_PASSED = 1 << 1, /* Cancel passed number of locks. */
42         LDLM_CANCEL_SHRINK = 1 << 2, /* Cancel locks from shrinker. */
43         LDLM_CANCEL_LRUR   = 1 << 3  /* Cancel locks from lru resize. */
44 };
45
46 int ldlm_cancel_lru(struct ldlm_namespace *ns, int nr, ldlm_sync_t sync, 
47                     int flags);
48 int ldlm_cancel_lru_local(struct ldlm_namespace *ns, struct list_head *cancels,
49                           int count, int max, int cancel_flags, int flags);
50 int ldlm_cancel_lru_estimate(struct ldlm_namespace *ns, int count, int max, 
51                              int flags);
52 extern int ldlm_enqueue_min;
53 int ldlm_get_enq_timeout(struct ldlm_lock *lock);
54
55 /* ldlm_resource.c */
56 int ldlm_resource_putref_locked(struct ldlm_resource *res);
57 void ldlm_resource_insert_lock_after(struct ldlm_lock *original,
58                                      struct ldlm_lock *new);
59 void ldlm_namespace_free_prior(struct ldlm_namespace *ns,
60                                struct obd_import *imp, int force);
61 void ldlm_namespace_free_post(struct ldlm_namespace *ns);
62 /* ldlm_lock.c */
63
64 /* Number of blocking/completion callbacks that will be sent in
65  * parallel (see bug 11301). */
66 #define PARALLEL_AST_LIMIT      200
67
68 struct ldlm_cb_set_arg {
69         struct ptlrpc_request_set *set;
70         atomic_t restart;
71         __u32 type; /* LDLM_BL_CALLBACK or LDLM_CP_CALLBACK */
72 };
73
74 typedef enum {
75         LDLM_WORK_BL_AST,
76         LDLM_WORK_CP_AST,
77         LDLM_WORK_REVOKE_AST
78 } ldlm_desc_ast_t; 
79
80 void ldlm_grant_lock(struct ldlm_lock *lock, struct list_head *work_list);
81 struct ldlm_lock *
82 ldlm_lock_create(struct ldlm_namespace *ns, const struct ldlm_res_id *,
83                  ldlm_type_t type, ldlm_mode_t, ldlm_blocking_callback,
84                  ldlm_completion_callback, ldlm_glimpse_callback, void *data,
85                  __u32 lvb_len);
86 ldlm_error_t ldlm_lock_enqueue(struct ldlm_namespace *, struct ldlm_lock **,
87                                void *cookie, int *flags);
88 void ldlm_lock_addref_internal(struct ldlm_lock *, __u32 mode);
89 void ldlm_lock_decref_internal(struct ldlm_lock *, __u32 mode);
90 void ldlm_add_ast_work_item(struct ldlm_lock *lock, struct ldlm_lock *new,
91                                 struct list_head *work_list);
92 int ldlm_reprocess_queue(struct ldlm_resource *res, struct list_head *queue,
93                          struct list_head *work_list);
94 int ldlm_run_ast_work(struct list_head *rpc_list, ldlm_desc_ast_t ast_type);
95 int ldlm_lock_remove_from_lru(struct ldlm_lock *lock);
96 int ldlm_lock_remove_from_lru_nolock(struct ldlm_lock *lock);
97 void ldlm_lock_add_to_lru_nolock(struct ldlm_lock *lock);
98 void ldlm_lock_add_to_lru(struct ldlm_lock *lock);
99 void ldlm_lock_touch_in_lru(struct ldlm_lock *lock);
100 void ldlm_lock_destroy_nolock(struct ldlm_lock *lock);
101
102 /* ldlm_lockd.c */
103 int ldlm_bl_to_thread_lock(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
104                            struct ldlm_lock *lock);
105 int ldlm_bl_to_thread_list(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
106                            struct list_head *cancels, int count);
107
108 void ldlm_handle_bl_callback(struct ldlm_namespace *ns,
109                              struct ldlm_lock_desc *ld, struct ldlm_lock *lock);
110
111 /* ldlm_plain.c */
112 int ldlm_process_plain_lock(struct ldlm_lock *lock, int *flags, int first_enq,
113                             ldlm_error_t *err, struct list_head *work_list);
114
115 /* ldlm_extent.c */
116 int ldlm_process_extent_lock(struct ldlm_lock *lock, int *flags, int first_enq,
117                              ldlm_error_t *err, struct list_head *work_list);
118 void ldlm_extent_add_lock(struct ldlm_resource *res, struct ldlm_lock *lock);
119 void ldlm_extent_unlink_lock(struct ldlm_lock *lock);
120
121 /* ldlm_flock.c */
122 int ldlm_process_flock_lock(struct ldlm_lock *req, int *flags, int first_enq,
123                             ldlm_error_t *err, struct list_head *work_list);
124
125 /* ldlm_inodebits.c */
126 int ldlm_process_inodebits_lock(struct ldlm_lock *lock, int *flags,
127                                 int first_enq, ldlm_error_t *err,
128                                 struct list_head *work_list);
129
130 /* l_lock.c */
131 void l_check_ns_lock(struct ldlm_namespace *ns);
132 void l_check_no_ns_lock(struct ldlm_namespace *ns);
133
134 extern cfs_proc_dir_entry_t *ldlm_svc_proc_dir;
135 extern cfs_proc_dir_entry_t *ldlm_type_proc_dir;
136
137 struct ldlm_state {
138         struct ptlrpc_service *ldlm_cb_service;
139         struct ptlrpc_service *ldlm_cancel_service;
140         struct ptlrpc_client *ldlm_client;
141         struct ptlrpc_connection *ldlm_server_conn;
142         struct ldlm_bl_pool *ldlm_bl_pool;
143 };
144
145 /* interval tree, for LDLM_EXTENT. */
146 extern cfs_mem_cache_t *ldlm_interval_slab; /* slab cache for ldlm_interval */
147 extern void ldlm_interval_attach(struct ldlm_interval *n, struct ldlm_lock *l);
148 extern struct ldlm_interval *ldlm_interval_detach(struct ldlm_lock *l);
149 extern struct ldlm_interval *ldlm_interval_alloc(struct ldlm_lock *lock);
150 extern void ldlm_interval_free(struct ldlm_interval *node);
151 /* this function must be called with res lock held */
152 static inline struct ldlm_extent *
153 ldlm_interval_extent(struct ldlm_interval *node)
154 {
155         struct ldlm_lock *lock;
156         LASSERT(!list_empty(&node->li_group));
157
158         lock = list_entry(node->li_group.next, struct ldlm_lock, l_sl_policy);
159         return &lock->l_policy_data.l_extent;
160 }
161
162 int ldlm_init(void);
163 void ldlm_exit(void);
164
165 enum ldlm_policy_res {
166         LDLM_POLICY_CANCEL_LOCK,
167         LDLM_POLICY_KEEP_LOCK
168 };
169
170 typedef enum ldlm_policy_res ldlm_policy_res_t;
171
172 #define LDLM_POOL_PROC_READER(var, type)                                    \
173         static int lprocfs_rd_##var(char *page, char **start, off_t off,    \
174                                     int count, int *eof, void *data)        \
175         {                                                                   \
176                 struct ldlm_pool *pl = data;                                \
177                 type tmp;                                                   \
178                                                                             \
179                 spin_lock(&pl->pl_lock);                                    \
180                 tmp = pl->pl_##var;                                         \
181                 spin_unlock(&pl->pl_lock);                                  \
182                                                                             \
183                 return lprocfs_rd_uint(page, start, off, count, eof, &tmp); \
184         }                                                                   \
185         struct __##var##__dummy_read {;} /* semicolon catcher */
186
187 #define LDLM_POOL_PROC_WRITER(var, type)                                    \
188         int lprocfs_wr_##var(struct file *file, const char *buffer,         \
189                              unsigned long count, void *data)               \
190         {                                                                   \
191                 struct ldlm_pool *pl = data;                                \
192                 type tmp;                                                   \
193                 int rc;                                                     \
194                                                                             \
195                 rc = lprocfs_wr_uint(file, buffer, count, &tmp);            \
196                 if (rc) {                                                   \
197                         CERROR("Can't parse user input, rc = %d\n", rc);    \
198                         return rc;                                          \
199                 }                                                           \
200                                                                             \
201                 spin_lock(&pl->pl_lock);                                    \
202                 pl->pl_##var = tmp;                                         \
203                 spin_unlock(&pl->pl_lock);                                  \
204                                                                             \
205                 return rc;                                                  \
206         }                                                                   \
207         struct __##var##__dummy_write {;} /* semicolon catcher */