Whamcloud - gitweb
LU-11079 llite: control concurrent statahead instances
[fs/lustre-release.git] / lustre / llite / llite_internal.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, 2016, 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 LLITE_INTERNAL_H
34 #define LLITE_INTERNAL_H
35 #include <lustre_debug.h>
36 #include <lustre_ver.h>
37 #include <lustre_disk.h>  /* for s2sbi */
38 #include <lustre_eacl.h>
39 #include <lustre_linkea.h>
40
41 /* for struct cl_lock_descr and struct cl_io */
42 #include <cl_object.h>
43 #include <lustre_lmv.h>
44 #include <lustre_mdc.h>
45 #include <lustre_intent.h>
46 #include <linux/compat.h>
47 #include <linux/aio.h>
48
49 #include <lustre_compat.h>
50 #include "vvp_internal.h"
51 #include "range_lock.h"
52
53 #ifndef FMODE_EXEC
54 #define FMODE_EXEC 0
55 #endif
56
57 #ifndef VM_FAULT_RETRY
58 #define VM_FAULT_RETRY 0
59 #endif
60
61 /* Kernel 3.1 kills LOOKUP_CONTINUE, LOOKUP_PARENT is equivalent to it.
62  * seem kernel commit 49084c3bb2055c401f3493c13edae14d49128ca0 */
63 #ifndef LOOKUP_CONTINUE
64 #define LOOKUP_CONTINUE LOOKUP_PARENT
65 #endif
66
67 /** Only used on client-side for indicating the tail of dir hash/offset. */
68 #define LL_DIR_END_OFF          0x7fffffffffffffffULL
69 #define LL_DIR_END_OFF_32BIT    0x7fffffffUL
70
71 /* 4UL * 1024 * 1024 */
72 #define LL_MAX_BLKSIZE_BITS 22
73
74 #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0")
75 #define LUSTRE_FPRIVATE(file) ((file)->private_data)
76
77 struct ll_dentry_data {
78         struct lookup_intent            *lld_it;
79         unsigned int                    lld_sa_generation;
80         unsigned int                    lld_invalid:1;
81         unsigned int                    lld_nfs_dentry:1;
82         struct rcu_head                 lld_rcu_head;
83 };
84
85 #define ll_d2d(de) ((struct ll_dentry_data*)((de)->d_fsdata))
86
87 #define LLI_INODE_MAGIC                 0x111d0de5
88 #define LLI_INODE_DEAD                  0xdeadd00d
89
90 struct ll_getname_data {
91 #ifdef HAVE_DIR_CONTEXT
92         struct dir_context      ctx;
93 #endif
94         char            *lgd_name;      /* points to a buffer with NAME_MAX+1 size */
95         struct lu_fid   lgd_fid;        /* target fid we are looking for */
96         int             lgd_found;      /* inode matched? */
97 };
98
99 struct ll_grouplock {
100         struct lu_env   *lg_env;
101         struct cl_io    *lg_io;
102         struct cl_lock  *lg_lock;
103         unsigned long    lg_gid;
104 };
105
106 struct ll_inode_info {
107         __u32                           lli_inode_magic;
108         spinlock_t                      lli_lock;
109
110         volatile unsigned long          lli_flags;
111         struct posix_acl                *lli_posix_acl;
112
113         /* identifying fields for both metadata and data stacks. */
114         struct lu_fid                   lli_fid;
115         /* master inode fid for stripe directory */
116         struct lu_fid                   lli_pfid;
117
118         /* We need all three because every inode may be opened in different
119          * modes */
120         struct obd_client_handle       *lli_mds_read_och;
121         struct obd_client_handle       *lli_mds_write_och;
122         struct obd_client_handle       *lli_mds_exec_och;
123         __u64                           lli_open_fd_read_count;
124         __u64                           lli_open_fd_write_count;
125         __u64                           lli_open_fd_exec_count;
126         /* Protects access to och pointers and their usage counters */
127         struct mutex                    lli_och_mutex;
128
129         struct inode                    lli_vfs_inode;
130
131         /* the most recent timestamps obtained from mds */
132         s64                             lli_atime;
133         s64                             lli_mtime;
134         s64                             lli_ctime;
135         spinlock_t                      lli_agl_lock;
136
137         /* update atime from MDS no matter if it's older than
138          * local inode atime. */
139         unsigned int    lli_update_atime:1,
140                         lli_inode_locked:1;
141
142         /* Try to make the d::member and f::member are aligned. Before using
143          * these members, make clear whether it is directory or not. */
144         union {
145                 /* for directory */
146                 struct {
147                         /* serialize normal readdir and statahead-readdir. */
148                         struct mutex                    lli_readdir_mutex;
149
150                         /* metadata statahead */
151                         /* since parent-child threads can share the same @file
152                          * struct, "opendir_key" is the token when dir close for
153                          * case of parent exit before child -- it is me should
154                          * cleanup the dir readahead. */
155                         void                           *lli_opendir_key;
156                         struct ll_statahead_info       *lli_sai;
157                         /* protect statahead stuff. */
158                         spinlock_t                      lli_sa_lock;
159                         /* "opendir_pid" is the token when lookup/revalid
160                          * -- I am the owner of dir statahead. */
161                         pid_t                           lli_opendir_pid;
162                         /* stat will try to access statahead entries or start
163                          * statahead if this flag is set, and this flag will be
164                          * set upon dir open, and cleared when dir is closed,
165                          * statahead hit ratio is too low, or start statahead
166                          * thread failed. */
167                         unsigned int                    lli_sa_enabled:1;
168                         /* generation for statahead */
169                         unsigned int                    lli_sa_generation;
170                         /* directory stripe information */
171                         struct lmv_stripe_md            *lli_lsm_md;
172                         /* default directory stripe offset.  This is extracted
173                          * from the "dmv" xattr in order to decide which MDT to
174                          * create a subdirectory on.  The MDS itself fetches
175                          * "dmv" and gets the rest of the default layout itself
176                          * (count, hash, etc). */
177                         __u32                           lli_def_stripe_offset;
178                 };
179
180                 /* for non-directory */
181                 struct {
182                         struct mutex                    lli_size_mutex;
183                         char                           *lli_symlink_name;
184                         /*
185                          * struct rw_semaphore {
186                          *    signed long       count;     // align d.d_def_acl
187                          *    spinlock_t        wait_lock; // align d.d_sa_lock
188                          *    struct list_head wait_list;
189                          * }
190                          */
191                         struct rw_semaphore             lli_trunc_sem;
192                         struct range_lock_tree          lli_write_tree;
193
194                         struct rw_semaphore             lli_glimpse_sem;
195                         cfs_time_t                      lli_glimpse_time;
196                         struct list_head                lli_agl_list;
197                         __u64                           lli_agl_index;
198
199                         /* for writepage() only to communicate to fsync */
200                         int                             lli_async_rc;
201
202                         /*
203                          * whenever a process try to read/write the file, the
204                          * jobid of the process will be saved here, and it'll
205                          * be packed into the write PRC when flush later.
206                          *
207                          * so the read/write statistics for jobid will not be
208                          * accurate if the file is shared by different jobs.
209                          */
210                         char                    lli_jobid[LUSTRE_JOBID_SIZE];
211                 };
212         };
213
214         /* XXX: For following frequent used members, although they maybe special
215          *      used for non-directory object, it is some time-wasting to check
216          *      whether the object is directory or not before using them. On the
217          *      other hand, currently, sizeof(f) > sizeof(d), it cannot reduce
218          *      the "ll_inode_info" size even if moving those members into u.f.
219          *      So keep them out side.
220          *
221          *      In the future, if more members are added only for directory,
222          *      some of the following members can be moved into u.f.
223          */
224         struct cl_object                *lli_clob;
225
226         /* mutex to request for layout lock exclusively. */
227         struct mutex                    lli_layout_mutex;
228         /* Layout version, protected by lli_layout_lock */
229         __u32                           lli_layout_gen;
230         spinlock_t                      lli_layout_lock;
231
232         __u32                           lli_projid;   /* project id */
233
234         struct rw_semaphore             lli_xattrs_list_rwsem;
235         struct mutex                    lli_xattrs_enq_lock;
236         struct list_head                lli_xattrs; /* ll_xattr_entry->xe_list */
237 };
238
239 static inline __u32 ll_layout_version_get(struct ll_inode_info *lli)
240 {
241         __u32 gen;
242
243         spin_lock(&lli->lli_layout_lock);
244         gen = lli->lli_layout_gen;
245         spin_unlock(&lli->lli_layout_lock);
246
247         return gen;
248 }
249
250 static inline void ll_layout_version_set(struct ll_inode_info *lli, __u32 gen)
251 {
252         spin_lock(&lli->lli_layout_lock);
253         lli->lli_layout_gen = gen;
254         spin_unlock(&lli->lli_layout_lock);
255 }
256
257 enum ll_file_flags {
258         /* File data is modified. */
259         LLIF_DATA_MODIFIED      = 0,
260         /* File is being restored */
261         LLIF_FILE_RESTORING     = 1,
262         /* Xattr cache is attached to the file */
263         LLIF_XATTR_CACHE        = 2,
264 };
265
266 static inline void ll_file_set_flag(struct ll_inode_info *lli,
267                                     enum ll_file_flags flag)
268 {
269         set_bit(flag, &lli->lli_flags);
270 }
271
272 static inline void ll_file_clear_flag(struct ll_inode_info *lli,
273                                       enum ll_file_flags flag)
274 {
275         clear_bit(flag, &lli->lli_flags);
276 }
277
278 static inline bool ll_file_test_flag(struct ll_inode_info *lli,
279                                      enum ll_file_flags flag)
280 {
281         return test_bit(flag, &lli->lli_flags);
282 }
283
284 static inline bool ll_file_test_and_clear_flag(struct ll_inode_info *lli,
285                                                enum ll_file_flags flag)
286 {
287         return test_and_clear_bit(flag, &lli->lli_flags);
288 }
289
290 int ll_xattr_cache_destroy(struct inode *inode);
291
292 int ll_xattr_cache_get(struct inode *inode,
293                         const char *name,
294                         char *buffer,
295                         size_t size,
296                         __u64 valid);
297
298 int ll_dentry_init_security(struct dentry *dentry, int mode, struct qstr *name,
299                             const char **secctx_name, void **secctx,
300                             __u32 *secctx_size);
301 int ll_inode_init_security(struct dentry *dentry, struct inode *inode,
302                            struct inode *dir);
303
304 /*
305  * Locking to guarantee consistency of non-atomic updates to long long i_size,
306  * consistency between file size and KMS.
307  *
308  * Implemented by ->lli_size_mutex and ->lsm_lock, nested in that order.
309  */
310
311 void ll_inode_size_lock(struct inode *inode);
312 void ll_inode_size_unlock(struct inode *inode);
313
314 // FIXME: replace the name of this with LL_I to conform to kernel stuff
315 // static inline struct ll_inode_info *LL_I(struct inode *inode)
316 static inline struct ll_inode_info *ll_i2info(struct inode *inode)
317 {
318         return container_of(inode, struct ll_inode_info, lli_vfs_inode);
319 }
320
321 /* default to about 64M of readahead on a given system. */
322 #define SBI_DEFAULT_READAHEAD_MAX       (64UL << (20 - PAGE_SHIFT))
323
324 /* default to read-ahead full files smaller than 2MB on the second read */
325 #define SBI_DEFAULT_READAHEAD_WHOLE_MAX (2UL << (20 - PAGE_SHIFT))
326
327 enum ra_stat {
328         RA_STAT_HIT = 0,
329         RA_STAT_MISS,
330         RA_STAT_DISTANT_READPAGE,
331         RA_STAT_MISS_IN_WINDOW,
332         RA_STAT_FAILED_GRAB_PAGE,
333         RA_STAT_FAILED_MATCH,
334         RA_STAT_DISCARDED,
335         RA_STAT_ZERO_LEN,
336         RA_STAT_ZERO_WINDOW,
337         RA_STAT_EOF,
338         RA_STAT_MAX_IN_FLIGHT,
339         RA_STAT_WRONG_GRAB_PAGE,
340         RA_STAT_FAILED_REACH_END,
341         _NR_RA_STAT,
342 };
343
344 struct ll_ra_info {
345         atomic_t        ra_cur_pages;
346         unsigned long   ra_max_pages;
347         unsigned long   ra_max_pages_per_file;
348         unsigned long   ra_max_read_ahead_whole_pages;
349 };
350
351 /* ra_io_arg will be filled in the beginning of ll_readahead with
352  * ras_lock, then the following ll_read_ahead_pages will read RA
353  * pages according to this arg, all the items in this structure are
354  * counted by page index.
355  */
356 struct ra_io_arg {
357         unsigned long ria_start;  /* start offset of read-ahead*/
358         unsigned long ria_end;    /* end offset of read-ahead*/
359         unsigned long ria_reserved; /* reserved pages for read-ahead */
360         unsigned long ria_end_min;  /* minimum end to cover current read */
361         bool          ria_eof;    /* reach end of file */
362         /* If stride read pattern is detected, ria_stoff means where
363          * stride read is started. Note: for normal read-ahead, the
364          * value here is meaningless, and also it will not be accessed*/
365         pgoff_t ria_stoff;
366         /* ria_length and ria_pages are the length and pages length in the
367          * stride I/O mode. And they will also be used to check whether
368          * it is stride I/O read-ahead in the read-ahead pages*/
369         unsigned long ria_length;
370         unsigned long ria_pages;
371 };
372
373 /* LL_HIST_MAX=32 causes an overflow */
374 #define LL_HIST_MAX 28
375 #define LL_HIST_START 12 /* buckets start at 2^12 = 4k */
376 #define LL_PROCESS_HIST_MAX 10
377 struct per_process_info {
378         pid_t pid;
379         struct obd_histogram pp_r_hist;
380         struct obd_histogram pp_w_hist;
381 };
382
383 /* pp_extents[LL_PROCESS_HIST_MAX] will hold the combined process info */
384 struct ll_rw_extents_info {
385         struct per_process_info pp_extents[LL_PROCESS_HIST_MAX + 1];
386 };
387
388 #define LL_OFFSET_HIST_MAX 100
389 struct ll_rw_process_info {
390         pid_t                     rw_pid;
391         int                       rw_op;
392         loff_t                    rw_range_start;
393         loff_t                    rw_range_end;
394         loff_t                    rw_last_file_pos;
395         loff_t                    rw_offset;
396         size_t                    rw_smallest_extent;
397         size_t                    rw_largest_extent;
398         struct ll_file_data      *rw_last_file;
399 };
400
401 enum stats_track_type {
402         STATS_TRACK_ALL = 0,  /* track all processes */
403         STATS_TRACK_PID,      /* track process with this pid */
404         STATS_TRACK_PPID,     /* track processes with this ppid */
405         STATS_TRACK_GID,      /* track processes with this gid */
406         STATS_TRACK_LAST,
407 };
408
409 /* flags for sbi->ll_flags */
410 #define LL_SBI_NOLCK             0x01 /* DLM locking disabled (directio-only) */
411 #define LL_SBI_CHECKSUM          0x02 /* checksum each page as it's written */
412 #define LL_SBI_FLOCK             0x04
413 #define LL_SBI_USER_XATTR        0x08 /* support user xattr */
414 #define LL_SBI_ACL               0x10 /* support ACL */
415 /*      LL_SBI_RMT_CLIENT        0x40    remote client */
416 #define LL_SBI_MDS_CAPA          0x80 /* support mds capa, obsolete */
417 #define LL_SBI_OSS_CAPA         0x100 /* support oss capa, obsolete */
418 #define LL_SBI_LOCALFLOCK       0x200 /* Local flocks support by kernel */
419 #define LL_SBI_LRU_RESIZE       0x400 /* lru resize support */
420 #define LL_SBI_LAZYSTATFS       0x800 /* lazystatfs mount option */
421 /*      LL_SBI_SOM_PREVIEW     0x1000    SOM preview mount option, obsolete */
422 #define LL_SBI_32BIT_API       0x2000 /* generate 32 bit inodes. */
423 #define LL_SBI_64BIT_HASH      0x4000 /* support 64-bits dir hash/offset */
424 #define LL_SBI_AGL_ENABLED     0x8000 /* enable agl */
425 #define LL_SBI_VERBOSE        0x10000 /* verbose mount/umount */
426 #define LL_SBI_LAYOUT_LOCK    0x20000 /* layout lock support */
427 #define LL_SBI_USER_FID2PATH  0x40000 /* allow fid2path by unprivileged users */
428 #define LL_SBI_XATTR_CACHE    0x80000 /* support for xattr cache */
429 #define LL_SBI_NOROOTSQUASH  0x100000 /* do not apply root squash */
430 #define LL_SBI_ALWAYS_PING   0x200000 /* always ping even if server
431                                        * suppress_pings */
432 #define LL_SBI_FAST_READ     0x400000 /* fast read support */
433 #define LL_SBI_FILE_SECCTX   0x800000 /* set file security context at create */
434 #define LL_SBI_PIO          0x1000000 /* parallel IO support */
435
436 #define LL_SBI_FLAGS {  \
437         "nolck",        \
438         "checksum",     \
439         "flock",        \
440         "user_xattr",   \
441         "acl",          \
442         "???",          \
443         "???",          \
444         "mds_capa",     \
445         "oss_capa",     \
446         "flock",        \
447         "lru_resize",   \
448         "lazy_statfs",  \
449         "som",          \
450         "32bit_api",    \
451         "64bit_hash",   \
452         "agl",          \
453         "verbose",      \
454         "layout",       \
455         "user_fid2path",\
456         "xattr_cache",  \
457         "norootsquash", \
458         "always_ping",  \
459         "fast_read",    \
460         "file_secctx",  \
461         "pio",          \
462 }
463
464 /* This is embedded into llite super-blocks to keep track of connect
465  * flags (capabilities) supported by all imports given mount is
466  * connected to. */
467 struct lustre_client_ocd {
468         /* This is conjunction of connect_flags across all imports
469          * (LOVs) this mount is connected to. This field is updated by
470          * cl_ocd_update() under ->lco_lock. */
471         __u64                    lco_flags;
472         struct mutex             lco_lock;
473         struct obd_export       *lco_md_exp;
474         struct obd_export       *lco_dt_exp;
475 };
476
477 struct ll_sb_info {
478         /* this protects pglist and ra_info.  It isn't safe to
479          * grab from interrupt contexts */
480         spinlock_t                ll_lock;
481         spinlock_t                ll_pp_extent_lock; /* pp_extent entry*/
482         spinlock_t                ll_process_lock; /* ll_rw_process_info */
483         struct obd_uuid           ll_sb_uuid;
484         struct obd_export        *ll_md_exp;
485         struct obd_export        *ll_dt_exp;
486         struct proc_dir_entry*    ll_proc_root;
487         struct lu_fid             ll_root_fid; /* root object fid */
488
489         int                       ll_flags;
490         unsigned int              ll_umounting:1,
491                                   ll_xattr_cache_enabled:1,
492                                   ll_xattr_cache_set:1, /* already set to 0/1 */
493                                   ll_client_common_fill_super_succeeded:1;
494
495         struct lustre_client_ocd  ll_lco;
496
497         struct lprocfs_stats     *ll_stats; /* lprocfs stats counter */
498
499         /* Used to track "unstable" pages on a client, and maintain a
500          * LRU list of clean pages. An "unstable" page is defined as
501          * any page which is sent to a server as part of a bulk request,
502          * but is uncommitted to stable storage. */
503         struct cl_client_cache   *ll_cache;
504
505         struct lprocfs_stats     *ll_ra_stats;
506
507         struct ll_ra_info         ll_ra_info;
508         unsigned int              ll_namelen;
509         struct file_operations   *ll_fop;
510
511         struct lu_site           *ll_site;
512         struct cl_device         *ll_cl;
513         /* Statistics */
514         struct ll_rw_extents_info ll_rw_extents_info;
515         int                       ll_extent_process_count;
516         struct ll_rw_process_info ll_rw_process_info[LL_PROCESS_HIST_MAX];
517         unsigned int              ll_offset_process_count;
518         struct ll_rw_process_info ll_rw_offset_info[LL_OFFSET_HIST_MAX];
519         unsigned int              ll_rw_offset_entry_count;
520         int                       ll_stats_track_id;
521         enum stats_track_type     ll_stats_track_type;
522         int                       ll_rw_stats_on;
523
524         /* metadata stat-ahead */
525         unsigned int              ll_sa_running_max;/* max concurrent
526                                                      * statahead instances */
527         unsigned int              ll_sa_max;     /* max statahead RPCs */
528         atomic_t                  ll_sa_total;   /* statahead thread started
529                                                   * count */
530         atomic_t                  ll_sa_wrong;   /* statahead thread stopped for
531                                                   * low hit ratio */
532         atomic_t                  ll_sa_running; /* running statahead thread
533                                                   * count */
534         atomic_t                  ll_agl_total;  /* AGL thread started count */
535
536         dev_t                     ll_sdev_orig; /* save s_dev before assign for
537                                                  * clustred nfs */
538         /* root squash */
539         struct root_squash_info   ll_squash;
540         struct path               ll_mnt;
541
542         /* st_blksize returned by stat(2), when non-zero */
543         unsigned int              ll_stat_blksize;
544 };
545
546 /*
547  * per file-descriptor read-ahead data.
548  */
549 struct ll_readahead_state {
550         spinlock_t  ras_lock;
551         /*
552          * index of the last page that read(2) needed and that wasn't in the
553          * cache. Used by ras_update() to detect seeks.
554          *
555          * XXX nikita: if access seeks into cached region, Lustre doesn't see
556          * this.
557          */
558         unsigned long   ras_last_readpage;
559         /*
560          * number of pages read after last read-ahead window reset. As window
561          * is reset on each seek, this is effectively a number of consecutive
562          * accesses. Maybe ->ras_accessed_in_window is better name.
563          *
564          * XXX nikita: window is also reset (by ras_update()) when Lustre
565          * believes that memory pressure evicts read-ahead pages. In that
566          * case, it probably doesn't make sense to expand window to
567          * PTLRPC_MAX_BRW_PAGES on the third access.
568          */
569         unsigned long   ras_consecutive_pages;
570         /*
571          * number of read requests after the last read-ahead window reset
572          * As window is reset on each seek, this is effectively the number
573          * on consecutive read request and is used to trigger read-ahead.
574          */
575         unsigned long   ras_consecutive_requests;
576         /*
577          * Parameters of current read-ahead window. Handled by
578          * ras_update(). On the initial access to the file or after a seek,
579          * window is reset to 0. After 3 consecutive accesses, window is
580          * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
581          * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
582          */
583         unsigned long   ras_window_start, ras_window_len;
584         /*
585          * Optimal RPC size. It decides how many pages will be sent
586          * for each read-ahead.
587          */
588         unsigned long   ras_rpc_size;
589         /*
590          * Where next read-ahead should start at. This lies within read-ahead
591          * window. Read-ahead window is read in pieces rather than at once
592          * because: 1. lustre limits total number of pages under read-ahead by
593          * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
594          * not covered by DLM lock.
595          */
596         unsigned long   ras_next_readahead;
597         /*
598          * Total number of ll_file_read requests issued, reads originating
599          * due to mmap are not counted in this total.  This value is used to
600          * trigger full file read-ahead after multiple reads to a small file.
601          */
602         unsigned long   ras_requests;
603         /*
604          * Page index with respect to the current request, these value
605          * will not be accurate when dealing with reads issued via mmap.
606          */
607         unsigned long   ras_request_index;
608         /*
609          * The following 3 items are used for detecting the stride I/O
610          * mode.
611          * In stride I/O mode,
612          * ...............|-----data-----|****gap*****|--------|******|....
613          *    offset      |-stride_pages-|-stride_gap-|
614          * ras_stride_offset = offset;
615          * ras_stride_length = stride_pages + stride_gap;
616          * ras_stride_pages = stride_pages;
617          * Note: all these three items are counted by pages.
618          */
619         unsigned long   ras_stride_length;
620         unsigned long   ras_stride_pages;
621         pgoff_t         ras_stride_offset;
622         /*
623          * number of consecutive stride request count, and it is similar as
624          * ras_consecutive_requests, but used for stride I/O mode.
625          * Note: only more than 2 consecutive stride request are detected,
626          * stride read-ahead will be enable
627          */
628         unsigned long   ras_consecutive_stride_requests;
629 };
630
631 extern struct kmem_cache *ll_file_data_slab;
632 struct lustre_handle;
633 struct ll_file_data {
634         struct ll_readahead_state fd_ras;
635         struct ll_grouplock fd_grouplock;
636         __u64 lfd_pos;
637         __u32 fd_flags;
638         fmode_t fd_omode;
639         /* openhandle if lease exists for this file.
640          * Borrow lli->lli_och_mutex to protect assignment */
641         struct obd_client_handle *fd_lease_och;
642         struct obd_client_handle *fd_och;
643         struct file *fd_file;
644         /* Indicate whether need to report failure when close.
645          * true: failure is known, not report again.
646          * false: unknown failure, should report. */
647         bool fd_write_failed;
648         rwlock_t fd_lock; /* protect lcc list */
649         struct list_head fd_lccs; /* list of ll_cl_context */
650 };
651
652 extern struct proc_dir_entry *proc_lustre_fs_root;
653
654 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
655 {
656         return &lli->lli_vfs_inode;
657 }
658
659 __u32 ll_i2suppgid(struct inode *i);
660 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
661
662 static inline int ll_need_32bit_api(struct ll_sb_info *sbi)
663 {
664 #if BITS_PER_LONG == 32
665         return 1;
666 #elif defined(CONFIG_COMPAT)
667         if (unlikely(sbi->ll_flags & LL_SBI_32BIT_API))
668                 return true;
669
670 # ifdef CONFIG_X86_X32
671         /* in_compat_syscall() returns true when called from a kthread
672          * and CONFIG_X86_X32 is enabled, which is wrong. So check
673          * whether the caller comes from a syscall (ie. not a kthread)
674          * before calling in_compat_syscall(). */
675         if (current->flags & PF_KTHREAD)
676                 return false;
677 # endif
678
679         return unlikely(in_compat_syscall());
680 #else
681         return unlikely(sbi->ll_flags & LL_SBI_32BIT_API);
682 #endif
683 }
684
685 static inline bool ll_sbi_has_fast_read(struct ll_sb_info *sbi)
686 {
687         return !!(sbi->ll_flags & LL_SBI_FAST_READ);
688 }
689
690 void ll_ras_enter(struct file *f);
691
692 /* llite/lcommon_misc.c */
693 int cl_ocd_update(struct obd_device *host, struct obd_device *watched,
694                   enum obd_notify_event ev, void *owner);
695 int cl_get_grouplock(struct cl_object *obj, unsigned long gid, int nonblock,
696                      struct ll_grouplock *lg);
697 void cl_put_grouplock(struct ll_grouplock *lg);
698
699 /* llite/lproc_llite.c */
700 #ifdef CONFIG_PROC_FS
701 int lprocfs_ll_register_mountpoint(struct proc_dir_entry *parent,
702                                    struct super_block *sb);
703 int lprocfs_ll_register_obd(struct super_block *sb, const char *obdname);
704 void lprocfs_ll_unregister_mountpoint(struct ll_sb_info *sbi);
705 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count);
706 extern struct lprocfs_vars lprocfs_llite_obd_vars[];
707 #else
708 static inline int lprocfs_ll_register_mountpoint(struct proc_dir_entry *parent,
709                                         struct super_block *sb) {return 0; }
710 static inline int lprocfs_ll_register_obd(struct super_block *sb,
711                                           const char *obdname) {return 0; }
712 static inline void lprocfs_ll_unregister_mountpoint(struct ll_sb_info *sbi) {}
713 static void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count) {}
714 #endif
715
716 enum {
717         LPROC_LL_DIRTY_HITS,
718         LPROC_LL_DIRTY_MISSES,
719         LPROC_LL_READ_BYTES,
720         LPROC_LL_WRITE_BYTES,
721         LPROC_LL_BRW_READ,
722         LPROC_LL_BRW_WRITE,
723         LPROC_LL_IOCTL,
724         LPROC_LL_OPEN,
725         LPROC_LL_RELEASE,
726         LPROC_LL_MAP,
727         LPROC_LL_FAULT,
728         LPROC_LL_MKWRITE,
729         LPROC_LL_LLSEEK,
730         LPROC_LL_FSYNC,
731         LPROC_LL_READDIR,
732         LPROC_LL_SETATTR,
733         LPROC_LL_TRUNC,
734         LPROC_LL_FLOCK,
735         LPROC_LL_GETATTR,
736         LPROC_LL_CREATE,
737         LPROC_LL_LINK,
738         LPROC_LL_UNLINK,
739         LPROC_LL_SYMLINK,
740         LPROC_LL_MKDIR,
741         LPROC_LL_RMDIR,
742         LPROC_LL_MKNOD,
743         LPROC_LL_RENAME,
744         LPROC_LL_STAFS,
745         LPROC_LL_ALLOC_INODE,
746         LPROC_LL_SETXATTR,
747         LPROC_LL_GETXATTR,
748         LPROC_LL_GETXATTR_HITS,
749         LPROC_LL_LISTXATTR,
750         LPROC_LL_REMOVEXATTR,
751         LPROC_LL_INODE_PERM,
752         LPROC_LL_FILE_OPCODES
753 };
754
755 /* llite/dir.c */
756 struct ll_dir_chain {
757 };
758
759 static inline void ll_dir_chain_init(struct ll_dir_chain *chain)
760 {
761 }
762
763 static inline void ll_dir_chain_fini(struct ll_dir_chain *chain)
764 {
765 }
766
767 extern const struct file_operations ll_dir_operations;
768 extern const struct inode_operations ll_dir_inode_operations;
769 #ifdef HAVE_DIR_CONTEXT
770 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
771                 struct dir_context *ctx);
772 #else
773 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
774                 void *cookie, filldir_t filldir);
775 #endif
776 int ll_get_mdt_idx(struct inode *inode);
777 int ll_get_mdt_idx_by_fid(struct ll_sb_info *sbi, const struct lu_fid *fid);
778 struct page *ll_get_dir_page(struct inode *dir, struct md_op_data *op_data,
779                              __u64 offset, struct ll_dir_chain *chain);
780 void ll_release_page(struct inode *inode, struct page *page, bool remove);
781
782 /* llite/namei.c */
783 extern const struct inode_operations ll_special_inode_operations;
784
785 struct inode *ll_iget(struct super_block *sb, ino_t hash,
786                       struct lustre_md *lic);
787 int ll_test_inode_by_fid(struct inode *inode, void *opaque);
788 int ll_md_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
789                        void *data, int flag);
790 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de);
791 int ll_rmdir_entry(struct inode *dir, char *name, int namelen);
792 void ll_update_times(struct ptlrpc_request *request, struct inode *inode);
793
794 /* llite/rw.c */
795 int ll_writepage(struct page *page, struct writeback_control *wbc);
796 int ll_writepages(struct address_space *, struct writeback_control *wbc);
797 int ll_readpage(struct file *file, struct page *page);
798 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
799 int vvp_io_write_commit(const struct lu_env *env, struct cl_io *io);
800
801 enum lcc_type;
802 void ll_cl_add(struct file *file, const struct lu_env *env, struct cl_io *io,
803                enum lcc_type type);
804 void ll_cl_remove(struct file *file, const struct lu_env *env);
805 struct ll_cl_context *ll_cl_find(struct file *file);
806
807 extern const struct address_space_operations ll_aops;
808
809 /* llite/file.c */
810 extern struct file_operations ll_file_operations;
811 extern struct file_operations ll_file_operations_flock;
812 extern struct file_operations ll_file_operations_noflock;
813 extern struct inode_operations ll_file_inode_operations;
814 extern int ll_have_md_lock(struct inode *inode, __u64 *bits,
815                            enum ldlm_mode l_req_mode);
816 extern enum ldlm_mode ll_take_md_lock(struct inode *inode, __u64 bits,
817                                       struct lustre_handle *lockh, __u64 flags,
818                                       enum ldlm_mode mode);
819
820 int ll_file_open(struct inode *inode, struct file *file);
821 int ll_file_release(struct inode *inode, struct file *file);
822 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
823 int ll_md_real_close(struct inode *inode, fmode_t fmode);
824 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
825                               struct ll_file_data *file, loff_t pos,
826                               size_t count, int rw);
827 #ifdef HAVE_INODEOPS_ENHANCED_GETATTR
828 int ll_getattr(const struct path *path, struct kstat *stat,
829                u32 request_mask, unsigned int flags);
830 #else
831 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
832 #endif
833 struct posix_acl *ll_get_acl(struct inode *inode, int type);
834 #ifdef HAVE_IOP_SET_ACL
835 #ifdef CONFIG_FS_POSIX_ACL
836 int ll_set_acl(struct inode *inode, struct posix_acl *acl, int type);
837 #else  /* !CONFIG_FS_POSIX_ACL */
838 #define ll_set_acl NULL
839 #endif /* CONFIG_FS_POSIX_ACL */
840
841 #endif
842 int ll_migrate(struct inode *parent, struct file *file, int mdtidx,
843                const char *name, int namelen);
844 int ll_get_fid_by_name(struct inode *parent, const char *name,
845                        int namelen, struct lu_fid *fid, struct inode **inode);
846 #ifdef HAVE_GENERIC_PERMISSION_4ARGS
847 int ll_inode_permission(struct inode *inode, int mask, unsigned int flags);
848 #else
849 # ifndef HAVE_INODE_PERMISION_2ARGS
850 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
851 # else
852 int ll_inode_permission(struct inode *inode, int mask);
853 # endif
854 #endif
855 int ll_ioctl_fsgetxattr(struct inode *inode, unsigned int cmd,
856                         unsigned long arg);
857 int ll_ioctl_fssetxattr(struct inode *inode, unsigned int cmd,
858                         unsigned long arg);
859
860 int ll_lov_setstripe_ea_info(struct inode *inode, struct dentry *dentry,
861                              __u64 flags, struct lov_user_md *lum,
862                              int lum_size);
863 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
864                              struct lov_mds_md **lmm, int *lmm_size,
865                              struct ptlrpc_request **request);
866 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
867                      int set_default);
868 int ll_dir_getstripe(struct inode *inode, void **lmmp,
869                      int *lmm_size, struct ptlrpc_request **request,
870                      u64 valid);
871 #ifdef HAVE_FILE_FSYNC_4ARGS
872 int ll_fsync(struct file *file, loff_t start, loff_t end, int data);
873 #elif defined(HAVE_FILE_FSYNC_2ARGS)
874 int ll_fsync(struct file *file, int data);
875 #else
876 int ll_fsync(struct file *file, struct dentry *dentry, int data);
877 #endif
878 int ll_merge_attr(const struct lu_env *env, struct inode *inode);
879 int ll_fid2path(struct inode *inode, void __user *arg);
880 int ll_data_version(struct inode *inode, __u64 *data_version, int flags);
881 int ll_hsm_release(struct inode *inode);
882 int ll_hsm_state_set(struct inode *inode, struct hsm_state_set *hss);
883
884 /* llite/dcache.c */
885
886 int ll_d_init(struct dentry *de);
887 extern const struct dentry_operations ll_d_ops;
888 void ll_intent_drop_lock(struct lookup_intent *);
889 void ll_intent_release(struct lookup_intent *);
890 void ll_invalidate_aliases(struct inode *);
891 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
892 int ll_revalidate_it_finish(struct ptlrpc_request *request,
893                             struct lookup_intent *it, struct dentry *de);
894
895 /* llite/llite_lib.c */
896 extern struct super_operations lustre_super_operations;
897
898 void ll_lli_init(struct ll_inode_info *lli);
899 int ll_fill_super(struct super_block *sb, struct vfsmount *mnt);
900 void ll_put_super(struct super_block *sb);
901 void ll_kill_super(struct super_block *sb);
902 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock);
903 void ll_dir_clear_lsm_md(struct inode *inode);
904 void ll_clear_inode(struct inode *inode);
905 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr, bool hsm_import);
906 int ll_setattr(struct dentry *de, struct iattr *attr);
907 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
908 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
909                        __u64 max_age, __u32 flags);
910 int ll_update_inode(struct inode *inode, struct lustre_md *md);
911 int ll_read_inode2(struct inode *inode, void *opaque);
912 void ll_delete_inode(struct inode *inode);
913 int ll_iocontrol(struct inode *inode, struct file *file,
914                  unsigned int cmd, unsigned long arg);
915 int ll_flush_ctx(struct inode *inode);
916 void ll_umount_begin(struct super_block *sb);
917 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
918 #ifdef HAVE_SUPEROPS_USE_DENTRY
919 int ll_show_options(struct seq_file *seq, struct dentry *dentry);
920 #else
921 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs);
922 #endif
923 void ll_dirty_page_discard_warn(struct page *page, int ioret);
924 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
925                   struct super_block *, struct lookup_intent *);
926 int ll_obd_statfs(struct inode *inode, void __user *arg);
927 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
928 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *default_mdsize);
929 int ll_set_default_mdsize(struct ll_sb_info *sbi, int default_mdsize);
930 int ll_process_config(struct lustre_cfg *lcfg);
931
932 enum {
933         LUSTRE_OPC_MKDIR        = 0,
934         LUSTRE_OPC_SYMLINK      = 1,
935         LUSTRE_OPC_MKNOD        = 2,
936         LUSTRE_OPC_CREATE       = 3,
937         LUSTRE_OPC_ANY          = 5,
938 };
939
940 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
941                                       struct inode *i1, struct inode *i2,
942                                       const char *name, size_t namelen,
943                                       __u32 mode, __u32 opc, void *data);
944 void ll_finish_md_op_data(struct md_op_data *op_data);
945 int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg);
946 char *ll_get_fsname(struct super_block *sb, char *buf, int buflen);
947 void ll_compute_rootsquash_state(struct ll_sb_info *sbi);
948 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
949                         struct lov_user_md **kbuf);
950 void ll_open_cleanup(struct super_block *sb, struct ptlrpc_request *open_req);
951
952 /* Compute expected user md size when passing in a md from user space */
953 static inline ssize_t ll_lov_user_md_size(const struct lov_user_md *lum)
954 {
955         switch (lum->lmm_magic) {
956         case LOV_USER_MAGIC_V1:
957                 return sizeof(struct lov_user_md_v1);
958         case LOV_USER_MAGIC_V3:
959                 return sizeof(struct lov_user_md_v3);
960         case LOV_USER_MAGIC_SPECIFIC:
961                 if (lum->lmm_stripe_count > LOV_MAX_STRIPE_COUNT)
962                         return -EINVAL;
963
964                 return lov_user_md_size(lum->lmm_stripe_count,
965                                         LOV_USER_MAGIC_SPECIFIC);
966         case LOV_USER_MAGIC_COMP_V1:
967                 return ((struct lov_comp_md_v1 *)lum)->lcm_size;
968         }
969
970         return -EINVAL;
971 }
972
973 /* llite/llite_nfs.c */
974 extern struct export_operations lustre_export_operations;
975 __u32 get_uuid2int(const char *name, int len);
976 struct inode *search_inode_for_lustre(struct super_block *sb,
977                                       const struct lu_fid *fid);
978 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid);
979
980 /* llite/symlink.c */
981 extern struct inode_operations ll_fast_symlink_inode_operations;
982
983 /**
984  * IO arguments for various VFS I/O interfaces.
985  */
986 struct vvp_io_args {
987         /** normal/sendfile/splice */
988         enum vvp_io_subtype via_io_subtype;
989
990         union {
991                 struct {
992                         struct kiocb      *via_iocb;
993                         struct iov_iter   *via_iter;
994                 } normal;
995                 struct {
996                         struct pipe_inode_info  *via_pipe;
997                         unsigned int       via_flags;
998                 } splice;
999         } u;
1000 };
1001
1002 enum lcc_type {
1003         LCC_RW = 1,
1004         LCC_MMAP
1005 };
1006
1007 struct ll_cl_context {
1008         struct list_head         lcc_list;
1009         void                    *lcc_cookie;
1010         const struct lu_env     *lcc_env;
1011         struct cl_io            *lcc_io;
1012         struct cl_page          *lcc_page;
1013         enum lcc_type            lcc_type;
1014 };
1015
1016 struct ll_thread_info {
1017         struct iov_iter         lti_iter;
1018         struct vvp_io_args      lti_args;
1019         struct ra_io_arg        lti_ria;
1020         struct kiocb            lti_kiocb;
1021         struct ll_cl_context    lti_io_ctx;
1022 };
1023
1024 extern struct lu_context_key ll_thread_key;
1025
1026 static inline struct ll_thread_info *ll_env_info(const struct lu_env *env)
1027 {
1028         struct ll_thread_info *lti;
1029
1030         lti = lu_context_key_get(&env->le_ctx, &ll_thread_key);
1031         LASSERT(lti != NULL);
1032
1033         return lti;
1034 }
1035
1036 static inline struct vvp_io_args *ll_env_args(const struct lu_env *env,
1037                                               enum vvp_io_subtype type)
1038 {
1039         struct vvp_io_args *via = &ll_env_info(env)->lti_args;
1040
1041         via->via_io_subtype = type;
1042
1043         return via;
1044 }
1045
1046 /* llite/llite_mmap.c */
1047
1048 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last);
1049 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
1050 void policy_from_vma(union ldlm_policy_data *policy, struct vm_area_struct *vma,
1051                      unsigned long addr, size_t count);
1052 struct vm_area_struct *our_vma(struct mm_struct *mm, unsigned long addr,
1053                                size_t count);
1054
1055 static inline void ll_invalidate_page(struct page *vmpage)
1056 {
1057         struct address_space *mapping = vmpage->mapping;
1058         loff_t offset = vmpage->index << PAGE_SHIFT;
1059
1060         LASSERT(PageLocked(vmpage));
1061         if (mapping == NULL)
1062                 return;
1063
1064         /*
1065          * truncate_complete_page() calls
1066          * a_ops->invalidatepage()->cl_page_delete()->vvp_page_delete().
1067          */
1068         ll_teardown_mmaps(mapping, offset, offset + PAGE_SIZE);
1069         truncate_complete_page(mapping, vmpage);
1070 }
1071
1072 #define    ll_s2sbi(sb)        (s2lsi(sb)->lsi_llsbi)
1073
1074 /* don't need an addref as the sb_info should be holding one */
1075 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
1076 {
1077         return ll_s2sbi(sb)->ll_dt_exp;
1078 }
1079
1080 /* don't need an addref as the sb_info should be holding one */
1081 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
1082 {
1083         return ll_s2sbi(sb)->ll_md_exp;
1084 }
1085
1086 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
1087 {
1088         struct obd_device *obd = sbi->ll_md_exp->exp_obd;
1089         if (obd == NULL)
1090                 LBUG();
1091         return &obd->u.cli;
1092 }
1093
1094 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
1095 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
1096 {
1097         return ll_s2sbi(inode->i_sb);
1098 }
1099
1100 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
1101 {
1102         return ll_s2dtexp(inode->i_sb);
1103 }
1104
1105 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
1106 {
1107         return ll_s2mdexp(inode->i_sb);
1108 }
1109
1110 static inline struct lu_fid *ll_inode2fid(struct inode *inode)
1111 {
1112         struct lu_fid *fid;
1113
1114         LASSERT(inode != NULL);
1115         fid = &ll_i2info(inode)->lli_fid;
1116
1117         return fid;
1118 }
1119
1120 static inline loff_t ll_file_maxbytes(struct inode *inode)
1121 {
1122         struct cl_object *obj = ll_i2info(inode)->lli_clob;
1123
1124         if (obj == NULL)
1125                 return MAX_LFS_FILESIZE;
1126
1127         return min_t(loff_t, cl_object_maxbytes(obj), MAX_LFS_FILESIZE);
1128 }
1129
1130 /* llite/xattr.c */
1131 extern const struct xattr_handler *ll_xattr_handlers[];
1132
1133 #define XATTR_USER_T            1
1134 #define XATTR_TRUSTED_T         2
1135 #define XATTR_SECURITY_T        3
1136 #define XATTR_ACL_ACCESS_T      4
1137 #define XATTR_ACL_DEFAULT_T     5
1138 #define XATTR_LUSTRE_T          6
1139 #define XATTR_OTHER_T           7
1140
1141 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
1142 int ll_xattr_list(struct inode *inode, const char *name, int type,
1143                   void *buffer, size_t size, u64 valid);
1144 const struct xattr_handler *get_xattr_type(const char *name);
1145
1146 /**
1147  * Common IO arguments for various VFS I/O interfaces.
1148  */
1149 int cl_sb_init(struct super_block *sb);
1150 int cl_sb_fini(struct super_block *sb);
1151
1152 enum ras_update_flags {
1153         LL_RAS_HIT  = 0x1,
1154         LL_RAS_MMAP = 0x2
1155 };
1156 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len);
1157 void ll_ra_stats_inc(struct inode *inode, enum ra_stat which);
1158
1159 /* statahead.c */
1160
1161 #define LL_SA_RPC_MIN           2
1162 #define LL_SA_RPC_DEF           32
1163 #define LL_SA_RPC_MAX           512
1164
1165 /* XXX: If want to support more concurrent statahead instances,
1166  *      please consider to decentralize the RPC lists attached
1167  *      on related import, such as imp_{sending,delayed}_list.
1168  *      LU-11079 */
1169 #define LL_SA_RUNNING_MAX       256
1170 #define LL_SA_RUNNING_DEF       16
1171
1172 #define LL_SA_CACHE_BIT         5
1173 #define LL_SA_CACHE_SIZE        (1 << LL_SA_CACHE_BIT)
1174 #define LL_SA_CACHE_MASK        (LL_SA_CACHE_SIZE - 1)
1175
1176 /* per inode struct, for dir only */
1177 struct ll_statahead_info {
1178         struct dentry          *sai_dentry;
1179         atomic_t                sai_refcount;   /* when access this struct, hold
1180                                                  * refcount */
1181         unsigned int            sai_max;        /* max ahead of lookup */
1182         __u64                   sai_sent;       /* stat requests sent count */
1183         __u64                   sai_replied;    /* stat requests which received
1184                                                  * reply */
1185         __u64                   sai_index;      /* index of statahead entry */
1186         __u64                   sai_index_wait; /* index of entry which is the
1187                                                  * caller is waiting for */
1188         __u64                   sai_hit;        /* hit count */
1189         __u64                   sai_miss;       /* miss count:
1190                                                  * for "ls -al" case, includes
1191                                                  * hidden dentry miss;
1192                                                  * for "ls -l" case, it does not
1193                                                  * include hidden dentry miss.
1194                                                  * "sai_miss_hidden" is used for
1195                                                  * the later case.
1196                                                  */
1197         unsigned int            sai_consecutive_miss; /* consecutive miss */
1198         unsigned int            sai_miss_hidden;/* "ls -al", but first dentry
1199                                                  * is not a hidden one */
1200         unsigned int            sai_skip_hidden;/* skipped hidden dentry count
1201                                                  */
1202         unsigned int            sai_ls_all:1,   /* "ls -al", do stat-ahead for
1203                                                  * hidden entries */
1204                                 sai_agl_valid:1,/* AGL is valid for the dir */
1205                                 sai_in_readpage:1;/* statahead is in readdir()*/
1206         wait_queue_head_t       sai_waitq;      /* stat-ahead wait queue */
1207         struct ptlrpc_thread    sai_thread;     /* stat-ahead thread */
1208         struct ptlrpc_thread    sai_agl_thread; /* AGL thread */
1209         struct list_head        sai_interim_entries; /* entries which got async
1210                                                       * stat reply, but not
1211                                                       * instantiated */
1212         struct list_head        sai_entries;    /* completed entries */
1213         struct list_head        sai_agls;       /* AGLs to be sent */
1214         struct list_head        sai_cache[LL_SA_CACHE_SIZE];
1215         spinlock_t              sai_cache_lock[LL_SA_CACHE_SIZE];
1216         atomic_t                sai_cache_count; /* entry count in cache */
1217 };
1218
1219 int ll_statahead(struct inode *dir, struct dentry **dentry, bool unplug);
1220 void ll_authorize_statahead(struct inode *dir, void *key);
1221 void ll_deauthorize_statahead(struct inode *dir, void *key);
1222
1223 /* glimpse.c */
1224 blkcnt_t dirty_cnt(struct inode *inode);
1225
1226 int cl_glimpse_size0(struct inode *inode, int agl);
1227 int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
1228                     struct inode *inode, struct cl_object *clob, int agl);
1229
1230 static inline int cl_glimpse_size(struct inode *inode)
1231 {
1232         return cl_glimpse_size0(inode, 0);
1233 }
1234
1235 static inline int cl_agl(struct inode *inode)
1236 {
1237         return cl_glimpse_size0(inode, 1);
1238 }
1239
1240 static inline int ll_glimpse_size(struct inode *inode)
1241 {
1242         struct ll_inode_info *lli = ll_i2info(inode);
1243         int rc;
1244
1245         down_read(&lli->lli_glimpse_sem);
1246         rc = cl_glimpse_size(inode);
1247         lli->lli_glimpse_time = cfs_time_current();
1248         up_read(&lli->lli_glimpse_sem);
1249         return rc;
1250 }
1251
1252 /* dentry may statahead when statahead is enabled and current process has opened
1253  * parent directory, and this dentry hasn't accessed statahead cache before */
1254 static inline bool
1255 dentry_may_statahead(struct inode *dir, struct dentry *dentry)
1256 {
1257         struct ll_inode_info  *lli;
1258         struct ll_dentry_data *ldd;
1259
1260         if (ll_i2sbi(dir)->ll_sa_max == 0)
1261                 return false;
1262
1263         lli = ll_i2info(dir);
1264
1265         /* statahead is not allowed for this dir, there may be three causes:
1266          * 1. dir is not opened.
1267          * 2. statahead hit ratio is too low.
1268          * 3. previous stat started statahead thread failed. */
1269         if (!lli->lli_sa_enabled)
1270                 return false;
1271
1272         /* not the same process, don't statahead */
1273         if (lli->lli_opendir_pid != current_pid())
1274                 return false;
1275
1276         /*
1277          * When stating a dentry, kernel may trigger 'revalidate' or 'lookup'
1278          * multiple times, eg. for 'getattr', 'getxattr' and etc.
1279          * For patchless client, lookup intent is not accurate, which may
1280          * misguide statahead. For example:
1281          * The 'revalidate' call for 'getattr' and 'getxattr' of a dentry will
1282          * have the same intent -- IT_GETATTR, while one dentry should access
1283          * statahead cache once, otherwise statahead windows is messed up.
1284          * The solution is as following:
1285          * Assign 'lld_sa_generation' with 'lli_sa_generation' when a dentry
1286          * IT_GETATTR for the first time, and subsequent IT_GETATTR will
1287          * bypass interacting with statahead cache by checking
1288          * 'lld_sa_generation == lli->lli_sa_generation'.
1289          */
1290         ldd = ll_d2d(dentry);
1291         if (ldd != NULL && ldd->lld_sa_generation == lli->lli_sa_generation)
1292                 return false;
1293
1294         return true;
1295 }
1296
1297 int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
1298                        enum cl_fsync_mode mode, int ignore_layout);
1299
1300 static inline int ll_file_nolock(const struct file *file)
1301 {
1302         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1303         struct inode *inode = file_inode((struct file *)file);
1304
1305         LASSERT(fd != NULL);
1306         return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
1307                 (ll_i2sbi(inode)->ll_flags & LL_SBI_NOLCK));
1308 }
1309
1310 static inline void ll_set_lock_data(struct obd_export *exp, struct inode *inode,
1311                                     struct lookup_intent *it, __u64 *bits)
1312 {
1313         if (!it->it_lock_set) {
1314                 struct lustre_handle handle;
1315
1316                 /* If this inode is a remote object, it will get two
1317                  * separate locks in different namespaces, Master MDT,
1318                  * where the name entry is, will grant LOOKUP lock,
1319                  * remote MDT, where the object is, will grant
1320                  * UPDATE|PERM lock. The inode will be attched to both
1321                  * LOOKUP and PERM locks, so revoking either locks will
1322                  * case the dcache being cleared */
1323                 if (it->it_remote_lock_mode) {
1324                         handle.cookie = it->it_remote_lock_handle;
1325                         CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID
1326                                "(%p) for remote lock %#llx\n",
1327                                PFID(ll_inode2fid(inode)), inode,
1328                                handle.cookie);
1329                         md_set_lock_data(exp, &handle, inode, NULL);
1330                 }
1331
1332                 handle.cookie = it->it_lock_handle;
1333
1334                 CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID"(%p)"
1335                        " for lock %#llx\n",
1336                        PFID(ll_inode2fid(inode)), inode, handle.cookie);
1337
1338                 md_set_lock_data(exp, &handle, inode, &it->it_lock_bits);
1339                 it->it_lock_set = 1;
1340         }
1341
1342         if (bits != NULL)
1343                 *bits = it->it_lock_bits;
1344 }
1345
1346 static inline void ll_lock_dcache(struct inode *inode)
1347 {
1348 #ifdef HAVE_DCACHE_LOCK
1349         spin_lock(&dcache_lock);
1350 #else
1351         spin_lock(&inode->i_lock);
1352 #endif
1353 }
1354
1355 static inline void ll_unlock_dcache(struct inode *inode)
1356 {
1357 #ifdef HAVE_DCACHE_LOCK
1358         spin_unlock(&dcache_lock);
1359 #else
1360         spin_unlock(&inode->i_lock);
1361 #endif
1362 }
1363
1364 static inline int d_lustre_invalid(const struct dentry *dentry)
1365 {
1366         struct ll_dentry_data *lld = ll_d2d(dentry);
1367
1368         return (lld == NULL) || lld->lld_invalid;
1369 }
1370
1371 static inline void __d_lustre_invalidate(struct dentry *dentry)
1372 {
1373         struct ll_dentry_data *lld = ll_d2d(dentry);
1374
1375         if (lld != NULL)
1376                 lld->lld_invalid = 1;
1377 }
1378
1379 /*
1380  * Mark dentry INVALID, if dentry refcount is zero (this is normally case for
1381  * ll_md_blocking_ast), unhash this dentry, and let dcache to reclaim it later;
1382  * else dput() of the last refcount will unhash this dentry and kill it.
1383  */
1384 static inline void d_lustre_invalidate(struct dentry *dentry, int nested)
1385 {
1386         CDEBUG(D_DENTRY, "invalidate dentry %.*s (%p) parent %p inode %p "
1387                "refc %d\n", dentry->d_name.len, dentry->d_name.name, dentry,
1388                dentry->d_parent, dentry->d_inode, ll_d_count(dentry));
1389
1390         spin_lock_nested(&dentry->d_lock,
1391                          nested ? DENTRY_D_LOCK_NESTED : DENTRY_D_LOCK_NORMAL);
1392         __d_lustre_invalidate(dentry);
1393         /*
1394          * We should be careful about dentries created by d_obtain_alias().
1395          * These dentries are not put in the dentry tree, instead they are
1396          * linked to sb->s_anon through dentry->d_hash.
1397          * shrink_dcache_for_umount() shrinks the tree and sb->s_anon list.
1398          * If we unhashed such a dentry, unmount would not be able to find
1399          * it and busy inodes would be reported.
1400          */
1401         if (ll_d_count(dentry) == 0 && !(dentry->d_flags & DCACHE_DISCONNECTED))
1402                 __d_drop(dentry);
1403         spin_unlock(&dentry->d_lock);
1404 }
1405
1406 static inline void d_lustre_revalidate(struct dentry *dentry)
1407 {
1408         spin_lock(&dentry->d_lock);
1409         LASSERT(ll_d2d(dentry) != NULL);
1410         ll_d2d(dentry)->lld_invalid = 0;
1411         spin_unlock(&dentry->d_lock);
1412 }
1413
1414 int ll_layout_conf(struct inode *inode, const struct cl_object_conf *conf);
1415 int ll_layout_refresh(struct inode *inode, __u32 *gen);
1416 int ll_layout_restore(struct inode *inode, loff_t start, __u64 length);
1417 int ll_layout_write_intent(struct inode *inode, __u64 start, __u64 end);
1418
1419 int ll_xattr_init(void);
1420 void ll_xattr_fini(void);
1421
1422 int ll_page_sync_io(const struct lu_env *env, struct cl_io *io,
1423                     struct cl_page *page, enum cl_req_type crt);
1424
1425 int ll_getparent(struct file *file, struct getparent __user *arg);
1426
1427 /* lcommon_cl.c */
1428 int cl_setattr_ost(struct cl_object *obj, const struct iattr *attr,
1429                    unsigned int attr_flags);
1430
1431 extern struct lu_env *cl_inode_fini_env;
1432 extern __u16 cl_inode_fini_refcheck;
1433
1434 int cl_file_inode_init(struct inode *inode, struct lustre_md *md);
1435 void cl_inode_fini(struct inode *inode);
1436
1437 u64 cl_fid_build_ino(const struct lu_fid *fid, int api32);
1438 u32 cl_fid_build_gen(const struct lu_fid *fid);
1439
1440 #endif /* LLITE_INTERNAL_H */