Whamcloud - gitweb
Most of the code for the OST target.
[fs/lustre-release.git] / lustre / include / linux / lustre_mds.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001 Cluster File Systems, Inc. <braam@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * MDS data structures.  
22  * See also lustre_idl.h for wire formats of requests.
23  *
24  */
25
26 #ifndef _LUSTRE_MDS_H
27 #define _LUSTRE_MDS_H
28
29 #include <linux/obd_support.h>
30
31
32 struct mds_run_ctxt { 
33         struct vfsmount *pwdmnt;
34         struct dentry   *pwd;
35         mm_segment_t     fs;
36 };
37
38 #define MDS_UNMOUNT 1
39 #define LUSTRE_MDS_NAME "mds"
40
41 struct mds_obd {
42         char *mds_fstype;
43         struct task_struct *mds_thread;
44         wait_queue_head_t mds_waitq;
45         wait_queue_head_t mds_done_waitq;
46         struct timer_list *mds_timer;
47         int mds_interval; 
48         int mds_flags;
49         struct list_head mds_reqs;
50         struct super_block * mds_sb;
51         struct vfsmount *mds_vfsmnt;
52         struct mds_run_ctxt  mds_ctxt;
53         spinlock_t mds_lock;
54         __u64 mds_lastino;
55         struct file_operations *mds_fop; 
56         struct inode_operations *mds_iop;
57         struct address_space_operations *mds_aops;
58 };
59
60 #define MDS_GETATTR   1
61 #define MDS_SETATTR  2
62 #define MDS_OPEN     3
63 #define MDS_CREATE   4
64 #define MDS_LINK     5
65 #define MDS_SYMLINK  6
66 #define MDS_MKNOD    7
67 #define MDS_MKDIR    8
68 #define MDS_UNLINK   9
69 #define MDS_RMDIR   10
70 #define MDS_RENAME  11
71
72 struct mds_request { 
73         struct list_head rq_list;
74         struct mds_obd *rq_obd;
75         int rq_status;
76
77         char *rq_reqbuf;
78         int rq_reqlen;
79         struct mds_req_hdr *rq_reqhdr;
80         struct mds_req *rq_req;
81
82         char *rq_repbuf;
83         int rq_replen;
84         struct mds_rep_hdr *rq_rephdr;
85         struct mds_rep *rq_rep;
86
87         wait_queue_head_t rq_wait_for_mds_rep;
88 };
89
90
91 /* more or less identical to the packed structure, except for the pointers */
92 struct mds_req {
93         struct lustre_fid        fid1;
94         struct lustre_fid        fid2;
95         int                        namelen;
96         int                        tgtlen;
97         __u32                       valid;
98         __u32                       mode;
99         __u32                       uid;
100         __u32                       gid;
101         __u64                       size;
102         __u32                       mtime;
103         __u32                       ctime;
104         __u32                       atime;
105         __u32                       flags;
106         __u32                       major;
107         __u32                       minor;
108         __u32                       ino;
109         __u32                       generation;
110         char                       *name;
111         char                      *tgt;
112 };
113
114 /* more or less identical to the packed structure, except for the pointers */
115 struct mds_rep {
116         struct lustre_fid        fid1;
117         struct lustre_fid        fid2;
118         int                        namelen;
119         int                        tgtlen;
120         __u32                       valid;
121         __u32                       mode;
122         __u32                       uid;
123         __u32                       gid;
124         __u64                       size;
125         __u32                       mtime;
126         __u32                       ctime;
127         __u32                       atime;
128         __u32                       flags;
129         __u32                       major;
130         __u32                       minor;
131         __u32                       ino;
132         __u32                       generation;
133         char                       *name;
134         char                      *tgt;
135 };
136
137
138 /* mds/mds_pack.c */
139 int mds_pack_req(char *name, int namelen, char *tgt, int tgtlen, struct mds_req_hdr **hdr, struct mds_req **req, int *len, char **buf);
140 int mds_unpack_req(char *buf, int len, struct mds_req_hdr **hdr, struct mds_req **req);
141 int mds_pack_rep(char *name, int namelen, char *tgt, int tgtlen, struct mds_rep_hdr **hdr, struct mds_rep **rep, int *len, char **buf);
142 int mds_unpack_rep(char *buf, int len, struct mds_rep_hdr **hdr, struct mds_rep **rep);
143
144
145 /* llight/request.c */
146
147 /* ioctls for trying requests */
148 #define IOC_REQUEST_TYPE                   'f'
149 #define IOC_REQUEST_MIN_NR                 30
150
151 #define IOC_REQUEST_GETATTR             _IOWR('f', 30, long)
152 #define IOC_REQUEST_MAX_NR               30
153
154 #endif
155
156