staging/lustre: Remove unused ll_vfs_* compat defines
[firefly-linux-kernel-4.4.55.git] / drivers / staging / lustre / lustre / include / linux / lustre_compat25.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) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _LINUX_COMPAT25_H
38 #define _LINUX_COMPAT25_H
39
40 #include <linux/fs_struct.h>
41 #include <linux/namei.h>
42
43 #include "lustre_patchless_compat.h"
44
45 /*
46  * set ATTR_BLOCKS to a high value to avoid any risk of collision with other
47  * ATTR_* attributes (see bug 13828)
48  */
49 #define ATTR_BLOCKS    (1 << 27)
50
51 #define current_ngroups current_cred()->group_info->ngroups
52 #define current_groups current_cred()->group_info->small_block
53
54 /*
55  * OBD need working random driver, thus all our
56  * initialization routines must be called after device
57  * driver initialization
58  */
59 #ifndef MODULE
60 #undef module_init
61 #define module_init(a)     late_initcall(a)
62 #endif
63
64
65 #define LTIME_S(time)              (time.tv_sec)
66
67 /* inode_dio_wait(i) use as-is for write lock */
68 # define inode_dio_write_done(i)        do {} while (0) /* for write unlock */
69 # define inode_dio_read(i)              atomic_inc(&(i)->i_dio_count)
70 /* inode_dio_done(i) use as-is for read unlock */
71
72
73 #ifndef FS_HAS_FIEMAP
74 #define FS_HAS_FIEMAP                   (0)
75 #endif
76
77 #define cfs_bio_io_error(a, b)   bio_io_error((a))
78 #define cfs_bio_endio(a, b, c)    bio_endio((a), (c))
79
80
81 #ifndef SLAB_DESTROY_BY_RCU
82 #define SLAB_DESTROY_BY_RCU 0
83 #endif
84
85
86
87 static inline int
88 ll_quota_on(struct super_block *sb, int off, int ver, char *name, int remount)
89 {
90         int rc;
91
92         if (sb->s_qcop->quota_on) {
93                 struct path path;
94
95                 rc = kern_path(name, LOOKUP_FOLLOW, &path);
96                 if (!rc)
97                         return rc;
98                 rc = sb->s_qcop->quota_on(sb, off, ver
99                                             , &path
100                                            );
101                 path_put(&path);
102                 return rc;
103         } else
104                 return -ENOSYS;
105 }
106
107 static inline int ll_quota_off(struct super_block *sb, int off, int remount)
108 {
109         if (sb->s_qcop->quota_off) {
110                 return sb->s_qcop->quota_off(sb, off
111                                             );
112         } else
113                 return -ENOSYS;
114 }
115
116
117
118 #define queue_max_phys_segments(rq)       queue_max_segments(rq)
119 #define queue_max_hw_segments(rq)        queue_max_segments(rq)
120
121
122 #define ll_d_hlist_node hlist_node
123 #define ll_d_hlist_empty(list) hlist_empty(list)
124 #define ll_d_hlist_entry(ptr, type, name) hlist_entry(ptr.first, type, name)
125 #define ll_d_hlist_for_each(tmp, i_dentry) hlist_for_each(tmp, i_dentry)
126 #define ll_d_hlist_for_each_entry(dentry, p, i_dentry, alias) \
127         p = NULL; hlist_for_each_entry(dentry, i_dentry, alias)
128
129
130 #define bio_hw_segments(q, bio) 0
131
132
133 #define ll_pagevec_init(pv, cold)       do {} while (0)
134 #define ll_pagevec_add(pv, pg)    (0)
135 #define ll_pagevec_lru_add_file(pv)     do {} while (0)
136
137
138 #ifndef QUOTA_OK
139 # define QUOTA_OK 0
140 #endif
141 #ifndef NO_QUOTA
142 # define NO_QUOTA (-EDQUOT)
143 #endif
144
145 #ifndef SEEK_DATA
146 #define SEEK_DATA      3       /* seek to the next data */
147 #endif
148 #ifndef SEEK_HOLE
149 #define SEEK_HOLE      4       /* seek to the next hole */
150 #endif
151
152 #ifndef FMODE_UNSIGNED_OFFSET
153 #define FMODE_UNSIGNED_OFFSET   ((__force fmode_t)0x2000)
154 #endif
155
156 #if !defined(_ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_) && !defined(ext2_set_bit)
157 # define ext2_set_bit        __test_and_set_bit_le
158 # define ext2_clear_bit    __test_and_clear_bit_le
159 # define ext2_test_bit      test_bit_le
160 # define ext2_find_first_zero_bit find_first_zero_bit_le
161 # define ext2_find_next_zero_bit  find_next_zero_bit_le
162 #endif
163
164 #ifdef ATTR_TIMES_SET
165 # define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)
166 #else
167 # define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET)
168 #endif
169
170
171 #include <linux/version.h>
172 #include <linux/fs.h>
173
174 # define ll_umode_t     umode_t
175
176 #endif /* _COMPAT25_H */