Whamcloud - gitweb
LU-709 build: cleanup LC_PAGE_CHECKED and LC_INODE_BLKSIZE
[fs/lustre-release.git] / 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, Whamcloud, Inc.
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 #ifdef __KERNEL__
41
42 #include <linux/fs_struct.h>
43 #include <linux/namei.h>
44 #include <libcfs/linux/portals_compat25.h>
45
46 #include <linux/lustre_patchless_compat.h>
47
48 /* Some old kernels (like 2.6.9) may not define such SEEK_XXX. So the
49  * definition allows to compile lustre client on more OS platforms. */
50 #ifndef SEEK_SET
51  #define SEEK_SET 0
52  #define SEEK_CUR 1
53  #define SEEK_END 2
54 #endif
55
56 #ifdef HAVE_FS_STRUCT_RWLOCK
57 # define LOCK_FS_STRUCT(fs)   cfs_write_lock(&(fs)->lock)
58 # define UNLOCK_FS_STRUCT(fs) cfs_write_unlock(&(fs)->lock)
59 #else
60 # define LOCK_FS_STRUCT(fs)   cfs_spin_lock(&(fs)->lock)
61 # define UNLOCK_FS_STRUCT(fs) cfs_spin_unlock(&(fs)->lock)
62 #endif
63
64 #ifdef HAVE_FS_STRUCT_USE_PATH
65 static inline void ll_set_fs_pwd(struct fs_struct *fs, struct vfsmount *mnt,
66                                  struct dentry *dentry)
67 {
68         struct path path;
69         struct path old_pwd;
70
71         path.mnt = mnt;
72         path.dentry = dentry;
73         LOCK_FS_STRUCT(fs);
74         old_pwd = fs->pwd;
75         path_get(&path);
76         fs->pwd = path;
77         UNLOCK_FS_STRUCT(fs);
78
79         if (old_pwd.dentry)
80                 path_put(&old_pwd);
81 }
82
83 #else
84
85 static inline void ll_set_fs_pwd(struct fs_struct *fs, struct vfsmount *mnt,
86                 struct dentry *dentry)
87 {
88         struct dentry *old_pwd;
89         struct vfsmount *old_pwdmnt;
90
91         LOCK_FS_STRUCT(fs);
92         old_pwd = fs->pwd;
93         old_pwdmnt = fs->pwdmnt;
94         fs->pwdmnt = mntget(mnt);
95         fs->pwd = dget(dentry);
96         UNLOCK_FS_STRUCT(fs);
97
98         if (old_pwd) {
99                 dput(old_pwd);
100                 mntput(old_pwdmnt);
101         }
102 }
103 #endif
104
105 /*
106  * set ATTR_BLOCKS to a high value to avoid any risk of collision with other
107  * ATTR_* attributes (see bug 13828)
108  */
109 #define ATTR_BLOCKS    (1 << 27)
110
111 #define current_ngroups current_cred()->group_info->ngroups
112 #define current_groups current_cred()->group_info->small_block
113
114 #ifndef page_private
115 #define page_private(page) ((page)->private)
116 #define set_page_private(page, v) ((page)->private = (v))
117 #endif
118
119 #define ll_kernel_locked()      kernel_locked()
120
121 /*
122  * OBD need working random driver, thus all our
123  * initialization routines must be called after device
124  * driver initialization
125  */
126 #ifndef MODULE
127 #undef module_init
128 #define module_init(a)     late_initcall(a)
129 #endif
130
131 /* XXX our code should be using the 2.6 calls, not the other way around */
132 #ifdef HAVE_TRYLOCK_PAGE
133 #define TestSetPageLocked(page)         (!trylock_page(page))
134 #endif
135
136 #define Page_Uptodate(page)             PageUptodate(page)
137 #define ll_redirty_page(page)           set_page_dirty(page)
138
139 #define KDEVT_INIT(val)                 (val)
140
141 #define LTIME_S(time)                   (time.tv_sec)
142 #define ll_path_lookup                  path_lookup
143
144 #ifdef HAVE_EXPORT_INODE_PERMISSION
145 #define ll_permission(inode,mask,nd)    inode_permission(inode,mask)
146 #else
147 #define ll_permission(inode,mask,nd)    permission(inode,mask,nd)
148 #endif
149
150 #ifdef HAVE_GENERIC_PERMISSION_4ARGS
151 #define ll_generic_permission(inode, mask, flags, check_acl) \
152         generic_permission(inode, mask, flags, check_acl)
153 #else
154 #define ll_generic_permission(inode, mask, flags, check_acl) \
155         generic_permission(inode, mask, check_acl)
156 #endif
157
158 #define ll_pgcache_lock(mapping)          cfs_spin_lock(&mapping->page_lock)
159 #define ll_pgcache_unlock(mapping)        cfs_spin_unlock(&mapping->page_lock)
160 #define ll_call_writepage(inode, page)  \
161                                 (inode)->i_mapping->a_ops->writepage(page, NULL)
162 #define ll_invalidate_inode_pages(inode) \
163                                 invalidate_inode_pages((inode)->i_mapping)
164
165 #define ll_vfs_create(a,b,c,d)          vfs_create(a,b,c,d)
166 #define ll_dev_t                        dev_t
167 #define kdev_t                          dev_t
168 #define to_kdev_t(dev)                  (dev)
169 #define kdev_t_to_nr(dev)               (dev)
170 #define val_to_kdev(dev)                (dev)
171
172 #ifdef HAVE_BLKDEV_PUT_2ARGS
173 #define ll_blkdev_put(a, b) blkdev_put(a, b)
174 #else
175 #define ll_blkdev_put(a, b) blkdev_put(a)
176 #endif
177
178 #ifdef HAVE_DENTRY_OPEN_4ARGS
179 #define ll_dentry_open(a, b, c, d) dentry_open(a, b, c, d)
180 #else
181 #define ll_dentry_open(a, b, c, d) dentry_open(a, b, c)
182 #endif
183
184 #include <linux/writeback.h>
185
186 static inline int cfs_cleanup_group_info(void)
187 {
188         struct group_info *ginfo;
189
190         ginfo = groups_alloc(0);
191         if (!ginfo)
192                 return -ENOMEM;
193
194         set_current_groups(ginfo);
195         put_group_info(ginfo);
196
197         return 0;
198 }
199
200 #define __set_page_ll_data(page, llap) \
201         do {       \
202                 page_cache_get(page); \
203                 SetPagePrivate(page); \
204                 set_page_private(page, (unsigned long)llap); \
205         } while (0)
206 #define __clear_page_ll_data(page) \
207         do {       \
208                 ClearPagePrivate(page); \
209                 set_page_private(page, 0); \
210                 page_cache_release(page); \
211         } while(0)
212
213 #define kiobuf bio
214
215 #include <linux/proc_fs.h>
216
217 #define CheckWriteback(page, cmd) \
218         ((!PageWriteback(page) && (cmd & OBD_BRW_READ)) || \
219          (PageWriteback(page) && (cmd & OBD_BRW_WRITE)))
220
221 #ifdef HAVE_PAGE_LIST
222 static inline int mapping_has_pages(struct address_space *mapping)
223 {
224         int rc = 1;
225
226         ll_pgcache_lock(mapping);
227         if (cfs_list_empty(&mapping->dirty_pages) &&
228             cfs_list_empty(&mapping->clean_pages) &&
229             cfs_list_empty(&mapping->locked_pages)) {
230                 rc = 0;
231         }
232         ll_pgcache_unlock(mapping);
233
234         return rc;
235 }
236 #else
237 static inline int mapping_has_pages(struct address_space *mapping)
238 {
239         return mapping->nrpages > 0;
240 }
241 #endif
242
243 #ifdef HAVE_KIOBUF_KIO_BLOCKS
244 #define KIOBUF_GET_BLOCKS(k) ((k)->kio_blocks)
245 #else
246 #define KIOBUF_GET_BLOCKS(k) ((k)->blocks)
247 #endif
248
249 #ifdef HAVE_SECURITY_PLUG
250 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
251                 vfs_symlink(dir, dentry, mnt, path, mode)
252 #else
253 #ifdef HAVE_4ARGS_VFS_SYMLINK
254 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
255                 vfs_symlink(dir, dentry, path, mode)
256 #else
257 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
258                        vfs_symlink(dir, dentry, path)
259 #endif
260
261 #endif
262
263 #ifndef container_of
264 #define container_of(ptr, type, member) ({                      \
265                 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
266                 (type *)( (char *)__mptr - offsetof(type,member) );})
267 #endif
268
269 #define UP_WRITE_I_ALLOC_SEM(i)   up_write(&(i)->i_alloc_sem)
270 #define DOWN_WRITE_I_ALLOC_SEM(i) down_write(&(i)->i_alloc_sem)
271 #define LASSERT_I_ALLOC_SEM_WRITE_LOCKED(i) LASSERT(down_read_trylock(&(i)->i_alloc_sem) == 0)
272
273 #define UP_READ_I_ALLOC_SEM(i)    up_read(&(i)->i_alloc_sem)
274 #define DOWN_READ_I_ALLOC_SEM(i)  down_read(&(i)->i_alloc_sem)
275 #define LASSERT_I_ALLOC_SEM_READ_LOCKED(i) LASSERT(down_write_trylock(&(i)->i_alloc_sem) == 0)
276
277 #include <linux/mpage.h>        /* for generic_writepages */
278
279 #ifdef HAVE_HIDE_VFSMOUNT_GUTS
280 # include <../fs/mount.h>
281 #else
282 # define real_mount(mnt)        (mnt)
283 #endif
284
285 static inline const char *mnt_get_devname(struct vfsmount *mnt)
286 {
287         return real_mount(mnt)->mnt_devname;
288 }
289
290 #ifndef HAVE_ATOMIC_MNT_COUNT
291 static inline unsigned int mnt_get_count(struct vfsmount *mnt)
292 {
293 #ifdef CONFIG_SMP
294         unsigned int count = 0;
295         int cpu;
296
297         for_each_possible_cpu(cpu) {
298                 count += per_cpu_ptr(real_mount(mnt)->mnt_pcp, cpu)->mnt_count;
299         }
300
301         return count;
302 #else
303         return real_mount(mnt)->mnt_count;
304 #endif
305 }
306 #else
307 # define mnt_get_count(mnt)      cfs_atomic_read(&(real_mount(mnt)->mnt_count))
308 #endif
309
310 #ifdef HAVE_RW_TREE_LOCK
311 #define TREE_READ_LOCK_IRQ(mapping)     read_lock_irq(&(mapping)->tree_lock)
312 #define TREE_READ_UNLOCK_IRQ(mapping) read_unlock_irq(&(mapping)->tree_lock)
313 #else
314 #define TREE_READ_LOCK_IRQ(mapping) cfs_spin_lock_irq(&(mapping)->tree_lock)
315 #define TREE_READ_UNLOCK_IRQ(mapping) cfs_spin_unlock_irq(&(mapping)->tree_lock)
316 #endif
317
318 #ifdef HAVE_UNREGISTER_BLKDEV_RETURN_INT
319 #define ll_unregister_blkdev(a,b)       unregister_blkdev((a),(b))
320 #else
321 static inline
322 int ll_unregister_blkdev(unsigned int dev, const char *name)
323 {
324         unregister_blkdev(dev, name);
325         return 0;
326 }
327 #endif
328
329 #ifdef HAVE_INVALIDATE_BDEV_2ARG
330 #define ll_invalidate_bdev(a,b)         invalidate_bdev((a),(b))
331 #else
332 #define ll_invalidate_bdev(a,b)         invalidate_bdev((a))
333 #endif
334
335 #define ll_inode_blksize(a)     (1<<(a)->i_blkbits)
336
337 #ifdef HAVE_FS_RENAME_DOES_D_MOVE
338 #define LL_RENAME_DOES_D_MOVE   FS_RENAME_DOES_D_MOVE
339 #else
340 #define LL_RENAME_DOES_D_MOVE   FS_ODD_RENAME
341 #endif
342
343 #ifndef HAVE_D_OBTAIN_ALIAS
344 /* The old d_alloc_anon() didn't free the inode reference on error
345  * like d_obtain_alias().  Hide that difference/inconvenience here. */
346 static inline struct dentry *d_obtain_alias(struct inode *inode)
347 {
348         struct dentry *anon = d_alloc_anon(inode);
349
350         if (anon == NULL) {
351                 iput(inode);
352                 anon = ERR_PTR(-ENOMEM);
353         }
354
355         return anon;
356 }
357 #endif
358
359 /* add a lustre compatible layer for crypto API */
360 #include <linux/crypto.h>
361 #ifdef HAVE_ASYNC_BLOCK_CIPHER
362 #define ll_crypto_hash          crypto_hash
363 #define ll_crypto_cipher        crypto_blkcipher
364 #define ll_crypto_alloc_hash(name, type, mask)  crypto_alloc_hash(name, type, mask)
365 #define ll_crypto_hash_setkey(tfm, key, keylen) crypto_hash_setkey(tfm, key, keylen)
366 #define ll_crypto_hash_init(desc)               crypto_hash_init(desc)
367 #define ll_crypto_hash_update(desc, sl, bytes)  crypto_hash_update(desc, sl, bytes)
368 #define ll_crypto_hash_final(desc, out)         crypto_hash_final(desc, out)
369 #define ll_crypto_blkcipher_setkey(tfm, key, keylen) \
370                 crypto_blkcipher_setkey(tfm, key, keylen)
371 #define ll_crypto_blkcipher_set_iv(tfm, src, len) \
372                 crypto_blkcipher_set_iv(tfm, src, len)
373 #define ll_crypto_blkcipher_get_iv(tfm, dst, len) \
374                 crypto_blkcipher_get_iv(tfm, dst, len)
375 #define ll_crypto_blkcipher_encrypt(desc, dst, src, bytes) \
376                 crypto_blkcipher_encrypt(desc, dst, src, bytes)
377 #define ll_crypto_blkcipher_decrypt(desc, dst, src, bytes) \
378                 crypto_blkcipher_decrypt(desc, dst, src, bytes)
379 #define ll_crypto_blkcipher_encrypt_iv(desc, dst, src, bytes) \
380                 crypto_blkcipher_encrypt_iv(desc, dst, src, bytes)
381 #define ll_crypto_blkcipher_decrypt_iv(desc, dst, src, bytes) \
382                 crypto_blkcipher_decrypt_iv(desc, dst, src, bytes)
383
384 static inline
385 struct ll_crypto_cipher *ll_crypto_alloc_blkcipher(const char *name,
386                                                    u32 type, u32 mask)
387 {
388         struct ll_crypto_cipher *rtn = crypto_alloc_blkcipher(name, type, mask);
389
390         return (rtn == NULL ? ERR_PTR(-ENOMEM) : rtn);
391 }
392
393 static inline int ll_crypto_hmac(struct ll_crypto_hash *tfm,
394                                  u8 *key, unsigned int *keylen,
395                                  struct scatterlist *sg,
396                                  unsigned int size, u8 *result)
397 {
398         struct hash_desc desc;
399         int              rv;
400         desc.tfm   = tfm;
401         desc.flags = 0;
402         rv = crypto_hash_setkey(desc.tfm, key, *keylen);
403         if (rv) {
404                 CERROR("failed to hash setkey: %d\n", rv);
405                 return rv;
406         }
407         return crypto_hash_digest(&desc, sg, size, result);
408 }
409 static inline
410 unsigned int ll_crypto_tfm_alg_max_keysize(struct crypto_blkcipher *tfm)
411 {
412         return crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher.max_keysize;
413 }
414 static inline
415 unsigned int ll_crypto_tfm_alg_min_keysize(struct crypto_blkcipher *tfm)
416 {
417         return crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher.min_keysize;
418 }
419
420 #define ll_crypto_hash_blocksize(tfm)       crypto_hash_blocksize(tfm)
421 #define ll_crypto_hash_digestsize(tfm)      crypto_hash_digestsize(tfm)
422 #define ll_crypto_blkcipher_ivsize(tfm)     crypto_blkcipher_ivsize(tfm)
423 #define ll_crypto_blkcipher_blocksize(tfm)  crypto_blkcipher_blocksize(tfm)
424 #define ll_crypto_free_hash(tfm)            crypto_free_hash(tfm)
425 #define ll_crypto_free_blkcipher(tfm)       crypto_free_blkcipher(tfm)
426 #else /* HAVE_ASYNC_BLOCK_CIPHER */
427 #include <linux/scatterlist.h>
428 #define ll_crypto_hash          crypto_tfm
429 #define ll_crypto_cipher        crypto_tfm
430 #ifndef HAVE_STRUCT_HASH_DESC
431 struct hash_desc {
432         struct ll_crypto_hash *tfm;
433         u32                    flags;
434 };
435 #endif
436 #ifndef HAVE_STRUCT_BLKCIPHER_DESC
437 struct blkcipher_desc {
438         struct ll_crypto_cipher *tfm;
439         void                    *info;
440         u32                      flags;
441 };
442 #endif
443 #define ll_crypto_blkcipher_setkey(tfm, key, keylen) \
444         crypto_cipher_setkey(tfm, key, keylen)
445 #define ll_crypto_blkcipher_set_iv(tfm, src, len) \
446         crypto_cipher_set_iv(tfm, src, len)
447 #define ll_crypto_blkcipher_get_iv(tfm, dst, len) \
448         crypto_cipher_get_iv(tfm, dst, len)
449 #define ll_crypto_blkcipher_encrypt(desc, dst, src, bytes) \
450         crypto_cipher_encrypt((desc)->tfm, dst, src, bytes)
451 #define ll_crypto_blkcipher_decrypt(desc, dst, src, bytes) \
452         crypto_cipher_decrypt((desc)->tfm, dst, src, bytes)
453 #define ll_crypto_blkcipher_decrypt_iv(desc, dst, src, bytes) \
454         crypto_cipher_decrypt_iv((desc)->tfm, dst, src, bytes, (desc)->info)
455 #define ll_crypto_blkcipher_encrypt_iv(desc, dst, src, bytes) \
456         crypto_cipher_encrypt_iv((desc)->tfm, dst, src, bytes, (desc)->info)
457
458 static inline
459 struct ll_crypto_cipher *ll_crypto_alloc_blkcipher(const char * algname,
460                                                    u32 type, u32 mask)
461 {
462         struct ll_crypto_cipher *rtn;
463         char                     buf[CRYPTO_MAX_ALG_NAME + 1];
464         const char              *pan = algname;
465         u32                      flag = 0;
466
467         if (strncmp("cbc(", algname, 4) == 0)
468                 flag |= CRYPTO_TFM_MODE_CBC;
469         else if (strncmp("ecb(", algname, 4) == 0)
470                 flag |= CRYPTO_TFM_MODE_ECB;
471         if (flag) {
472                 char *vp = strnchr(algname, CRYPTO_MAX_ALG_NAME, ')');
473                 if (vp) {
474                         memcpy(buf, algname + 4, vp - algname - 4);
475                         buf[vp - algname - 4] = '\0';
476                         pan = buf;
477                 } else {
478                         flag = 0;
479                 }
480         }
481         rtn = crypto_alloc_tfm(pan, flag);
482         return (rtn == NULL ?  ERR_PTR(-ENOMEM) : rtn);
483 }
484
485 static inline
486 struct ll_crypto_hash *ll_crypto_alloc_hash(const char *alg, u32 type, u32 mask)
487 {
488         char        buf[CRYPTO_MAX_ALG_NAME + 1];
489         const char *pan = alg;
490
491         if (strncmp("hmac(", alg, 5) == 0) {
492                 char *vp = strnchr(alg, CRYPTO_MAX_ALG_NAME, ')');
493                 if (vp) {
494                         memcpy(buf, alg+ 5, vp - alg- 5);
495                         buf[vp - alg - 5] = 0x00;
496                         pan = buf;
497                 }
498         }
499         return crypto_alloc_tfm(pan, 0);
500 }
501 static inline int ll_crypto_hash_init(struct hash_desc *desc)
502 {
503        crypto_digest_init(desc->tfm); return 0;
504 }
505 static inline int ll_crypto_hash_update(struct hash_desc *desc,
506                                         struct scatterlist *sg,
507                                         unsigned int nbytes)
508 {
509         struct scatterlist *sl = sg;
510         unsigned int        count;
511                 /*
512                  * This way is very weakness. We must ensure that
513                  * the sum of sg[0..i]->length isn't greater than nbytes.
514                  * In the upstream kernel the crypto_hash_update() also
515                  * via the nbytes computed the count of sg[...].
516                  * The old style is more safely. but it gone.
517                  */
518         for (count = 0; nbytes > 0; count ++, sl ++) {
519                 nbytes -= sl->length;
520         }
521         crypto_digest_update(desc->tfm, sg, count); return 0;
522 }
523 static inline int ll_crypto_hash_final(struct hash_desc *desc, u8 *out)
524 {
525         crypto_digest_final(desc->tfm, out); return 0;
526 }
527 static inline int ll_crypto_hmac(struct crypto_tfm *tfm,
528                                  u8 *key, unsigned int *keylen,
529                                  struct scatterlist *sg,
530                                  unsigned int nbytes,
531                                  u8 *out)
532 {
533         struct scatterlist *sl = sg;
534         int                 count;
535         for (count = 0; nbytes > 0; count ++, sl ++) {
536                 nbytes -= sl->length;
537         }
538         crypto_hmac(tfm, key, keylen, sg, count, out);
539         return 0;
540 }
541
542 #define ll_crypto_hash_setkey(tfm, key, keylen) crypto_digest_setkey(tfm, key, keylen)
543 #define ll_crypto_blkcipher_blocksize(tfm)      crypto_tfm_alg_blocksize(tfm)
544 #define ll_crypto_blkcipher_ivsize(tfm) crypto_tfm_alg_ivsize(tfm)
545 #define ll_crypto_hash_digestsize(tfm)  crypto_tfm_alg_digestsize(tfm)
546 #define ll_crypto_hash_blocksize(tfm)   crypto_tfm_alg_blocksize(tfm)
547 #define ll_crypto_free_hash(tfm)        crypto_free_tfm(tfm)
548 #define ll_crypto_free_blkcipher(tfm)   crypto_free_tfm(tfm)
549 #define ll_crypto_tfm_alg_min_keysize   crypto_tfm_alg_min_keysize
550 #define ll_crypto_tfm_alg_max_keysize   crypto_tfm_alg_max_keysize
551 #endif /* HAVE_ASYNC_BLOCK_CIPHER */
552
553 #ifdef HAVE_FILE_REMOVE_SUID
554 # define ll_remove_suid(file, mnt)       file_remove_suid(file)
555 #else
556 # ifdef HAVE_SECURITY_PLUG
557 #  define ll_remove_suid(file,mnt)      remove_suid(file->f_dentry,mnt)
558 # else
559 #  define ll_remove_suid(file,mnt)      remove_suid(file->f_dentry)
560 # endif
561 #endif
562
563 #ifdef HAVE_SECURITY_PLUG
564 #define ll_vfs_rmdir(dir,entry,mnt)             vfs_rmdir(dir,entry,mnt)
565 #define ll_vfs_mkdir(inode,dir,mnt,mode)        vfs_mkdir(inode,dir,mnt,mode)
566 #define ll_vfs_link(old,mnt,dir,new,mnt1)       vfs_link(old,mnt,dir,new,mnt1)
567 #define ll_vfs_unlink(inode,entry,mnt)          vfs_unlink(inode,entry,mnt)
568 #define ll_vfs_mknod(dir,entry,mnt,mode,dev)            \
569                 vfs_mknod(dir,entry,mnt,mode,dev)
570 #define ll_security_inode_unlink(dir,entry,mnt)         \
571                 security_inode_unlink(dir,entry,mnt)
572 #define ll_vfs_rename(old,old_dir,mnt,new,new_dir,mnt1) \
573                 vfs_rename(old,old_dir,mnt,new,new_dir,mnt1)
574 #else
575 #define ll_vfs_rmdir(dir,entry,mnt)             vfs_rmdir(dir,entry)
576 #define ll_vfs_mkdir(inode,dir,mnt,mode)        vfs_mkdir(inode,dir,mode)
577 #define ll_vfs_link(old,mnt,dir,new,mnt1)       vfs_link(old,dir,new)
578 #define ll_vfs_unlink(inode,entry,mnt)          vfs_unlink(inode,entry)
579 #define ll_vfs_mknod(dir,entry,mnt,mode,dev)    vfs_mknod(dir,entry,mode,dev)
580 #define ll_security_inode_unlink(dir,entry,mnt) security_inode_unlink(dir,entry)
581 #define ll_vfs_rename(old,old_dir,mnt,new,new_dir,mnt1) \
582                 vfs_rename(old,old_dir,new,new_dir)
583 #endif /* HAVE_SECURITY_PLUG */
584
585 #ifdef for_each_possible_cpu
586 #define cfs_for_each_possible_cpu(cpu) for_each_possible_cpu(cpu)
587 #elif defined(for_each_cpu)
588 #define cfs_for_each_possible_cpu(cpu) for_each_cpu(cpu)
589 #endif
590
591 #ifdef HAVE_BIO_ENDIO_2ARG
592 #define cfs_bio_io_error(a,b)   bio_io_error((a))
593 #define cfs_bio_endio(a,b,c)    bio_endio((a),(c))
594 #else
595 #define cfs_bio_io_error(a,b)   bio_io_error((a),(b))
596 #define cfs_bio_endio(a,b,c)    bio_endio((a),(b),(c))
597 #endif
598
599 #ifdef HAVE_FS_STRUCT_USE_PATH
600 #define cfs_fs_pwd(fs)       ((fs)->pwd.dentry)
601 #define cfs_fs_mnt(fs)       ((fs)->pwd.mnt)
602 #define cfs_path_put(nd)     path_put(&(nd)->path)
603 #else
604 #define cfs_fs_pwd(fs)       ((fs)->pwd)
605 #define cfs_fs_mnt(fs)       ((fs)->pwdmnt)
606 #define cfs_path_put(nd)     path_release(nd)
607 #endif
608
609 #ifndef abs
610 static inline int abs(int x)
611 {
612         return (x < 0) ? -x : x;
613 }
614 #endif
615
616 #ifndef labs
617 static inline long labs(long x)
618 {
619         return (x < 0) ? -x : x;
620 }
621 #endif /* HAVE_REGISTER_SHRINKER */
622
623 #ifndef HAVE_SIMPLE_SETATTR
624 #define simple_setattr(dentry, ops) inode_setattr((dentry)->d_inode, ops)
625 #endif
626
627 #ifndef SLAB_DESTROY_BY_RCU
628 #define CFS_SLAB_DESTROY_BY_RCU 0
629 #else
630 #define CFS_SLAB_DESTROY_BY_RCU SLAB_DESTROY_BY_RCU
631 #endif
632
633 #ifdef HAVE_SB_HAS_QUOTA_ACTIVE
634 #define ll_sb_has_quota_active(sb, type) sb_has_quota_active(sb, type)
635 #else
636 #define ll_sb_has_quota_active(sb, type) sb_has_quota_enabled(sb, type)
637 #endif
638
639 #ifdef HAVE_SB_ANY_QUOTA_LOADED
640 #define ll_sb_any_quota_active(sb) sb_any_quota_loaded(sb)
641 #elif defined(HAVE_SB_ANY_QUOTA_ACTIVE)
642 #define ll_sb_any_quota_active(sb) sb_any_quota_active(sb)
643 #else
644 #define ll_sb_any_quota_active(sb) sb_any_quota_enabled(sb)
645 #endif
646
647 static inline int
648 ll_quota_on(struct super_block *sb, int off, int ver, char *name, int remount)
649 {
650         int rc;
651
652         if (sb->s_qcop->quota_on) {
653 #ifdef HAVE_QUOTA_ON_USE_PATH
654                 struct path path;
655
656                 rc = kern_path(name, LOOKUP_FOLLOW, &path);
657                 if (!rc)
658                         return rc;
659 #endif
660                 rc = sb->s_qcop->quota_on(sb, off, ver
661 #ifdef HAVE_QUOTA_ON_USE_PATH
662                                             , &path
663 #else
664                                             , name
665 #endif
666 #ifdef HAVE_QUOTA_ON_5ARGS
667                                             , remount
668 #endif
669                                            );
670 #ifdef HAVE_QUOTA_ON_USE_PATH
671                 path_put(&path);
672 #endif
673                 return rc;
674         }
675         else
676                 return -ENOSYS;
677 }
678
679 static inline int ll_quota_off(struct super_block *sb, int off, int remount)
680 {
681         if (sb->s_qcop->quota_off) {
682                 return sb->s_qcop->quota_off(sb, off
683 #ifdef HAVE_QUOTA_OFF_3ARGS
684                                              , remount
685 #endif
686                                             );
687         }
688         else
689                 return -ENOSYS;
690 }
691
692 #ifndef HAVE_BLK_QUEUE_LOG_BLK_SIZE /* added in 2.6.31 */
693 #define blk_queue_logical_block_size(q, sz) blk_queue_hardsect_size(q, sz)
694 #endif
695
696 #ifndef HAVE_VFS_DQ_OFF
697 # define ll_vfs_dq_init             DQUOT_INIT
698 # define ll_vfs_dq_drop             DQUOT_DROP
699 # define ll_vfs_dq_transfer         DQUOT_TRANSFER
700 # define ll_vfs_dq_off(sb, remount) DQUOT_OFF(sb)
701 #else
702 # define ll_vfs_dq_init             vfs_dq_init
703 # define ll_vfs_dq_drop             vfs_dq_drop
704 # define ll_vfs_dq_transfer         vfs_dq_transfer
705 # define ll_vfs_dq_off(sb, remount) vfs_dq_off(sb, remount)
706 #endif
707
708 #ifdef HAVE_BDI_INIT
709 #define ll_bdi_init(bdi)    bdi_init(bdi)
710 #define ll_bdi_destroy(bdi) bdi_destroy(bdi)
711 #else
712 #define ll_bdi_init(bdi)    0
713 #define ll_bdi_destroy(bdi) do { } while(0)
714 #endif
715
716 #ifdef HAVE_NEW_BACKING_DEV_INFO
717 # define ll_bdi_wb_cnt(bdi) ((bdi).wb_cnt)
718 #else
719 # define ll_bdi_wb_cnt(bdi) 1
720 #endif
721
722 #ifdef HAVE_BLK_QUEUE_MAX_SECTORS /* removed in rhel6 */
723 #define blk_queue_max_hw_sectors(q, sect) blk_queue_max_sectors(q, sect)
724 #endif
725
726 #ifndef HAVE_BLKDEV_GET_BY_DEV
727 # define blkdev_get_by_dev(dev, mode, holder) open_by_devnum(dev, mode)
728 #endif
729
730 #ifndef HAVE_REQUEST_QUEUE_LIMITS
731 #define queue_max_sectors(rq)             ((rq)->max_sectors)
732 #define queue_max_hw_sectors(rq)          ((rq)->max_hw_sectors)
733 #define queue_max_phys_segments(rq)       ((rq)->max_phys_segments)
734 #define queue_max_hw_segments(rq)         ((rq)->max_hw_segments)
735 #endif
736
737 #ifndef HAVE_BLK_QUEUE_MAX_SEGMENTS
738 #define blk_queue_max_segments(rq, seg)                      \
739         do { blk_queue_max_phys_segments(rq, seg);           \
740              blk_queue_max_hw_segments(rq, seg); } while (0)
741 #else
742 #define queue_max_phys_segments(rq)       queue_max_segments(rq)
743 #define queue_max_hw_segments(rq)         queue_max_segments(rq)
744 #endif
745
746
747 #ifndef HAVE_BI_HW_SEGMENTS
748 #define bio_hw_segments(q, bio) 0
749 #endif
750
751 #ifndef HAVE_PAGEVEC_LRU_ADD_FILE
752 #define pagevec_lru_add_file pagevec_lru_add
753 #endif
754
755 #ifdef HAVE_ADD_TO_PAGE_CACHE_LRU
756 #define ll_add_to_page_cache_lru(pg, mapping, off, gfp) \
757         add_to_page_cache_lru(pg, mapping, off, gfp)
758 #define ll_pagevec_init(pv, cold)       do {} while (0)
759 #define ll_pagevec_add(pv, pg)          (0)
760 #define ll_pagevec_lru_add_file(pv)     do {} while (0)
761 #else
762 #define ll_add_to_page_cache_lru(pg, mapping, off, gfp) \
763         add_to_page_cache(pg, mapping, off, gfp)
764 #define ll_pagevec_init(pv, cold)       pagevec_init(&lru_pvec, cold);
765 #define ll_pagevec_add(pv, pg)                                  \
766 ({                                                              \
767         int __ret;                                              \
768                                                                 \
769         page_cache_get(pg);                                     \
770         __ret = pagevec_add(pv, pg);                            \
771 })
772 #define ll_pagevec_lru_add_file(pv)     pagevec_lru_add_file(pv)
773 #endif
774
775 #if !defined(HAVE_NODE_TO_CPUMASK) && defined(HAVE_CPUMASK_OF_NODE)
776 #define node_to_cpumask(i)         (*(cpumask_of_node(i)))
777 #define HAVE_NODE_TO_CPUMASK
778 #endif
779
780 #ifndef QUOTA_OK
781 # define QUOTA_OK 0
782 #endif
783 #ifndef NO_QUOTA
784 # define NO_QUOTA (-EDQUOT)
785 #endif
786
787 #if !defined(_ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_) && !defined(ext2_set_bit)
788 # define ext2_set_bit             __test_and_set_bit_le
789 # define ext2_clear_bit           __test_and_clear_bit_le
790 # define ext2_test_bit            test_bit_le
791 # define ext2_find_first_zero_bit find_first_zero_bit_le
792 # define ext2_find_next_zero_bit  find_next_zero_bit_le
793 #endif
794
795 #ifdef ATTR_TIMES_SET
796 # define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)
797 #else
798 # define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET)
799 #endif
800
801 #ifndef HAVE_SELINUX_IS_ENABLED
802 static inline bool selinux_is_enabled(void)
803 {
804         return 0;
805 }
806 #endif
807
808 #endif /* __KERNEL__ */
809 #endif /* _COMPAT25_H */