Whamcloud - gitweb
b=3550
[fs/lustre-release.git] / lustre / mds / mds_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  */
4
5 #ifndef _MDS_INTERNAL_H
6 #define _MDS_INTERNAL_H
7
8 #include <linux/lustre_mds.h>
9
10 #define MAX_ATIME_DIFF 60
11
12 struct mds_filter_data {
13         __u64 io_epoch;
14 };
15
16 #define MDS_FILTERDATA(inode) ((struct mds_filter_data *)(inode)->i_filterdata)
17 #define DENTRY_VALID(dentry)    \
18         ((dentry)->d_inode || ((dentry)->d_flags & DCACHE_CROSS_REF))
19
20 #define MDS_NO_SPLIT_EXPECTED   0
21 #define MDS_EXPECT_SPLIT        1
22 #define MDS_NO_SPLITTABLE       2
23
24 static inline struct mds_obd *mds_req2mds(struct ptlrpc_request *req)
25 {
26         return &req->rq_export->exp_obd->u.mds;
27 }
28 static inline struct obd_device *req2obd(struct ptlrpc_request *req)
29 {
30         return req->rq_export->exp_obd;
31 }
32
33 /* mds/mds_reint.c */
34 int enqueue_ordered_locks(struct obd_device *obd, struct ldlm_res_id *p1_res_id,
35                           struct lustre_handle *p1_lockh, int p1_lock_mode,
36                           ldlm_policy_data_t *p1_policy,
37                           struct ldlm_res_id *p2_res_id,
38                           struct lustre_handle *p2_lockh, int p2_lock_mode,
39                           ldlm_policy_data_t *p2_policy);
40 void mds_commit_cb(struct obd_device *, __u64 last_rcvd, void *data, int error);
41 int mds_finish_transno(struct mds_obd *mds, struct inode *inode, void *handle,
42                        struct ptlrpc_request *req, int rc, __u32 op_data);
43 void mds_reconstruct_generic(struct ptlrpc_request *req);
44 void mds_req_from_mcd(struct ptlrpc_request *req, struct mds_client_data *mcd);
45 int mds_get_parent_child_locked(struct obd_device *obd, struct mds_obd *mds,
46                                 struct ll_fid *fid,
47                                 struct lustre_handle *parent_lockh,
48                                 struct dentry **dparentp, int parent_mode,
49                                 __u64 parent_lockpart, int *update_mode,
50                                 char *name, int namelen,
51                                 struct lustre_handle *child_lockh,
52                                 struct dentry **dchildp, int child_mode,
53                                 __u64 child_lockpart, void* clone_info);
54 int mds_lock_new_child(struct obd_device *obd, struct inode *inode,
55                        struct lustre_handle *child_lockh);
56
57 /* mds/mds_lib.c */
58 int mds_update_unpack(struct ptlrpc_request *, int offset,
59                       struct mds_update_record *);
60
61 /* mds/mds_unlink_open.c */
62 int mds_open_unlink_rename(struct mds_update_record *rec,
63                            struct obd_device *obd, struct dentry *dparent,
64                            struct dentry *dchild, void **handle);
65 int mds_cleanup_orphans(struct obd_device *obd);
66
67
68 /* mds/mds_log.c */
69 int mds_log_op_unlink(struct obd_device *obd, struct inode *inode,
70                       struct lov_mds_md *lmm, int lmm_size,
71                       struct llog_cookie *logcookies, int cookies_size,
72                       struct llog_create_locks **res);
73 int mds_llog_init(struct obd_device *obd, struct obd_llogs *,
74                   struct obd_device *tgt, int count, struct llog_catid *logid);
75 int mds_llog_finish(struct obd_device *obd, struct obd_llogs *, int count);
76
77 /* mds/mds_lov.c */
78 int mds_lov_connect(struct obd_device *obd, char * lov_name);
79 int mds_lov_disconnect(struct obd_device *obd, int flags);
80 int mds_get_lovtgts(struct obd_device *, int tgt_count, struct obd_uuid *);
81 int mds_lov_write_objids(struct obd_device *obd);
82 void mds_lov_update_objids(struct obd_device *obd, obd_id *ids);
83 int mds_lov_set_growth(struct mds_obd *mds, int count);
84 int mds_lov_set_nextid(struct obd_device *obd);
85 int mds_lov_clearorphans(struct mds_obd *mds, struct obd_uuid *ost_uuid);
86 int mds_post_mds_lovconf(struct obd_device *obd);
87 int mds_notify(struct obd_device *obd, struct obd_device *watched, int active);
88 int mds_lov_update_config(struct obd_device *obd, int transno);
89 int mds_convert_lov_ea(struct obd_device *obd, struct inode *inode,
90                        struct lov_mds_md *lmm, int lmm_size);
91 int mds_revalidate_lov_ea(struct obd_device *obd, struct inode *inode,
92                           struct lustre_msg *msg, int offset);
93
94 /* mds/mds_open.c */
95 int mds_query_write_access(struct inode *inode);
96 int mds_open(struct mds_update_record *rec, int offset,
97              struct ptlrpc_request *req, struct lustre_handle *);
98 int mds_pin(struct ptlrpc_request *req);
99 int mds_mfd_close(struct ptlrpc_request *req, struct obd_device *obd,
100                   struct mds_file_data *mfd, int unlink_orphan);
101 int mds_close(struct ptlrpc_request *req);
102 int mds_done_writing(struct ptlrpc_request *req);
103
104
105 /* mds/mds_fs.c */
106 int mds_client_add(struct obd_device *obd, struct mds_obd *mds,
107                    struct mds_export_data *med, int cl_off);
108 int mds_client_free(struct obd_export *exp, int clear_client);
109 int mds_obd_create(struct obd_export *exp, struct obdo *oa,
110                       struct lov_stripe_md **ea, struct obd_trans_info *oti);
111 int mds_obd_destroy(struct obd_export *exp, struct obdo *oa,
112                     struct lov_stripe_md *ea, struct obd_trans_info *oti);
113
114 /* mds/handler.c */
115 int mds_handle(struct ptlrpc_request *req);
116 extern struct lvfs_callback_ops mds_lvfs_ops;
117 int mds_lov_clean(struct obd_device *obd);
118 extern int mds_iocontrol(unsigned int cmd, struct obd_export *exp,
119                          int len, void *karg, void *uarg);
120 extern int mds_lock_mode_for_dir(struct obd_device *, struct dentry *, int);
121 int mds_postrecov(struct obd_device *obd);
122
123 #ifdef __KERNEL__
124 int mds_get_md(struct obd_device *, struct inode *, void *md, int *size, 
125                int lock);
126 int mds_pack_md(struct obd_device *, struct lustre_msg *, int offset,
127                 struct mds_body *, struct inode *, int lock);
128 void mds_pack_dentry2fid(struct ll_fid *, struct dentry *);
129 void mds_pack_dentry2body(struct mds_body *b, struct dentry *dentry);
130 void mds_pack_inode2fid(struct obd_device *, struct ll_fid *, struct inode *);
131 void mds_pack_inode2body(struct obd_device *, struct mds_body *, struct inode *);
132 #endif
133
134 /* mds/mds_lmv.c */
135 int mds_lmv_postsetup(struct obd_device *obd);
136 int mds_lmv_connect(struct obd_device *obd, char * lov_name);
137 int mds_lmv_disconnect(struct obd_device *obd, int flags);
138 int mds_try_to_split_dir(struct obd_device *, struct dentry *, struct mea **,
139                          int, int);
140 int mds_get_lmv_attr(struct obd_device *, struct inode *, struct mea **, int *);
141 int mds_choose_mdsnum(struct obd_device *, const char *, int, int);
142 int mds_lmv_postsetup(struct obd_device *);
143 int mds_splitting_expected(struct obd_device *, struct dentry *);
144 int mds_lock_slave_objs(struct obd_device *, struct dentry *,
145                         struct lustre_handle **);
146 int mds_unlink_slave_objs(struct obd_device *, struct dentry *);
147 void mds_unlock_slave_objs(struct obd_device *, struct dentry *,
148                            struct lustre_handle *);
149 int mds_lock_and_check_slave(int, struct ptlrpc_request *, struct lustre_handle *);
150 int mds_convert_mea_ea(struct obd_device *, struct inode *, struct lov_mds_md *, int);
151
152
153 #endif /* _MDS_INTERNAL_H */