Whamcloud - gitweb
landing b_cmobd_merge on 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  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
5  *   Author: Peter Braam <braam@clusterfs.com>
6  *   Author: Phil Schwan <phil@clusterfs.com>
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 /* ldlm_request.c */
25 typedef enum {
26         LDLM_ASYNC,
27         LDLM_SYNC,
28 } ldlm_sync_t;
29
30 int ldlm_cancel_lru(struct ldlm_namespace *ns, ldlm_sync_t sync);
31
32 /* ldlm_resource.c */
33 void ldlm_resource_insert_lock_after(struct ldlm_lock *original,
34                                      struct ldlm_lock *new);
35
36 /* ldlm_lock.c */
37 void ldlm_grant_lock(struct ldlm_lock *lock, void *data, int datalen,
38                      int run_ast);
39 struct ldlm_lock *
40 ldlm_lock_create(struct ldlm_namespace *ns,
41                  struct lustre_handle *parent_lock_handle, struct ldlm_res_id,
42                  __u32 type, ldlm_mode_t, ldlm_blocking_callback,
43                  ldlm_completion_callback, ldlm_glimpse_callback, void *data,
44                  __u32 lvb_len);
45 ldlm_error_t ldlm_lock_enqueue(struct ldlm_namespace *, struct ldlm_lock **,
46                                void *cookie, int *flags);
47 void ldlm_lock_addref_internal(struct ldlm_lock *, __u32 mode);
48 void ldlm_lock_decref_internal(struct ldlm_lock *, __u32 mode);
49 void ldlm_add_ast_work_item(struct ldlm_lock *lock, struct ldlm_lock *new,
50                             void *data, int datalen);
51 int ldlm_reprocess_queue(struct ldlm_resource *res, struct list_head *queue);
52 int ldlm_run_ast_work(struct ldlm_namespace *, struct list_head *rpc_list);
53
54 /* ldlm_lockd.c */
55 int ldlm_bl_to_thread(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
56                       struct ldlm_lock *lock);
57 void ldlm_handle_bl_callback(struct ldlm_namespace *ns,
58                              struct ldlm_lock_desc *ld, struct ldlm_lock *lock);
59
60 /* ldlm_plain.c */
61 int ldlm_process_plain_lock(struct ldlm_lock *lock, int *flags, int first_enq,
62                             ldlm_error_t *err);
63
64 /* ldlm_extent.c */
65 int ldlm_process_extent_lock(struct ldlm_lock *lock, int *flags, int first_enq,
66                              ldlm_error_t *err);
67
68 /* ldlm_flock.c */
69 int ldlm_process_flock_lock(struct ldlm_lock *lock, int *flags, int first_enq,
70                             ldlm_error_t *err);
71
72 /* ldlm_inodebits.c */
73 int ldlm_process_inodebits_lock(struct ldlm_lock *lock, int *flags,
74                                 int first_enq, ldlm_error_t *err);
75
76 /* l_lock.c */
77 void l_check_no_ns_lock(struct ldlm_namespace *ns);
78
79 extern struct proc_dir_entry *ldlm_svc_proc_dir;
80
81 struct ldlm_state {
82         struct ptlrpc_service *ldlm_cb_service;
83         struct ptlrpc_service *ldlm_cancel_service;
84         struct ptlrpc_client *ldlm_client;
85         struct ptlrpc_connection *ldlm_server_conn;
86         struct ldlm_bl_pool *ldlm_bl_pool;
87 };
88
89 int ldlm_init(void);
90 void ldlm_exit(void);
91