Whamcloud - gitweb
LU-2456 lnet: DLC Feature dynamic net config
[fs/lustre-release.git] / lustre / include / darwin / lustre_lite.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * lustre/include/darwin/lustre_lite.h
35  *
36  * lustre lite cluster file system
37  */
38
39 #ifndef _DARWIN_LL_H
40 #define _DARWIN_LL_H
41
42 #ifndef _LL_H
43 #error Do not #include this file directly. #include <lustre_lite.h> instead
44 #endif
45
46 #include <libcfs/libcfs.h>
47
48 #ifdef __KERNEL__
49
50 struct iattr {
51         unsigned int    ia_valid;
52         umode_t         ia_mode;
53         uid_t           ia_uid;
54         gid_t           ia_gid;
55         loff_t          ia_size;
56         time_t          ia_atime;
57         time_t          ia_mtime;
58         time_t          ia_ctime;
59         unsigned int    ia_attr_flags;
60 };
61
62 #define INTENT_MAGIC 0x19620323 /* Happy birthday! */
63
64 struct lustre_intent_data {
65         int     it_disposition;
66         int     it_status;
67         __u64   it_lock_handle;
68         void    *it_data;
69         int     it_lock_mode;
70 };
71
72 /*
73  * Liang: We keep the old lookup_intent struct in XNU 
74  * to avoid unnecessary allocate/free. 
75  */
76 #define LUSTRE_IT(it) ((struct lustre_intent_data *)(&(it)->d.lustre))
77
78 struct lookup_intent {
79         int     it_magic;
80         void    (*it_op_release)(struct lookup_intent *);
81         int     it_op;
82         int     it_create_mode;
83         __u64   it_flags;
84         union {
85                 struct lustre_intent_data lustre;
86                 void *fs_data;
87         } d;
88 };
89
90 struct super_operations{
91 };
92 #endif
93
94 #endif