Whamcloud - gitweb
ecf990776c2da3fc8fedea26051a53131202974c
[fs/lustre-release.git] / lustre / fld / fld_internal.h
1 /* -*- MODE: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  fld/fld_internal.h
5  *
6  *  Copyright (C) 2006 Cluster File Systems, Inc.
7  *   Author: Yury Umanets <umka@clusterfs.com>
8  *           Tom WangDi <wangdi@clusterfs.com>
9  *
10  *   This file is part of the Lustre file system, http://www.lustre.org
11  *   Lustre is a trademark of Cluster File Systems, Inc.
12  *
13  *   You may have signed or agreed to another license before downloading
14  *   this software.  If so, you are bound by the terms and conditions
15  *   of that agreement, and the following does not apply to you.  See the
16  *   LICENSE file included with this distribution for more information.
17  *
18  *   If you did not agree to a different license, then this copy of Lustre
19  *   is open source software; you can redistribute it and/or modify it
20  *   under the terms of version 2 of the GNU General Public License as
21  *   published by the Free Software Foundation.
22  *
23  *   In either case, Lustre is distributed in the hope that it will be
24  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
25  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  *   license text for more details.
27  */
28 #ifndef __FLD_INTERNAL_H
29 #define __FLD_INTERNAL_H
30
31 #include <lustre/lustre_idl.h>
32 #include <dt_object.h>
33
34 #include <libcfs/list.h>
35 #include <libcfs/kp30.h>
36
37 #include <linux/types.h>
38 #include <lustre_req_layout.h>
39 #include <lustre_fld.h>
40
41 enum fld_op {
42         FLD_CREATE = 0,
43         FLD_DELETE = 1,
44         FLD_LOOKUP = 2
45 };
46
47 enum {
48         FLD_HTABLE_SIZE = 256
49 };
50
51 extern struct lu_fld_hash fld_hash[];
52
53 #ifdef __KERNEL__
54 struct fld_thread_info {
55         struct req_capsule fti_pill;
56         int                fti_rep_buf_size[REQ_MAX_FIELD_NR];
57         __u64              fti_key;
58         __u64              fti_rec;
59         __u32              fti_flags;
60 };
61
62 int fld_index_init(struct lu_server_fld *fld,
63                    const struct lu_env *env,
64                    struct dt_device *dt);
65
66 void fld_index_fini(struct lu_server_fld *fld,
67                     const struct lu_env *env);
68
69 int fld_index_create(struct lu_server_fld *fld,
70                      const struct lu_env *env,
71                      seqno_t seq, mdsno_t mds);
72
73 int fld_index_delete(struct lu_server_fld *fld,
74                      const struct lu_env *env,
75                      seqno_t seq);
76
77 int fld_index_lookup(struct lu_server_fld *fld,
78                      const struct lu_env *env,
79                      seqno_t seq, mdsno_t *mds);
80
81 #ifdef LPROCFS
82 extern struct lprocfs_vars fld_server_proc_list[];
83 extern struct lprocfs_vars fld_client_proc_list[];
84 #endif
85
86 #endif
87
88 static inline const char *
89 fld_target_name(struct lu_fld_target *tar)
90 {
91         if (tar->ft_srv != NULL)
92                 return tar->ft_srv->lsf_name;
93
94         return (const char *)tar->ft_exp->exp_obd->obd_name;
95 }
96
97 extern cfs_proc_dir_entry_t *fld_type_proc_dir;
98
99 #endif /* __FLD_INTERNAL_H */