Whamcloud - gitweb
LU-12624 lod: alloc dir stripes by QoS
[fs/lustre-release.git] / lustre / include / lustre_compat.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #ifndef _LUSTRE_COMPAT_H
34 #define _LUSTRE_COMPAT_H
35
36 #include <linux/aio.h>
37 #include <linux/fs.h>
38 #include <linux/fs_struct.h>
39 #include <linux/namei.h>
40 #include <linux/pagemap.h>
41 #include <linux/posix_acl_xattr.h>
42 #include <linux/bio.h>
43 #include <linux/xattr.h>
44 #include <linux/workqueue.h>
45 #include <linux/blkdev.h>
46 #include <linux/slab.h>
47
48 #include <libcfs/linux/linux-fs.h>
49 #include <obd_support.h>
50
51 #define current_ngroups current_cred()->group_info->ngroups
52 #define current_groups current_cred()->group_info->small_block
53
54 #ifdef HAVE_4ARGS_VFS_SYMLINK
55 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
56                 vfs_symlink(dir, dentry, path, mode)
57 #else
58 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
59                        vfs_symlink(dir, dentry, path)
60 #endif
61
62 #if !defined(HAVE_FILE_LLSEEK_SIZE) || defined(HAVE_FILE_LLSEEK_SIZE_5ARGS)
63 #define ll_generic_file_llseek_size(file, offset, origin, maxbytes, eof) \
64                 generic_file_llseek_size(file, offset, origin, maxbytes, eof);
65 #else
66 #define ll_generic_file_llseek_size(file, offset, origin, maxbytes, eof) \
67                 generic_file_llseek_size(file, offset, origin, maxbytes);
68 #endif
69
70 #ifdef HAVE_INODE_DIO_WAIT
71 /* inode_dio_wait(i) use as-is for write lock */
72 # define inode_dio_write_done(i)        do {} while (0) /* for write unlock */
73 #else
74 # define inode_dio_wait(i)              down_write(&(i)->i_alloc_sem)
75 # define inode_dio_write_done(i)        up_write(&(i)->i_alloc_sem)
76 #endif
77
78 #ifndef HAVE_INIT_LIST_HEAD_RCU
79 static inline void INIT_LIST_HEAD_RCU(struct list_head *list)
80 {
81         WRITE_ONCE(list->next, list);
82         WRITE_ONCE(list->prev, list);
83 }
84 #endif
85
86 #ifdef HAVE_BVEC_ITER
87 #define bio_idx(bio)                    (bio->bi_iter.bi_idx)
88 #define bio_set_sector(bio, sector)     (bio->bi_iter.bi_sector = sector)
89 #define bvl_to_page(bvl)                (bvl->bv_page)
90 #else
91 #define bio_idx(bio)                    (bio->bi_idx)
92 #define bio_set_sector(bio, sector)     (bio->bi_sector = sector)
93 #define bio_sectors(bio)                ((bio)->bi_size >> 9)
94 #ifndef HAVE_BIO_END_SECTOR
95 #define bio_end_sector(bio)             (bio->bi_sector + bio_sectors(bio))
96 #endif
97 #define bvl_to_page(bvl)                (bvl->bv_page)
98 #endif
99
100 #ifdef HAVE_BVEC_ITER
101 #define bio_start_sector(bio) (bio->bi_iter.bi_sector)
102 #else
103 #define bio_start_sector(bio) (bio->bi_sector)
104 #endif
105
106 #ifdef HAVE_KMAP_ATOMIC_HAS_1ARG
107 #define ll_kmap_atomic(a, b)    kmap_atomic(a)
108 #define ll_kunmap_atomic(a, b)  kunmap_atomic(a)
109 #else
110 #define ll_kmap_atomic(a, b)    kmap_atomic(a, b)
111 #define ll_kunmap_atomic(a, b)  kunmap_atomic(a, b)
112 #endif
113
114 #ifndef HAVE_CLEAR_INODE
115 #define clear_inode(i)          end_writeback(i)
116 #endif
117
118 #ifndef HAVE_DENTRY_D_CHILD
119 #define d_child                 d_u.d_child
120 #endif
121
122 #ifdef HAVE_DENTRY_D_U_D_ALIAS
123 #define d_alias                 d_u.d_alias
124 #endif
125
126 #ifndef DATA_FOR_LLITE_IS_LIST
127 #define ll_d_hlist_node hlist_node
128 #define ll_d_hlist_empty(list) hlist_empty(list)
129 #define ll_d_hlist_entry(ptr, type, name) hlist_entry(ptr.first, type, name)
130 #define ll_d_hlist_for_each(tmp, i_dentry) hlist_for_each(tmp, i_dentry)
131 # ifdef HAVE_HLIST_FOR_EACH_3ARG
132 # define ll_d_hlist_for_each_entry(dentry, p, i_dentry) \
133         p = NULL; hlist_for_each_entry(dentry, i_dentry, d_alias)
134 # else
135 # define ll_d_hlist_for_each_entry(dentry, p, i_dentry) \
136         hlist_for_each_entry(dentry, p, i_dentry, d_alias)
137 # endif
138 #define DECLARE_LL_D_HLIST_NODE_PTR(name) struct ll_d_hlist_node *name
139 #else
140 #define ll_d_hlist_node list_head
141 #define ll_d_hlist_empty(list) list_empty(list)
142 #define ll_d_hlist_entry(ptr, type, name) list_entry(ptr.next, type, name)
143 #define ll_d_hlist_for_each(tmp, i_dentry) list_for_each(tmp, i_dentry)
144 #define ll_d_hlist_for_each_entry(dentry, p, i_dentry) \
145         list_for_each_entry(dentry, i_dentry, d_alias)
146 #define DECLARE_LL_D_HLIST_NODE_PTR(name) /* nothing */
147 #endif /* !DATA_FOR_LLITE_IS_LIST */
148
149 #ifndef HAVE_D_IN_LOOKUP
150 static inline int d_in_lookup(struct dentry *dentry)
151 {
152         return false;
153 }
154 #endif
155
156 #ifndef QUOTA_OK
157 # define QUOTA_OK 0
158 #endif
159 #ifndef NO_QUOTA
160 # define NO_QUOTA (-EDQUOT)
161 #endif
162
163 #ifndef SEEK_DATA
164 #define SEEK_DATA      3       /* seek to the next data */
165 #endif
166 #ifndef SEEK_HOLE
167 #define SEEK_HOLE      4       /* seek to the next hole */
168 #endif
169
170 #ifndef FMODE_UNSIGNED_OFFSET
171 #define FMODE_UNSIGNED_OFFSET   ((__force fmode_t)0x2000)
172 #endif
173
174 #if !defined(_ASM_GENERIC_BITOPS_EXT2_NON_ATOMIC_H_) && !defined(ext2_set_bit)
175 # define ext2_set_bit             __test_and_set_bit_le
176 # define ext2_clear_bit           __test_and_clear_bit_le
177 # define ext2_test_bit            test_bit_le
178 # define ext2_find_first_zero_bit find_first_zero_bit_le
179 # define ext2_find_next_zero_bit  find_next_zero_bit_le
180 #endif
181
182 #ifdef ATTR_TIMES_SET
183 # define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)
184 #else
185 # define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET)
186 #endif
187
188 #ifndef XATTR_NAME_POSIX_ACL_ACCESS
189 # define XATTR_NAME_POSIX_ACL_ACCESS POSIX_ACL_XATTR_ACCESS
190 #endif
191
192 #ifndef XATTR_NAME_POSIX_ACL_DEFAULT
193 # define XATTR_NAME_POSIX_ACL_DEFAULT POSIX_ACL_XATTR_DEFAULT
194 #endif
195
196 #ifndef HAVE_LM_XXX_LOCK_MANAGER_OPS
197 # define lm_compare_owner       fl_compare_owner
198 #endif
199
200 /*
201  * After 3.1, kernel's nameidata.intent.open.flags is different
202  * with lustre's lookup_intent.it_flags, as lustre's it_flags'
203  * lower bits equal to FMODE_xxx while kernel doesn't transliterate
204  * lower bits of nameidata.intent.open.flags to FMODE_xxx.
205  * */
206 #include <linux/version.h>
207 static inline int ll_namei_to_lookup_intent_flag(int flag)
208 {
209 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 1, 0)
210         flag = (flag & ~O_ACCMODE) | OPEN_FMODE(flag);
211 #endif
212         return flag;
213 }
214
215 #include <linux/fs.h>
216 #ifndef HAVE_PROTECT_I_NLINK
217 static inline void set_nlink(struct inode *inode, unsigned int nlink)
218 {
219         inode->i_nlink = nlink;
220 }
221 #endif
222
223 #ifdef HAVE_INODEOPS_USE_UMODE_T
224 # define ll_umode_t     umode_t
225 #else
226 # define ll_umode_t     int
227 #endif
228
229 #ifndef HAVE_VM_FAULT_T
230 #define vm_fault_t int
231 #endif
232
233 #include <linux/dcache.h>
234 #ifndef HAVE_D_MAKE_ROOT
235 static inline struct dentry *d_make_root(struct inode *root)
236 {
237         struct dentry *res = d_alloc_root(root);
238
239         if (res == NULL && root)
240                 iput(root);
241
242         return res;
243 }
244 #endif
245
246 #ifdef HAVE_DIRTY_INODE_HAS_FLAG
247 # define ll_dirty_inode(inode, flag)    (inode)->i_sb->s_op->dirty_inode((inode), flag)
248 #else
249 # define ll_dirty_inode(inode, flag)    (inode)->i_sb->s_op->dirty_inode((inode))
250 #endif
251
252 #ifdef HAVE_FILE_F_INODE
253 # define set_file_inode(file, inode)    (file)->f_inode = inode
254 #else
255 # define set_file_inode(file, inode)
256 #endif
257
258 #ifndef HAVE_FILE_INODE
259 static inline struct inode *file_inode(const struct file *file)
260 {
261         return file->f_path.dentry->d_inode;
262 }
263 #endif
264
265 #ifdef HAVE_OLDSIZE_TRUNCATE_PAGECACHE
266 #define ll_truncate_pagecache(inode, size) truncate_pagecache(inode, 0, size)
267 #else
268 #define ll_truncate_pagecache(inode, size) truncate_pagecache(inode, size)
269 #endif
270
271 #ifdef HAVE_VFS_RENAME_5ARGS
272 #define ll_vfs_rename(a, b, c, d) vfs_rename(a, b, c, d, NULL)
273 #elif defined HAVE_VFS_RENAME_6ARGS
274 #define ll_vfs_rename(a, b, c, d) vfs_rename(a, b, c, d, NULL, 0)
275 #else
276 #define ll_vfs_rename(a, b, c, d) vfs_rename(a, b, c, d)
277 #endif
278
279 #ifdef HAVE_VFS_UNLINK_3ARGS
280 #define ll_vfs_unlink(a, b) vfs_unlink(a, b, NULL)
281 #else
282 #define ll_vfs_unlink(a, b) vfs_unlink(a, b)
283 #endif
284
285 #ifndef HAVE_INODE_OWNER_OR_CAPABLE
286 #define inode_owner_or_capable(inode) is_owner_or_cap(inode)
287 #endif
288
289 static inline int ll_vfs_getattr(struct path *path, struct kstat *st)
290 {
291         int rc;
292
293 #ifdef HAVE_INODEOPS_ENHANCED_GETATTR
294         rc = vfs_getattr(path, st, STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
295 #elif defined HAVE_VFS_GETATTR_2ARGS
296         rc = vfs_getattr(path, st);
297 #else
298         rc = vfs_getattr(path->mnt, path->dentry, st);
299 #endif
300         return rc;
301 }
302
303 #ifndef HAVE_D_IS_POSITIVE
304 static inline bool d_is_positive(const struct dentry *dentry)
305 {
306         return dentry->d_inode != NULL;
307 }
308 #endif
309
310 #ifdef HAVE_VFS_CREATE_USE_NAMEIDATA
311 # define LL_VFS_CREATE_FALSE NULL
312 #else
313 # define LL_VFS_CREATE_FALSE false
314 #endif
315
316 #ifndef HAVE_INODE_LOCK
317 # define inode_lock(inode) mutex_lock(&(inode)->i_mutex)
318 # define inode_unlock(inode) mutex_unlock(&(inode)->i_mutex)
319 # define inode_trylock(inode) mutex_trylock(&(inode)->i_mutex)
320 #endif
321
322 #ifndef HAVE_RADIX_EXCEPTION_ENTRY
323 static inline int radix_tree_exceptional_entry(void *arg)
324 {
325         return 0;
326 }
327 #endif
328
329 #ifndef HAVE_TRUNCATE_INODE_PAGES_FINAL
330 static inline void truncate_inode_pages_final(struct address_space *map)
331 {
332         truncate_inode_pages(map, 0);
333 }
334 #endif
335
336 #ifndef HAVE_PTR_ERR_OR_ZERO
337 static inline int __must_check PTR_ERR_OR_ZERO(__force const void *ptr)
338 {
339         if (IS_ERR(ptr))
340                 return PTR_ERR(ptr);
341         else
342                 return 0;
343 }
344 #endif
345
346 #ifndef SIZE_MAX
347 #define SIZE_MAX        (~(size_t)0)
348 #endif
349
350 #ifdef HAVE_SECURITY_IINITSEC_CALLBACK
351 # define ll_security_inode_init_security(inode, dir, name, value, len, \
352                                          initxattrs, dentry)           \
353          security_inode_init_security(inode, dir, &((dentry)->d_name), \
354                                       initxattrs, dentry)
355 #elif defined HAVE_SECURITY_IINITSEC_QSTR
356 # define ll_security_inode_init_security(inode, dir, name, value, len, \
357                                          initxattrs, dentry)           \
358          security_inode_init_security(inode, dir, &((dentry)->d_name), \
359                                       name, value, len)
360 #else /* !HAVE_SECURITY_IINITSEC_CALLBACK && !HAVE_SECURITY_IINITSEC_QSTR */
361 # define ll_security_inode_init_security(inode, dir, name, value, len, \
362                                          initxattrs, dentry)           \
363          security_inode_init_security(inode, dir, name, value, len)
364 #endif
365
366 #ifndef bio_for_each_segment_all /* since kernel version 3.9 */
367 #ifdef HAVE_BVEC_ITER
368 #define bio_for_each_segment_all(bv, bio, it) \
369         for (it = 0, bv = (bio)->bi_io_vec; it < (bio)->bi_vcnt; it++, bv++)
370 #else
371 #define bio_for_each_segment_all(bv, bio, it) bio_for_each_segment(bv, bio, it)
372 #endif
373 #endif
374
375 #ifdef HAVE_PID_NS_FOR_CHILDREN
376 # define ll_task_pid_ns(task)   ((task)->nsproxy->pid_ns_for_children)
377 #else
378 # define ll_task_pid_ns(task)   ((task)->nsproxy->pid_ns)
379 #endif
380
381 #ifdef HAVE_FULL_NAME_HASH_3ARGS
382 # define ll_full_name_hash(salt, name, len) full_name_hash(salt, name, len)
383 #else
384 # define ll_full_name_hash(salt, name, len) full_name_hash(name, len)
385 #endif
386
387 #ifdef HAVE_STRUCT_POSIX_ACL_XATTR
388 # define posix_acl_xattr_header struct posix_acl_xattr_header
389 # define posix_acl_xattr_entry  struct posix_acl_xattr_entry
390 # define GET_POSIX_ACL_XATTR_ENTRY(head) ((void *)((head) + 1))
391 #else
392 # define GET_POSIX_ACL_XATTR_ENTRY(head) ((head)->a_entries)
393 #endif
394
395 #ifdef HAVE_IOP_XATTR
396 #define ll_setxattr     generic_setxattr
397 #define ll_getxattr     generic_getxattr
398 #define ll_removexattr  generic_removexattr
399 #endif /* HAVE_IOP_XATTR */
400
401 #ifndef HAVE_VFS_SETXATTR
402 const struct xattr_handler *get_xattr_type(const char *name);
403
404 static inline int
405 __vfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
406                const void *value, size_t size, int flags)
407 {
408         const struct xattr_handler *handler;
409         int rc;
410
411         handler = get_xattr_type(name);
412         if (!handler)
413                 return -EOPNOTSUPP;
414
415 #  if defined(HAVE_XATTR_HANDLER_INODE_PARAM)
416         rc = handler->set(handler, dentry, inode, name, value, size, flags);
417 #  elif defined(HAVE_XATTR_HANDLER_SIMPLIFIED)
418         rc = handler->set(handler, dentry, name, value, size, flags);
419 #  else
420         rc = handler->set(dentry, name, value, size, flags, handler->flags);
421 #  endif /* !HAVE_XATTR_HANDLER_INODE_PARAM */
422         return rc;
423 }
424 #endif /* HAVE_VFS_SETXATTR */
425
426 #ifndef HAVE_POSIXACL_USER_NS
427 /*
428  * Mask out &init_user_ns so we don't jump
429  * through hoops to define it somehow only
430  * to have it ignored anyway.
431  */
432 #define posix_acl_from_xattr(a, b, c)   posix_acl_from_xattr(b, c)
433 #define posix_acl_to_xattr(a, b, c, d)  posix_acl_to_xattr(b, c, d)
434 #endif
435
436 #ifndef HAVE_POSIX_ACL_VALID_USER_NS
437 #define posix_acl_valid(a,b)            posix_acl_valid(b)
438 #endif
439
440 #ifdef HAVE_IOP_SET_ACL
441 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
442 #ifndef HAVE_POSIX_ACL_UPDATE_MODE
443 static inline int posix_acl_update_mode(struct inode *inode, umode_t *mode_p,
444                           struct posix_acl **acl)
445 {
446         umode_t mode = inode->i_mode;
447         int error;
448
449         error = posix_acl_equiv_mode(*acl, &mode);
450         if (error < 0)
451                 return error;
452         if (error == 0)
453                 *acl = NULL;
454         if (!in_group_p(inode->i_gid) &&
455             !capable_wrt_inode_uidgid(inode, CAP_FSETID))
456                 mode &= ~S_ISGID;
457         *mode_p = mode;
458         return 0;
459 }
460 #endif /* HAVE_POSIX_ACL_UPDATE_MODE */
461 #endif
462 #endif
463
464 #ifndef HAVE_IOV_ITER_TRUNCATE
465 static inline void iov_iter_truncate(struct iov_iter *i, u64 count)
466 {
467         if (i->count > count)
468                 i->count = count;
469 }
470 #endif
471
472 #ifndef HAVE_IS_SXID
473 static inline bool is_sxid(umode_t mode)
474 {
475         return (mode & S_ISUID) || ((mode & S_ISGID) && (mode & S_IXGRP));
476 }
477 #endif
478
479 #ifndef IS_NOSEC
480 #define IS_NOSEC(inode) (!is_sxid(inode->i_mode))
481 #endif
482
483 /*
484  * mount MS_* flags split from superblock SB_* flags
485  * if the SB_* flags are not available use the MS_* flags
486  */
487 #if !defined(SB_RDONLY) && defined(MS_RDONLY)
488 # define SB_RDONLY MS_RDONLY
489 #endif
490 #if !defined(SB_ACTIVE) && defined(MS_ACTIVE)
491 # define SB_ACTIVE MS_ACTIVE
492 #endif
493 #if !defined(SB_NOSEC) && defined(MS_NOSEC)
494 # define SB_NOSEC MS_NOSEC
495 #endif
496 #if !defined(SB_POSIXACL) && defined(MS_POSIXACL)
497 # define SB_POSIXACL MS_POSIXACL
498 #endif
499 #if !defined(SB_NODIRATIME) && defined(MS_NODIRATIME)
500 # define SB_NODIRATIME MS_NODIRATIME
501 #endif
502
503 #ifndef HAVE_FILE_OPERATIONS_READ_WRITE_ITER
504 static inline void iov_iter_reexpand(struct iov_iter *i, size_t count)
505 {
506         i->count = count;
507 }
508
509 static inline struct iovec iov_iter_iovec(const struct iov_iter *iter)
510 {
511         return (struct iovec) {
512                 .iov_base = iter->iov->iov_base + iter->iov_offset,
513                 .iov_len = min(iter->count,
514                                iter->iov->iov_len - iter->iov_offset),
515         };
516 }
517
518 #define iov_for_each(iov, iter, start)                                  \
519         for (iter = (start);                                            \
520              (iter).count && ((iov = iov_iter_iovec(&(iter))), 1);      \
521              iov_iter_advance(&(iter), (iov).iov_len))
522
523 static inline ssize_t
524 generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
525 {
526         struct iovec iov;
527         struct iov_iter i;
528         ssize_t bytes = 0;
529
530         iov_for_each(iov, i, *iter) {
531                 ssize_t res;
532
533                 res = generic_file_aio_read(iocb, &iov, 1, iocb->ki_pos);
534                 if (res <= 0) {
535                         if (bytes == 0)
536                                 bytes = res;
537                         break;
538                 }
539
540                 bytes += res;
541                 if (res < iov.iov_len)
542                         break;
543         }
544
545         if (bytes > 0)
546                 iov_iter_advance(iter, bytes);
547         return bytes;
548 }
549
550 static inline ssize_t
551 __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *iter)
552 {
553         struct iovec iov;
554         struct iov_iter i;
555         ssize_t bytes = 0;
556
557         /* Since LLITE updates file size at the end of I/O in
558          * vvp_io_commit_write(), append write has to be done in atomic when
559          * there are multiple segments because otherwise each iteration to
560          * __generic_file_aio_write() will see original file size */
561         if (unlikely(iocb->ki_filp->f_flags & O_APPEND && iter->nr_segs > 1)) {
562                 struct iovec *iov_copy;
563                 int count = 0;
564
565                 OBD_ALLOC(iov_copy, sizeof(*iov_copy) * iter->nr_segs);
566                 if (!iov_copy)
567                         return -ENOMEM;
568
569                 iov_for_each(iov, i, *iter)
570                         iov_copy[count++] = iov;
571
572                 bytes = __generic_file_aio_write(iocb, iov_copy, count,
573                                                  &iocb->ki_pos);
574                 OBD_FREE(iov_copy, sizeof(*iov_copy) * iter->nr_segs);
575
576                 if (bytes > 0)
577                         iov_iter_advance(iter, bytes);
578                 return bytes;
579         }
580
581         iov_for_each(iov, i, *iter) {
582                 ssize_t res;
583
584                 res = __generic_file_aio_write(iocb, &iov, 1, &iocb->ki_pos);
585                 if (res <= 0) {
586                         if (bytes == 0)
587                                 bytes = res;
588                         break;
589                 }
590
591                 bytes += res;
592                 if (res < iov.iov_len)
593                         break;
594         }
595
596         if (bytes > 0)
597                 iov_iter_advance(iter, bytes);
598         return bytes;
599 }
600 #endif /* HAVE_FILE_OPERATIONS_READ_WRITE_ITER */
601
602 static inline void __user *get_vmf_address(struct vm_fault *vmf)
603 {
604 #ifdef HAVE_VM_FAULT_ADDRESS
605         return (void __user *)vmf->address;
606 #else
607         return vmf->virtual_address;
608 #endif
609 }
610
611 #ifdef HAVE_VM_OPS_USE_VM_FAULT_ONLY
612 # define ll_filemap_fault(vma, vmf) filemap_fault(vmf)
613 #else
614 # define ll_filemap_fault(vma, vmf) filemap_fault(vma, vmf)
615 #endif
616
617 #ifndef HAVE_CURRENT_TIME
618 static inline struct timespec current_time(struct inode *inode)
619 {
620         return CURRENT_TIME;
621 }
622 #endif
623
624 #ifndef time_after32
625 /**
626  * time_after32 - compare two 32-bit relative times
627  * @a: the time which may be after @b
628  * @b: the time which may be before @a
629  *
630  * time_after32(a, b) returns true if the time @a is after time @b.
631  * time_before32(b, a) returns true if the time @b is before time @a.
632  *
633  * Similar to time_after(), compare two 32-bit timestamps for relative
634  * times.  This is useful for comparing 32-bit seconds values that can't
635  * be converted to 64-bit values (e.g. due to disk format or wire protocol
636  * issues) when it is known that the times are less than 68 years apart.
637  */
638 #define time_after32(a, b)     ((s32)((u32)(b) - (u32)(a)) < 0)
639 #define time_before32(b, a)    time_after32(a, b)
640
641 #endif
642
643 #ifndef __GFP_COLD
644 #define __GFP_COLD 0
645 #endif
646
647 #ifndef alloc_workqueue
648 #define alloc_workqueue(name, flags, max_active) create_workqueue(name)
649 #endif
650
651 #ifndef smp_store_mb
652 #define smp_store_mb(var, value)        set_mb(var, value)
653 #endif
654
655 #ifndef READ_ONCE
656 #define READ_ONCE ACCESS_ONCE
657 #endif
658
659 #if IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY)
660 static inline unsigned short blk_integrity_interval(struct blk_integrity *bi)
661 {
662 #ifdef HAVE_INTERVAL_EXP_BLK_INTEGRITY
663         return bi->interval_exp ? 1 << bi->interval_exp : 0;
664 #elif defined(HAVE_INTERVAL_BLK_INTEGRITY)
665         return bi->interval;
666 #else
667         return bi->sector_size;
668 #endif /* !HAVE_INTERVAL_EXP_BLK_INTEGRITY */
669 }
670
671 static inline const char *blk_integrity_name(struct blk_integrity *bi)
672 {
673 #ifdef HAVE_INTERVAL_EXP_BLK_INTEGRITY
674         return bi->profile->name;
675 #else
676         return bi->name;
677 #endif
678 }
679
680 static inline unsigned int bip_size(struct bio_integrity_payload *bip)
681 {
682 #ifdef HAVE_BIP_ITER_BIO_INTEGRITY_PAYLOAD
683         return bip->bip_iter.bi_size;
684 #else
685         return bip->bip_size;
686 #endif
687 }
688 #else /* !CONFIG_BLK_DEV_INTEGRITY */
689 static inline unsigned short blk_integrity_interval(struct blk_integrity *bi)
690 {
691         return 0;
692 }
693 static inline const char *blk_integrity_name(struct blk_integrity *bi)
694 {
695         /* gcc8 dislikes when strcmp() is called against NULL */
696         return "";
697 }
698 #endif /* !CONFIG_BLK_DEV_INTEGRITY */
699
700 #ifndef INTEGRITY_FLAG_READ
701 #define INTEGRITY_FLAG_READ BLK_INTEGRITY_VERIFY
702 #endif
703
704 #ifndef INTEGRITY_FLAG_WRITE
705 #define INTEGRITY_FLAG_WRITE BLK_INTEGRITY_GENERATE
706 #endif
707
708 static inline bool bdev_integrity_enabled(struct block_device *bdev, int rw)
709 {
710 #if IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY)
711         struct blk_integrity *bi = bdev_get_integrity(bdev);
712
713         if (bi == NULL)
714                 return false;
715
716 #ifdef HAVE_INTERVAL_EXP_BLK_INTEGRITY
717         if (rw == 0 && bi->profile->verify_fn != NULL &&
718             (bi->flags & INTEGRITY_FLAG_READ))
719                 return true;
720
721         if (rw == 1 && bi->profile->generate_fn != NULL &&
722             (bi->flags & INTEGRITY_FLAG_WRITE))
723                 return true;
724 #else
725         if (rw == 0 && bi->verify_fn != NULL &&
726             (bi->flags & INTEGRITY_FLAG_READ))
727                 return true;
728
729         if (rw == 1 && bi->generate_fn != NULL &&
730             (bi->flags & INTEGRITY_FLAG_WRITE))
731                 return true;
732 #endif /* !HAVE_INTERVAL_EXP_BLK_INTEGRITY */
733 #endif /* !CONFIG_BLK_DEV_INTEGRITY */
734
735         return false;
736 }
737
738 #ifdef HAVE_PAGEVEC_INIT_ONE_PARAM
739 #define ll_pagevec_init(pvec, n) pagevec_init(pvec)
740 #else
741 #define ll_pagevec_init(pvec, n) pagevec_init(pvec, n)
742 #endif
743
744 #ifdef HAVE_D_COUNT
745 #  define ll_d_count(d)         d_count(d)
746 #else
747 #  define ll_d_count(d)         ((d)->d_count)
748 #endif /* HAVE_D_COUNT */
749
750 #ifndef HAVE_IN_COMPAT_SYSCALL
751 #define in_compat_syscall       is_compat_task
752 #endif
753
754 #ifdef HAVE_I_PAGES
755 #define page_tree i_pages
756 #else
757 #define i_pages tree_lock
758 #endif
759
760 #ifndef xa_lock_irqsave
761 #define xa_lock_irqsave(lockp, flags) spin_lock_irqsave(lockp, flags)
762 #define xa_unlock_irqrestore(lockp, flags) spin_unlock_irqrestore(lockp, flags)
763 #endif
764
765 #ifndef HAVE_LOCK_PAGE_MEMCG
766 #define lock_page_memcg(page) do {} while (0)
767 #define unlock_page_memcg(page) do {} while (0)
768 #endif
769
770 #ifndef KMEM_CACHE_USERCOPY
771 #define kmem_cache_create_usercopy(name, size, align, flags, useroffset, \
772                                    usersize, ctor)                       \
773         kmem_cache_create(name, size, align, flags, ctor)
774 #endif
775
776 #ifndef HAVE_LINUX_SELINUX_IS_ENABLED
777 #define selinux_is_enabled() 1
778 #endif
779
780 #endif /* _LUSTRE_COMPAT_H */