Whamcloud - gitweb
ORNL-25 process dir page hash collision
[fs/lustre-release.git] / lustre / llite / llite_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * Copyright (c) 2011 Whamcloud, Inc.
34  */
35 /*
36  * This file is part of Lustre, http://www.lustre.org/
37  * Lustre is a trademark of Sun Microsystems, Inc.
38  */
39
40 #ifndef LLITE_INTERNAL_H
41 #define LLITE_INTERNAL_H
42
43 #include <lustre_acl.h>
44
45 #include <lustre_debug.h>
46 #include <lustre_ver.h>
47 #include <lustre_disk.h>  /* for s2sbi */
48 #include <lustre_eacl.h>
49
50 /* for struct cl_lock_descr and struct cl_io */
51 #include <cl_object.h>
52 #include <lclient.h>
53 #include <lustre_mdc.h>
54
55 #ifndef FMODE_EXEC
56 #define FMODE_EXEC 0
57 #endif
58
59 #ifndef VM_FAULT_RETRY
60 #define VM_FAULT_RETRY 0
61 #endif
62
63 /** Only used on client-side for indicating the tail of dir hash/offset. */
64 #define LL_DIR_END_OFF          0x7fffffffffffffffULL
65 #define LL_DIR_END_OFF_32BIT    0x7fffffffUL
66
67 #ifndef DCACHE_LUSTRE_INVALID
68 #define DCACHE_LUSTRE_INVALID 0x4000000
69 #endif
70
71 #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0")
72 #define LUSTRE_FPRIVATE(file) ((file)->private_data)
73
74 struct ll_dentry_data {
75         int                      lld_cwd_count;
76         int                      lld_mnt_count;
77         struct obd_client_handle lld_cwd_och;
78         struct obd_client_handle lld_mnt_och;
79         struct lookup_intent    *lld_it;
80         unsigned int             lld_sa_generation;
81 };
82
83 #define ll_d2d(de) ((struct ll_dentry_data*)((de)->d_fsdata))
84
85 extern struct file_operations ll_pgcache_seq_fops;
86
87 #define LLI_INODE_MAGIC                 0x111d0de5
88 #define LLI_INODE_DEAD                  0xdeadd00d
89
90 /* remote client permission cache */
91 #define REMOTE_PERM_HASHSIZE 16
92
93 struct ll_getname_data {
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 /* llite setxid/access permission for user on remote client */
100 struct ll_remote_perm {
101         cfs_hlist_node_t        lrp_list;
102         uid_t                   lrp_uid;
103         gid_t                   lrp_gid;
104         uid_t                   lrp_fsuid;
105         gid_t                   lrp_fsgid;
106         int                     lrp_access_perm; /* MAY_READ/WRITE/EXEC, this
107                                                     is access permission with
108                                                     lrp_fsuid/lrp_fsgid. */
109 };
110
111 enum lli_flags {
112         /* MDS has an authority for the Size-on-MDS attributes. */
113         LLIF_MDS_SIZE_LOCK      = (1 << 0),
114         /* Epoch close is postponed. */
115         LLIF_EPOCH_PENDING      = (1 << 1),
116         /* DONE WRITING is allowed. */
117         LLIF_DONE_WRITING       = (1 << 2),
118         /* Sizeon-on-MDS attributes are changed. An attribute update needs to
119          * be sent to MDS. */
120         LLIF_SOM_DIRTY          = (1 << 3),
121         /* File is contented */
122         LLIF_CONTENDED         = (1 << 4),
123         /* Truncate uses server lock for this file */
124         LLIF_SRVLOCK           = (1 << 5)
125
126 };
127
128 struct ll_inode_info {
129         int                     lli_inode_magic;
130         cfs_semaphore_t         lli_size_sem;           /* protect open and change size */
131         void                   *lli_size_sem_owner;
132         cfs_semaphore_t         lli_write_sem;
133         cfs_rw_semaphore_t      lli_trunc_sem;
134         char                   *lli_symlink_name;
135         __u64                   lli_maxbytes;
136         __u64                   lli_ioepoch;
137         unsigned long           lli_flags;
138         cfs_time_t              lli_contention_time;
139
140         /* this lock protects posix_acl, pending_write_llaps, mmap_cnt */
141         cfs_spinlock_t          lli_lock;
142         cfs_list_t              lli_close_list;
143         /* handle is to be sent to MDS later on done_writing and setattr.
144          * Open handle data are needed for the recovery to reconstruct
145          * the inode state on the MDS. XXX: recovery is not ready yet. */
146         struct obd_client_handle *lli_pending_och;
147
148         /* for writepage() only to communicate to fsync */
149         int                     lli_async_rc;
150         int                     lli_write_rc;
151
152         struct posix_acl       *lli_posix_acl;
153
154         /* remote permission hash */
155         cfs_hlist_head_t       *lli_remote_perms;
156         unsigned long           lli_rmtperm_utime;
157         cfs_semaphore_t         lli_rmtperm_sem;
158
159         cfs_list_t              lli_dead_list;
160
161         cfs_semaphore_t         lli_och_sem; /* Protects access to och pointers
162                                                 and their usage counters, also
163                                                 atomicity of check-update of
164                                                 lli_smd */
165         /* We need all three because every inode may be opened in different
166            modes */
167         struct obd_client_handle *lli_mds_read_och;
168         __u64                   lli_open_fd_read_count;
169         struct obd_client_handle *lli_mds_write_och;
170         __u64                   lli_open_fd_write_count;
171         struct obd_client_handle *lli_mds_exec_och;
172         __u64                   lli_open_fd_exec_count;
173
174         struct inode            lli_vfs_inode;
175
176         /* identifying fields for both metadata and data stacks. */
177         struct lu_fid           lli_fid;
178         /* Parent fid for accessing default stripe data on parent directory
179          * for allocating OST objects after a mknod() and later open-by-FID. */
180         struct lu_fid           lli_pfid;
181         struct lov_stripe_md   *lli_smd;
182
183         /* fid capability */
184         /* open count currently used by capability only, indicate whether
185          * capability needs renewal */
186         cfs_atomic_t            lli_open_count;
187         struct obd_capa        *lli_mds_capa;
188         cfs_list_t              lli_oss_capas;
189
190         /* metadata statahead */
191         /* protect statahead stuff: lli_opendir_pid, lli_opendir_key, lli_sai,
192          * and so on. */
193         cfs_spinlock_t          lli_sa_lock;
194         /*
195          * "opendir_pid" is the token when lookup/revalid -- I am the owner of
196          * dir statahead.
197          */
198         pid_t                   lli_opendir_pid;
199         /*
200          * since parent-child threads can share the same @file struct,
201          * "opendir_key" is the token when dir close for case of parent exit
202          * before child -- it is me should cleanup the dir readahead. */
203         void                   *lli_opendir_key;
204         struct ll_statahead_info *lli_sai;
205         __u64                   lli_sa_pos;
206         struct cl_object       *lli_clob;
207         /* the most recent timestamps obtained from mds */
208         struct ost_lvb          lli_lvb;
209         /**
210          * serialize normal readdir and statahead-readdir
211          */
212         cfs_semaphore_t         lli_readdir_sem;
213 };
214
215 /*
216  * Locking to guarantee consistency of non-atomic updates to long long i_size,
217  * consistency between file size and KMS, and consistency within
218  * ->lli_smd->lsm_oinfo[]'s.
219  *
220  * Implemented by ->lli_size_sem and ->lsm_sem, nested in that order.
221  */
222
223 void ll_inode_size_lock(struct inode *inode, int lock_lsm);
224 void ll_inode_size_unlock(struct inode *inode, int unlock_lsm);
225
226 // FIXME: replace the name of this with LL_I to conform to kernel stuff
227 // static inline struct ll_inode_info *LL_I(struct inode *inode)
228 static inline struct ll_inode_info *ll_i2info(struct inode *inode)
229 {
230         return container_of(inode, struct ll_inode_info, lli_vfs_inode);
231 }
232
233 /* default to about 40meg of readahead on a given system.  That much tied
234  * up in 512k readahead requests serviced at 40ms each is about 1GB/s. */
235 #define SBI_DEFAULT_READAHEAD_MAX (40UL << (20 - CFS_PAGE_SHIFT))
236
237 /* default to read-ahead full files smaller than 2MB on the second read */
238 #define SBI_DEFAULT_READAHEAD_WHOLE_MAX (2UL << (20 - CFS_PAGE_SHIFT))
239
240 enum ra_stat {
241         RA_STAT_HIT = 0,
242         RA_STAT_MISS,
243         RA_STAT_DISTANT_READPAGE,
244         RA_STAT_MISS_IN_WINDOW,
245         RA_STAT_FAILED_GRAB_PAGE,
246         RA_STAT_FAILED_MATCH,
247         RA_STAT_DISCARDED,
248         RA_STAT_ZERO_LEN,
249         RA_STAT_ZERO_WINDOW,
250         RA_STAT_EOF,
251         RA_STAT_MAX_IN_FLIGHT,
252         RA_STAT_WRONG_GRAB_PAGE,
253         _NR_RA_STAT,
254 };
255
256 struct ll_ra_info {
257         cfs_atomic_t              ra_cur_pages;
258         unsigned long             ra_max_pages;
259         unsigned long             ra_max_pages_per_file;
260         unsigned long             ra_max_read_ahead_whole_pages;
261 };
262
263 /* ra_io_arg will be filled in the beginning of ll_readahead with
264  * ras_lock, then the following ll_read_ahead_pages will read RA
265  * pages according to this arg, all the items in this structure are
266  * counted by page index.
267  */
268 struct ra_io_arg {
269         unsigned long ria_start;  /* start offset of read-ahead*/
270         unsigned long ria_end;    /* end offset of read-ahead*/
271         /* If stride read pattern is detected, ria_stoff means where
272          * stride read is started. Note: for normal read-ahead, the
273          * value here is meaningless, and also it will not be accessed*/
274         pgoff_t ria_stoff;
275         /* ria_length and ria_pages are the length and pages length in the
276          * stride I/O mode. And they will also be used to check whether
277          * it is stride I/O read-ahead in the read-ahead pages*/
278         unsigned long ria_length;
279         unsigned long ria_pages;
280 };
281
282 /* LL_HIST_MAX=32 causes an overflow */
283 #define LL_HIST_MAX 28
284 #define LL_HIST_START 12 /* buckets start at 2^12 = 4k */
285 #define LL_PROCESS_HIST_MAX 10
286 struct per_process_info {
287         pid_t pid;
288         struct obd_histogram pp_r_hist;
289         struct obd_histogram pp_w_hist;
290 };
291
292 /* pp_extents[LL_PROCESS_HIST_MAX] will hold the combined process info */
293 struct ll_rw_extents_info {
294         struct per_process_info pp_extents[LL_PROCESS_HIST_MAX + 1];
295 };
296
297 #define LL_OFFSET_HIST_MAX 100
298 struct ll_rw_process_info {
299         pid_t                     rw_pid;
300         int                       rw_op;
301         loff_t                    rw_range_start;
302         loff_t                    rw_range_end;
303         loff_t                    rw_last_file_pos;
304         loff_t                    rw_offset;
305         size_t                    rw_smallest_extent;
306         size_t                    rw_largest_extent;
307         struct ll_file_data      *rw_last_file;
308 };
309
310 enum stats_track_type {
311         STATS_TRACK_ALL = 0,  /* track all processes */
312         STATS_TRACK_PID,      /* track process with this pid */
313         STATS_TRACK_PPID,     /* track processes with this ppid */
314         STATS_TRACK_GID,      /* track processes with this gid */
315         STATS_TRACK_LAST,
316 };
317
318 /* flags for sbi->ll_flags */
319 #define LL_SBI_NOLCK             0x01 /* DLM locking disabled (directio-only) */
320 #define LL_SBI_CHECKSUM          0x02 /* checksum each page as it's written */
321 #define LL_SBI_FLOCK             0x04
322 #define LL_SBI_USER_XATTR        0x08 /* support user xattr */
323 #define LL_SBI_ACL               0x10 /* support ACL */
324 #define LL_SBI_RMT_CLIENT        0x40 /* remote client */
325 #define LL_SBI_MDS_CAPA          0x80 /* support mds capa */
326 #define LL_SBI_OSS_CAPA         0x100 /* support oss capa */
327 #define LL_SBI_LOCALFLOCK       0x200 /* Local flocks support by kernel */
328 #define LL_SBI_LRU_RESIZE       0x400 /* lru resize support */
329 #define LL_SBI_LAZYSTATFS       0x800 /* lazystatfs mount option */
330 #define LL_SBI_SOM_PREVIEW     0x1000 /* SOM preview mount option */
331 #define LL_SBI_32BIT_API       0x2000 /* generate 32 bit inodes. */
332 #define LL_SBI_64BIT_HASH      0x4000 /* support 64-bits dir hash/offset */
333
334 /* default value for ll_sb_info->contention_time */
335 #define SBI_DEFAULT_CONTENTION_SECONDS     60
336 /* default value for lockless_truncate_enable */
337 #define SBI_DEFAULT_LOCKLESS_TRUNCATE_ENABLE 1
338 #define RCE_HASHES      32
339
340 struct rmtacl_ctl_entry {
341         cfs_list_t       rce_list;
342         pid_t            rce_key; /* hash key */
343         int              rce_ops; /* acl operation type */
344 };
345
346 struct rmtacl_ctl_table {
347         cfs_spinlock_t   rct_lock;
348         cfs_list_t       rct_entries[RCE_HASHES];
349 };
350
351 #define EE_HASHES       32
352
353 struct eacl_entry {
354         cfs_list_t            ee_list;
355         pid_t                 ee_key; /* hash key */
356         struct lu_fid         ee_fid;
357         int                   ee_type; /* ACL type for ACCESS or DEFAULT */
358         ext_acl_xattr_header *ee_acl;
359 };
360
361 struct eacl_table {
362         cfs_spinlock_t   et_lock;
363         cfs_list_t       et_entries[EE_HASHES];
364 };
365
366 struct ll_sb_info {
367         cfs_list_t                ll_list;
368         /* this protects pglist and ra_info.  It isn't safe to
369          * grab from interrupt contexts */
370         cfs_spinlock_t            ll_lock;
371         cfs_spinlock_t            ll_pp_extent_lock; /* Lock for pp_extent entries */
372         cfs_spinlock_t            ll_process_lock; /* Lock for ll_rw_process_info */
373         struct obd_uuid           ll_sb_uuid;
374         struct obd_export        *ll_md_exp;
375         struct obd_export        *ll_dt_exp;
376         struct proc_dir_entry*    ll_proc_root;
377         struct lu_fid             ll_root_fid; /* root object fid */
378
379         int                       ll_flags;
380         cfs_list_t                ll_conn_chain; /* per-conn chain of SBs */
381         struct lustre_client_ocd  ll_lco;
382
383         cfs_list_t                ll_orphan_dentry_list; /*please don't ask -p*/
384         struct ll_close_queue    *ll_lcq;
385
386         struct lprocfs_stats     *ll_stats; /* lprocfs stats counter */
387
388         unsigned long             ll_async_page_max;
389         unsigned long             ll_async_page_count;
390
391         struct lprocfs_stats     *ll_ra_stats;
392
393         struct ll_ra_info         ll_ra_info;
394         unsigned int              ll_namelen;
395         struct file_operations   *ll_fop;
396
397         /* =0 - hold lock over whole read/write
398          * >0 - max. chunk to be read/written w/o lock re-acquiring */
399         unsigned long             ll_max_rw_chunk;
400         unsigned int              ll_md_brw_size; /* used by readdir */
401
402         struct lu_site           *ll_site;
403         struct cl_device         *ll_cl;
404         /* Statistics */
405         struct ll_rw_extents_info ll_rw_extents_info;
406         int                       ll_extent_process_count;
407         struct ll_rw_process_info ll_rw_process_info[LL_PROCESS_HIST_MAX];
408         unsigned int              ll_offset_process_count;
409         struct ll_rw_process_info ll_rw_offset_info[LL_OFFSET_HIST_MAX];
410         unsigned int              ll_rw_offset_entry_count;
411         enum stats_track_type     ll_stats_track_type;
412         int                       ll_stats_track_id;
413         int                       ll_rw_stats_on;
414
415         /* metadata stat-ahead */
416         unsigned int              ll_sa_max;     /* max statahead RPCs */
417         atomic_t                  ll_sa_total;   /* statahead thread started
418                                                   * count */
419         atomic_t                  ll_sa_wrong;   /* statahead thread stopped for
420                                                   * low hit ratio */
421
422         dev_t                     ll_sdev_orig; /* save s_dev before assign for
423                                                  * clustred nfs */
424         struct rmtacl_ctl_table   ll_rct;
425         struct eacl_table         ll_et;
426         struct vfsmount          *ll_mnt;
427 };
428
429 #define LL_DEFAULT_MAX_RW_CHUNK      (32 * 1024 * 1024)
430
431 struct ll_ra_read {
432         pgoff_t             lrr_start;
433         pgoff_t             lrr_count;
434         struct task_struct *lrr_reader;
435         cfs_list_t          lrr_linkage;
436 };
437
438 /*
439  * per file-descriptor read-ahead data.
440  */
441 struct ll_readahead_state {
442         cfs_spinlock_t  ras_lock;
443         /*
444          * index of the last page that read(2) needed and that wasn't in the
445          * cache. Used by ras_update() to detect seeks.
446          *
447          * XXX nikita: if access seeks into cached region, Lustre doesn't see
448          * this.
449          */
450         unsigned long   ras_last_readpage;
451         /*
452          * number of pages read after last read-ahead window reset. As window
453          * is reset on each seek, this is effectively a number of consecutive
454          * accesses. Maybe ->ras_accessed_in_window is better name.
455          *
456          * XXX nikita: window is also reset (by ras_update()) when Lustre
457          * believes that memory pressure evicts read-ahead pages. In that
458          * case, it probably doesn't make sense to expand window to
459          * PTLRPC_MAX_BRW_PAGES on the third access.
460          */
461         unsigned long   ras_consecutive_pages;
462         /*
463          * number of read requests after the last read-ahead window reset
464          * As window is reset on each seek, this is effectively the number
465          * on consecutive read request and is used to trigger read-ahead.
466          */
467         unsigned long   ras_consecutive_requests;
468         /*
469          * Parameters of current read-ahead window. Handled by
470          * ras_update(). On the initial access to the file or after a seek,
471          * window is reset to 0. After 3 consecutive accesses, window is
472          * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
473          * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
474          */
475         unsigned long   ras_window_start, ras_window_len;
476         /*
477          * Where next read-ahead should start at. This lies within read-ahead
478          * window. Read-ahead window is read in pieces rather than at once
479          * because: 1. lustre limits total number of pages under read-ahead by
480          * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
481          * not covered by DLM lock.
482          */
483         unsigned long   ras_next_readahead;
484         /*
485          * Total number of ll_file_read requests issued, reads originating
486          * due to mmap are not counted in this total.  This value is used to
487          * trigger full file read-ahead after multiple reads to a small file.
488          */
489         unsigned long   ras_requests;
490         /*
491          * Page index with respect to the current request, these value
492          * will not be accurate when dealing with reads issued via mmap.
493          */
494         unsigned long   ras_request_index;
495         /*
496          * list of struct ll_ra_read's one per read(2) call current in
497          * progress against this file descriptor. Used by read-ahead code,
498          * protected by ->ras_lock.
499          */
500         cfs_list_t      ras_read_beads;
501         /*
502          * The following 3 items are used for detecting the stride I/O
503          * mode.
504          * In stride I/O mode,
505          * ...............|-----data-----|****gap*****|--------|******|....
506          *    offset      |-stride_pages-|-stride_gap-|
507          * ras_stride_offset = offset;
508          * ras_stride_length = stride_pages + stride_gap;
509          * ras_stride_pages = stride_pages;
510          * Note: all these three items are counted by pages.
511          */
512         unsigned long   ras_stride_length;
513         unsigned long   ras_stride_pages;
514         pgoff_t         ras_stride_offset;
515         /*
516          * number of consecutive stride request count, and it is similar as
517          * ras_consecutive_requests, but used for stride I/O mode.
518          * Note: only more than 2 consecutive stride request are detected,
519          * stride read-ahead will be enable
520          */
521         unsigned long   ras_consecutive_stride_requests;
522 };
523
524 struct ll_file_dir {
525         __u64 lfd_pos;
526         __u64 lfd_next;
527 };
528
529 extern cfs_mem_cache_t *ll_file_data_slab;
530 struct lustre_handle;
531 struct ll_file_data {
532         struct ll_readahead_state fd_ras;
533         int fd_omode;
534         struct ccc_grouplock fd_grouplock;
535         struct ll_file_dir fd_dir;
536         __u32 fd_flags;
537         struct file *fd_file;
538 };
539
540 struct lov_stripe_md;
541
542 extern cfs_spinlock_t inode_lock;
543
544 extern struct proc_dir_entry *proc_lustre_fs_root;
545
546 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
547 {
548         return &lli->lli_vfs_inode;
549 }
550
551 struct it_cb_data {
552         struct inode  *icbd_parent;
553         struct dentry **icbd_childp;
554         obd_id        hash;
555 };
556
557 __u32 ll_i2suppgid(struct inode *i);
558 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
559
560 static inline int ll_need_32bit_api(struct ll_sb_info *sbi)
561 {
562 #if BITS_PER_LONG == 32
563         return 1;
564 #else
565         return unlikely(cfs_curproc_is_32bit() || (sbi->ll_flags & LL_SBI_32BIT_API));
566 #endif
567 }
568
569 #define LLAP_MAGIC 98764321
570
571 extern cfs_mem_cache_t *ll_async_page_slab;
572 extern size_t ll_async_page_slab_size;
573
574 void ll_ra_read_in(struct file *f, struct ll_ra_read *rar);
575 void ll_ra_read_ex(struct file *f, struct ll_ra_read *rar);
576 struct ll_ra_read *ll_ra_read_get(struct file *f);
577
578 /* llite/lproc_llite.c */
579 #ifdef LPROCFS
580 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
581                                 struct super_block *sb, char *osc, char *mdc);
582 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
583 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count);
584 void lprocfs_llite_init_vars(struct lprocfs_static_vars *lvars);
585 #else
586 static inline int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
587                         struct super_block *sb, char *osc, char *mdc){return 0;}
588 static inline void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi) {}
589 static void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count) {}
590 static void lprocfs_llite_init_vars(struct lprocfs_static_vars *lvars)
591 {
592         memset(lvars, 0, sizeof(*lvars));
593 }
594 #endif
595
596
597 /* llite/dir.c */
598 void ll_release_page(struct page *page, int remove);
599 extern struct file_operations ll_dir_operations;
600 extern struct inode_operations ll_dir_inode_operations;
601 struct page *ll_get_dir_page(struct file *filp, struct inode *dir, __u64 hash,
602                              struct ll_dir_chain *chain);
603 int ll_readdir(struct file *filp, void *cookie, filldir_t filldir);
604
605 int ll_get_mdt_idx(struct inode *inode);
606 /* llite/namei.c */
607 int ll_objects_destroy(struct ptlrpc_request *request,
608                        struct inode *dir);
609 struct inode *ll_iget(struct super_block *sb, ino_t hash,
610                       struct lustre_md *lic);
611 int ll_md_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
612                        void *data, int flag);
613 struct lookup_intent *ll_convert_intent(struct open_intent *oit,
614                                         int lookup_flags);
615 int ll_lookup_it_finish(struct ptlrpc_request *request,
616                         struct lookup_intent *it, void *data);
617
618 /* llite/rw.c */
619 int ll_prepare_write(struct file *, struct page *, unsigned from, unsigned to);
620 int ll_commit_write(struct file *, struct page *, unsigned from, unsigned to);
621 int ll_writepage(struct page *page, struct writeback_control *wbc);
622 void ll_removepage(struct page *page);
623 int ll_readpage(struct file *file, struct page *page);
624 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
625 void ll_truncate(struct inode *inode);
626 int ll_file_punch(struct inode *, loff_t, int);
627 ssize_t ll_file_lockless_io(struct file *, char *, size_t, loff_t *, int);
628 void ll_clear_file_contended(struct inode*);
629 int ll_sync_page_range(struct inode *, struct address_space *, loff_t, size_t);
630 int ll_readahead(const struct lu_env *env, struct cl_io *io,
631                  struct ll_readahead_state *ras, struct address_space *mapping,
632                  struct cl_page_list *queue, int flags);
633
634 /* llite/file.c */
635 extern struct file_operations ll_file_operations;
636 extern struct file_operations ll_file_operations_flock;
637 extern struct file_operations ll_file_operations_noflock;
638 extern struct inode_operations ll_file_inode_operations;
639 extern int ll_inode_revalidate_it(struct dentry *, struct lookup_intent *,
640                                   __u64);
641 extern int ll_have_md_lock(struct inode *inode, __u64 *bits,
642                            ldlm_mode_t l_req_mode);
643 extern ldlm_mode_t ll_take_md_lock(struct inode *inode, __u64 bits,
644                                    struct lustre_handle *lockh);
645 int __ll_inode_revalidate_it(struct dentry *, struct lookup_intent *,
646                              __u64 bits);
647 int ll_revalidate_nd(struct dentry *dentry, struct nameidata *nd);
648 int ll_file_open(struct inode *inode, struct file *file);
649 int ll_file_release(struct inode *inode, struct file *file);
650 int ll_glimpse_ioctl(struct ll_sb_info *sbi,
651                      struct lov_stripe_md *lsm, lstat_t *st);
652 void ll_ioepoch_open(struct ll_inode_info *lli, __u64 ioepoch);
653 int ll_local_open(struct file *file,
654                   struct lookup_intent *it, struct ll_file_data *fd,
655                   struct obd_client_handle *och);
656 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
657 int ll_md_close(struct obd_export *md_exp, struct inode *inode,
658                 struct file *file);
659 int ll_md_real_close(struct inode *inode, int flags);
660 void ll_ioepoch_close(struct inode *inode, struct md_op_data *op_data,
661                       struct obd_client_handle **och, unsigned long flags);
662 void ll_done_writing_attr(struct inode *inode, struct md_op_data *op_data);
663 int ll_som_update(struct inode *inode, struct md_op_data *op_data);
664 int ll_inode_getattr(struct inode *inode, struct obdo *obdo,
665                      __u64 ioepoch, int sync);
666 int ll_md_setattr(struct inode *inode, struct md_op_data *op_data,
667                   struct md_open_data **mod);
668 void ll_pack_inode2opdata(struct inode *inode, struct md_op_data *op_data,
669                           struct lustre_handle *fh);
670 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
671                               struct ll_file_data *file, loff_t pos,
672                               size_t count, int rw);
673 int ll_getattr_it(struct vfsmount *mnt, struct dentry *de,
674                struct lookup_intent *it, struct kstat *stat);
675 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
676 struct ll_file_data *ll_file_data_get(void);
677 #ifndef HAVE_INODE_PERMISION_2ARGS
678 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
679 #else
680 int ll_inode_permission(struct inode *inode, int mask);
681 #endif
682 int ll_lov_setstripe_ea_info(struct inode *inode, struct file *file,
683                              int flags, struct lov_user_md *lum,
684                              int lum_size);
685 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
686                              struct lov_mds_md **lmm, int *lmm_size,
687                              struct ptlrpc_request **request);
688 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
689                      int set_default);
690 int ll_dir_getstripe(struct inode *inode, struct lov_mds_md **lmm,
691                      int *lmm_size, struct ptlrpc_request **request);
692 int ll_fsync(struct file *file, struct dentry *dentry, int data);
693 int ll_do_fiemap(struct inode *inode, struct ll_user_fiemap *fiemap,
694               int num_bytes);
695 int ll_merge_lvb(struct inode *inode);
696 int ll_get_grouplock(struct inode *inode, struct file *file, unsigned long arg);
697 int ll_put_grouplock(struct inode *inode, struct file *file, unsigned long arg);
698 int ll_fid2path(struct obd_export *exp, void *arg);
699
700 /* llite/dcache.c */
701 int ll_dops_init(struct dentry *de, int block, int init_sa);
702 extern cfs_spinlock_t ll_lookup_lock;
703 extern struct dentry_operations ll_d_ops;
704 void ll_intent_drop_lock(struct lookup_intent *);
705 void ll_intent_release(struct lookup_intent *);
706 int ll_drop_dentry(struct dentry *dentry);
707 void ll_unhash_aliases(struct inode *);
708 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft);
709 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
710 int ll_dcompare(struct dentry *parent, struct qstr *d_name, struct qstr *name);
711 int ll_revalidate_it_finish(struct ptlrpc_request *request,
712                             struct lookup_intent *it, struct dentry *de);
713
714 /* llite/llite_lib.c */
715 extern struct super_operations lustre_super_operations;
716
717 char *ll_read_opt(const char *opt, char *data);
718 void ll_lli_init(struct ll_inode_info *lli);
719 int ll_fill_super(struct super_block *sb, struct vfsmount *mnt);
720 void ll_put_super(struct super_block *sb);
721 void ll_kill_super(struct super_block *sb);
722 struct inode *ll_inode_from_lock(struct ldlm_lock *lock);
723 void ll_clear_inode(struct inode *inode);
724 int ll_setattr_raw(struct inode *inode, struct iattr *attr);
725 int ll_setattr(struct dentry *de, struct iattr *attr);
726 #ifndef HAVE_STATFS_DENTRY_PARAM
727 int ll_statfs(struct super_block *sb, struct kstatfs *sfs);
728 #else
729 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
730 #endif
731 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
732                        __u64 max_age, __u32 flags);
733 void ll_update_inode(struct inode *inode, struct lustre_md *md);
734 void ll_read_inode2(struct inode *inode, void *opaque);
735 void ll_delete_inode(struct inode *inode);
736 int ll_iocontrol(struct inode *inode, struct file *file,
737                  unsigned int cmd, unsigned long arg);
738 int ll_flush_ctx(struct inode *inode);
739 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
740 void ll_umount_begin(struct vfsmount *vfsmnt, int flags);
741 #else
742 void ll_umount_begin(struct super_block *sb);
743 #endif
744 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
745 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs);
746 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
747                   struct super_block *);
748 void lustre_dump_dentry(struct dentry *, int recur);
749 void lustre_dump_inode(struct inode *);
750 int ll_obd_statfs(struct inode *inode, void *arg);
751 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
752 int ll_process_config(struct lustre_cfg *lcfg);
753 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
754                                       struct inode *i1, struct inode *i2,
755                                       const char *name, int namelen,
756                                       int mode, __u32 opc, void *data);
757 void ll_finish_md_op_data(struct md_op_data *op_data);
758
759 /* llite/llite_nfs.c */
760 extern struct export_operations lustre_export_operations;
761 __u32 get_uuid2int(const char *name, int len);
762
763 /* llite/special.c */
764 extern struct inode_operations ll_special_inode_operations;
765 extern struct file_operations ll_special_chr_inode_fops;
766 extern struct file_operations ll_special_chr_file_fops;
767 extern struct file_operations ll_special_blk_inode_fops;
768 extern struct file_operations ll_special_fifo_inode_fops;
769 extern struct file_operations ll_special_fifo_file_fops;
770 extern struct file_operations ll_special_sock_inode_fops;
771
772 /* llite/symlink.c */
773 extern struct inode_operations ll_fast_symlink_inode_operations;
774
775 /* llite/llite_close.c */
776 struct ll_close_queue {
777         cfs_spinlock_t          lcq_lock;
778         cfs_list_t              lcq_head;
779         cfs_waitq_t             lcq_waitq;
780         cfs_completion_t        lcq_comp;
781         cfs_atomic_t            lcq_stop;
782 };
783
784 struct ccc_object *cl_inode2ccc(struct inode *inode);
785
786
787 void vvp_write_pending (struct ccc_object *club, struct ccc_page *page);
788 void vvp_write_complete(struct ccc_object *club, struct ccc_page *page);
789
790 /* specific achitecture can implement only part of this list */
791 enum vvp_io_subtype {
792         /** normal IO */
793         IO_NORMAL,
794         /** io called from .sendfile */
795         IO_SENDFILE,
796         /** io started from splice_{read|write} */
797         IO_SPLICE
798 };
799
800 /* IO subtypes */
801 struct vvp_io {
802         /** io subtype */
803         enum vvp_io_subtype    cui_io_subtype;
804
805         union {
806                 struct {
807                         read_actor_t      cui_actor;
808                         void             *cui_target;
809                 } sendfile;
810                 struct {
811                         struct pipe_inode_info *cui_pipe;
812                         unsigned int            cui_flags;
813                 } splice;
814                 struct vvp_fault_io {
815                         /**
816                          * Inode modification time that is checked across DLM
817                          * lock request.
818                          */
819                         time_t                 ft_mtime;
820                         struct vm_area_struct *ft_vma;
821                         /**
822                          *  locked page returned from vvp_io
823                          */
824                         cfs_page_t            *ft_vmpage;
825 #ifndef HAVE_VM_OP_FAULT
826                         struct vm_nopage_api {
827                                 /**
828                                  * Virtual address at which fault occurred.
829                                  */
830                                 unsigned long   ft_address;
831                                 /**
832                                  * Fault type, as to be supplied to
833                                  * filemap_nopage().
834                                  */
835                                 int             *ft_type;
836                         } nopage;
837 #else
838                         struct vm_fault_api {
839                                 /**
840                                  * kernel fault info
841                                  */
842                                 struct vm_fault *ft_vmf;
843                                 /**
844                                  * fault API used bitflags for return code.
845                                  */
846                                 unsigned int    ft_flags;
847                         } fault;
848 #endif
849                 } fault;
850         } u;
851         /**
852          * Read-ahead state used by read and page-fault IO contexts.
853          */
854         struct ll_ra_read    cui_bead;
855         /**
856          * Set when cui_bead has been initialized.
857          */
858         int                  cui_ra_window_set;
859         /**
860          * Partially truncated page, that vvp_io_trunc_start() keeps locked
861          * across truncate.
862          */
863         struct cl_page      *cui_partpage;
864 };
865
866 /**
867  * IO arguments for various VFS I/O interfaces.
868  */
869 struct vvp_io_args {
870         /** normal/sendfile/splice */
871         enum vvp_io_subtype via_io_subtype;
872
873         union {
874                 struct {
875 #ifndef HAVE_FILE_WRITEV
876                         struct kiocb      *via_iocb;
877 #endif
878                         struct iovec      *via_iov;
879                         unsigned long      via_nrsegs;
880                 } normal;
881                 struct {
882                         read_actor_t       via_actor;
883                         void              *via_target;
884                 } sendfile;
885                 struct {
886                         struct pipe_inode_info  *via_pipe;
887                         unsigned int       via_flags;
888                 } splice;
889         } u;
890 };
891
892 struct ll_cl_context {
893         void           *lcc_cookie;
894         struct cl_io   *lcc_io;
895         struct cl_page *lcc_page;
896         struct lu_env  *lcc_env;
897         int             lcc_refcheck;
898         int             lcc_created;
899 };
900
901 struct vvp_thread_info {
902         struct ost_lvb       vti_lvb;
903         struct cl_2queue     vti_queue;
904         struct iovec         vti_local_iov;
905         struct vvp_io_args   vti_args;
906         struct ra_io_arg     vti_ria;
907         struct kiocb         vti_kiocb;
908         struct ll_cl_context vti_io_ctx;
909 };
910
911 static inline struct vvp_thread_info *vvp_env_info(const struct lu_env *env)
912 {
913         extern struct lu_context_key vvp_key;
914         struct vvp_thread_info      *info;
915
916         info = lu_context_key_get(&env->le_ctx, &vvp_key);
917         LASSERT(info != NULL);
918         return info;
919 }
920
921 static inline struct vvp_io_args *vvp_env_args(const struct lu_env *env,
922                                                enum vvp_io_subtype type)
923 {
924         struct vvp_io_args *ret = &vvp_env_info(env)->vti_args;
925
926         ret->via_io_subtype = type;
927
928         return ret;
929 }
930
931 struct vvp_session {
932         struct vvp_io         vs_ios;
933 };
934
935 static inline struct vvp_session *vvp_env_session(const struct lu_env *env)
936 {
937         extern struct lu_context_key vvp_session_key;
938         struct vvp_session *ses;
939
940         ses = lu_context_key_get(env->le_ses, &vvp_session_key);
941         LASSERT(ses != NULL);
942         return ses;
943 }
944
945 static inline struct vvp_io *vvp_env_io(const struct lu_env *env)
946 {
947         return &vvp_env_session(env)->vs_ios;
948 }
949
950 void ll_queue_done_writing(struct inode *inode, unsigned long flags);
951 void ll_close_thread_shutdown(struct ll_close_queue *lcq);
952 int ll_close_thread_start(struct ll_close_queue **lcq_ret);
953
954 /* llite/llite_mmap.c */
955 typedef struct rb_root  rb_root_t;
956 typedef struct rb_node  rb_node_t;
957
958 struct ll_lock_tree_node;
959 struct ll_lock_tree {
960         rb_root_t                       lt_root;
961         cfs_list_t                      lt_locked_list;
962         struct ll_file_data            *lt_fd;
963 };
964
965 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last);
966 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
967 struct ll_lock_tree_node * ll_node_from_inode(struct inode *inode, __u64 start,
968                                               __u64 end, ldlm_mode_t mode);
969 void policy_from_vma(ldlm_policy_data_t *policy,
970                 struct vm_area_struct *vma, unsigned long addr, size_t count);
971 struct vm_area_struct *our_vma(unsigned long addr, size_t count);
972
973 #define    ll_s2sbi(sb)        (s2lsi(sb)->lsi_llsbi)
974
975 /* don't need an addref as the sb_info should be holding one */
976 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
977 {
978         return ll_s2sbi(sb)->ll_dt_exp;
979 }
980
981 /* don't need an addref as the sb_info should be holding one */
982 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
983 {
984         return ll_s2sbi(sb)->ll_md_exp;
985 }
986
987 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
988 {
989         struct obd_device *obd = sbi->ll_md_exp->exp_obd;
990         if (obd == NULL)
991                 LBUG();
992         return &obd->u.cli;
993 }
994
995 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
996 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
997 {
998         return ll_s2sbi(inode->i_sb);
999 }
1000
1001 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
1002 {
1003         return ll_s2dtexp(inode->i_sb);
1004 }
1005
1006 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
1007 {
1008         return ll_s2mdexp(inode->i_sb);
1009 }
1010
1011 static inline struct lu_fid *ll_inode2fid(struct inode *inode)
1012 {
1013         struct lu_fid *fid;
1014         LASSERT(inode != NULL);
1015         fid = &ll_i2info(inode)->lli_fid;
1016         LASSERT(fid_is_igif(fid) || fid_ver(fid) == 0);
1017         return fid;
1018 }
1019
1020 static inline int ll_mds_max_easize(struct super_block *sb)
1021 {
1022         return sbi2mdc(ll_s2sbi(sb))->cl_max_mds_easize;
1023 }
1024
1025 static inline __u64 ll_file_maxbytes(struct inode *inode)
1026 {
1027         return ll_i2info(inode)->lli_maxbytes;
1028 }
1029
1030 /* llite/xattr.c */
1031 int ll_setxattr(struct dentry *dentry, const char *name,
1032                 const void *value, size_t size, int flags);
1033 ssize_t ll_getxattr(struct dentry *dentry, const char *name,
1034                     void *buffer, size_t size);
1035 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
1036 int ll_removexattr(struct dentry *dentry, const char *name);
1037
1038 /* llite/remote_perm.c */
1039 extern cfs_mem_cache_t *ll_remote_perm_cachep;
1040 extern cfs_mem_cache_t *ll_rmtperm_hash_cachep;
1041
1042 cfs_hlist_head_t *alloc_rmtperm_hash(void);
1043 void free_rmtperm_hash(cfs_hlist_head_t *hash);
1044 int ll_update_remote_perm(struct inode *inode, struct mdt_remote_perm *perm);
1045 int lustre_check_remote_perm(struct inode *inode, int mask);
1046
1047 /* llite/llite_capa.c */
1048 extern cfs_timer_t ll_capa_timer;
1049
1050 int ll_capa_thread_start(void);
1051 void ll_capa_thread_stop(void);
1052 void ll_capa_timer_callback(unsigned long unused);
1053
1054 struct obd_capa *ll_add_capa(struct inode *inode, struct obd_capa *ocapa);
1055 int ll_update_capa(struct obd_capa *ocapa, struct lustre_capa *capa);
1056
1057 void ll_capa_open(struct inode *inode);
1058 void ll_capa_close(struct inode *inode);
1059
1060 struct obd_capa *ll_mdscapa_get(struct inode *inode);
1061 struct obd_capa *ll_osscapa_get(struct inode *inode, __u64 opc);
1062
1063 void ll_truncate_free_capa(struct obd_capa *ocapa);
1064 void ll_clear_inode_capas(struct inode *inode);
1065 void ll_print_capa_stat(struct ll_sb_info *sbi);
1066
1067 /* llite/llite_cl.c */
1068 extern struct lu_device_type vvp_device_type;
1069
1070 /**
1071  * Common IO arguments for various VFS I/O interfaces.
1072  */
1073
1074 int cl_sb_init(struct super_block *sb);
1075 int cl_sb_fini(struct super_block *sb);
1076 int cl_inode_init(struct inode *inode, struct lustre_md *md);
1077 void cl_inode_fini(struct inode *inode);
1078
1079 enum cl_lock_mode  vvp_mode_from_vma(struct vm_area_struct *vma);
1080 void ll_io_init(struct cl_io *io, const struct file *file, int write);
1081
1082 void ras_update(struct ll_sb_info *sbi, struct inode *inode,
1083                 struct ll_readahead_state *ras, unsigned long index,
1084                 unsigned hit);
1085 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len);
1086 int ll_is_file_contended(struct file *file);
1087 void ll_ra_stats_inc(struct address_space *mapping, enum ra_stat which);
1088
1089 /* llite/llite_rmtacl.c */
1090 #ifdef CONFIG_FS_POSIX_ACL
1091 obd_valid rce_ops2valid(int ops);
1092 struct rmtacl_ctl_entry *rct_search(struct rmtacl_ctl_table *rct, pid_t key);
1093 int rct_add(struct rmtacl_ctl_table *rct, pid_t key, int ops);
1094 int rct_del(struct rmtacl_ctl_table *rct, pid_t key);
1095 void rct_init(struct rmtacl_ctl_table *rct);
1096 void rct_fini(struct rmtacl_ctl_table *rct);
1097
1098 void ee_free(struct eacl_entry *ee);
1099 int ee_add(struct eacl_table *et, pid_t key, struct lu_fid *fid, int type,
1100            ext_acl_xattr_header *header);
1101 struct eacl_entry *et_search_del(struct eacl_table *et, pid_t key,
1102                                  struct lu_fid *fid, int type);
1103 void et_search_free(struct eacl_table *et, pid_t key);
1104 void et_init(struct eacl_table *et);
1105 void et_fini(struct eacl_table *et);
1106 #endif
1107
1108 /* statahead.c */
1109
1110 #define LL_SA_RPC_MIN   2
1111 #define LL_SA_RPC_DEF   32
1112 #define LL_SA_RPC_MAX   8192
1113
1114 /* per inode struct, for dir only */
1115 struct ll_statahead_info {
1116         struct inode           *sai_inode;
1117         unsigned int            sai_generation; /* generation for statahead */
1118         cfs_atomic_t            sai_refcount;   /* when access this struct, hold
1119                                                  * refcount */
1120         unsigned int            sai_sent;       /* stat requests sent count */
1121         unsigned int            sai_replied;    /* stat requests which received
1122                                                  * reply */
1123         unsigned int            sai_max;        /* max ahead of lookup */
1124         unsigned int            sai_index;      /* index of statahead entry */
1125         unsigned int            sai_index_next; /* index for the next statahead
1126                                                  * entry to be stated */
1127         unsigned int            sai_hit;        /* hit count */
1128         unsigned int            sai_miss;       /* miss count:
1129                                                  * for "ls -al" case, it includes
1130                                                  * hidden dentry miss;
1131                                                  * for "ls -l" case, it does not
1132                                                  * include hidden dentry miss.
1133                                                  * "sai_miss_hidden" is used for
1134                                                  * the later case.
1135                                                  */
1136         unsigned int            sai_consecutive_miss; /* consecutive miss */
1137         unsigned int            sai_miss_hidden;/* "ls -al", but first dentry
1138                                                  * is not a hidden one */
1139         unsigned int            sai_skip_hidden;/* skipped hidden dentry count */
1140         unsigned int            sai_ls_all:1;   /* "ls -al", do stat-ahead for
1141                                                  * hidden entries */
1142         cfs_waitq_t             sai_waitq;      /* stat-ahead wait queue */
1143         struct ptlrpc_thread    sai_thread;     /* stat-ahead thread */
1144         cfs_list_t              sai_entries_sent;     /* entries sent out */
1145         cfs_list_t              sai_entries_received; /* entries returned */
1146         cfs_list_t              sai_entries_stated;   /* entries stated */
1147 };
1148
1149 int do_statahead_enter(struct inode *dir, struct dentry **dentry, int lookup);
1150 void ll_statahead_exit(struct inode *dir, struct dentry *dentry, int result);
1151 void ll_stop_statahead(struct inode *dir, void *key);
1152
1153 static inline
1154 void ll_statahead_mark(struct inode *dir, struct dentry *dentry)
1155 {
1156         struct ll_inode_info  *lli;
1157         struct ll_dentry_data *ldd = ll_d2d(dentry);
1158
1159         /* dentry has been move to other directory, no need mark */
1160         if (unlikely(dir != dentry->d_parent->d_inode))
1161                 return;
1162
1163         lli = ll_i2info(dir);
1164         /* not the same process, don't mark */
1165         if (lli->lli_opendir_pid != cfs_curproc_pid())
1166                 return;
1167
1168         cfs_spin_lock(&lli->lli_sa_lock);
1169         if (likely(lli->lli_sai != NULL && ldd != NULL))
1170                 ldd->lld_sa_generation = lli->lli_sai->sai_generation;
1171         cfs_spin_unlock(&lli->lli_sa_lock);
1172 }
1173
1174 static inline
1175 int ll_statahead_enter(struct inode *dir, struct dentry **dentryp, int lookup)
1176 {
1177         struct ll_inode_info  *lli;
1178         struct ll_dentry_data *ldd = ll_d2d(*dentryp);
1179
1180         if (unlikely(dir == NULL))
1181                 return -EAGAIN;
1182
1183         if (ll_i2sbi(dir)->ll_sa_max == 0)
1184                 return -ENOTSUPP;
1185
1186         lli = ll_i2info(dir);
1187         /* not the same process, don't statahead */
1188         if (lli->lli_opendir_pid != cfs_curproc_pid())
1189                 return -EAGAIN;
1190
1191         /*
1192          * When "ls" a dentry, the system trigger more than once "revalidate" or
1193          * "lookup", for "getattr", for "getxattr", and maybe for others.
1194          * Under patchless client mode, the operation intent is not accurate,
1195          * it maybe misguide the statahead thread. For example:
1196          * The "revalidate" call for "getattr" and "getxattr" of a dentry maybe
1197          * have the same operation intent -- "IT_GETATTR".
1198          * In fact, one dentry should has only one chance to interact with the
1199          * statahead thread, otherwise the statahead windows will be confused.
1200          * The solution is as following:
1201          * Assign "lld_sa_generation" with "sai_generation" when a dentry
1202          * "IT_GETATTR" for the first time, and the subsequent "IT_GETATTR"
1203          * will bypass interacting with statahead thread for checking:
1204          * "lld_sa_generation == lli_sai->sai_generation"
1205          */
1206         if (ldd && lli->lli_sai &&
1207             ldd->lld_sa_generation == lli->lli_sai->sai_generation)
1208                 return -EAGAIN;
1209
1210         return do_statahead_enter(dir, dentryp, lookup);
1211 }
1212
1213 /* llite ioctl register support rountine */
1214 #ifdef __KERNEL__
1215 enum llioc_iter {
1216         LLIOC_CONT = 0,
1217         LLIOC_STOP
1218 };
1219
1220 #define LLIOC_MAX_CMD           256
1221
1222 /*
1223  * Rules to write a callback function:
1224  *
1225  * Parameters:
1226  *  @magic: Dynamic ioctl call routine will feed this vaule with the pointer
1227  *      returned to ll_iocontrol_register.  Callback functions should use this
1228  *      data to check the potential collasion of ioctl cmd. If collasion is
1229  *      found, callback function should return LLIOC_CONT.
1230  *  @rcp: The result of ioctl command.
1231  *
1232  *  Return values:
1233  *      If @magic matches the pointer returned by ll_iocontrol_data, the
1234  *      callback should return LLIOC_STOP; return LLIOC_STOP otherwise.
1235  */
1236 typedef enum llioc_iter (*llioc_callback_t)(struct inode *inode,
1237                 struct file *file, unsigned int cmd, unsigned long arg,
1238                 void *magic, int *rcp);
1239
1240 enum llioc_iter ll_iocontrol_call(struct inode *inode, struct file *file,
1241                 unsigned int cmd, unsigned long arg, int *rcp);
1242
1243 /* export functions */
1244 /* Register ioctl block dynamatically for a regular file.
1245  *
1246  * @cmd: the array of ioctl command set
1247  * @count: number of commands in the @cmd
1248  * @cb: callback function, it will be called if an ioctl command is found to
1249  *      belong to the command list @cmd.
1250  *
1251  * Return vaule:
1252  *      A magic pointer will be returned if success;
1253  *      otherwise, NULL will be returned.
1254  * */
1255 void *ll_iocontrol_register(llioc_callback_t cb, int count, unsigned int *cmd);
1256 void ll_iocontrol_unregister(void *magic);
1257
1258 #endif
1259
1260 /* lclient compat stuff */
1261 #define cl_inode_info ll_inode_info
1262 #define cl_i2info(info) ll_i2info(info)
1263 #define cl_inode_mode(inode) ((inode)->i_mode)
1264 #define cl_i2sbi ll_i2sbi
1265
1266 static inline void cl_isize_lock(struct inode *inode, int lsmlock)
1267 {
1268         ll_inode_size_lock(inode, lsmlock);
1269 }
1270
1271 static inline void cl_isize_unlock(struct inode *inode, int lsmlock)
1272 {
1273         ll_inode_size_unlock(inode, lsmlock);
1274 }
1275
1276 static inline void cl_isize_write_nolock(struct inode *inode, loff_t kms)
1277 {
1278         LASSERT_SEM_LOCKED(&ll_i2info(inode)->lli_size_sem);
1279         i_size_write(inode, kms);
1280 }
1281
1282 static inline void cl_isize_write(struct inode *inode, loff_t kms)
1283 {
1284         ll_inode_size_lock(inode, 0);
1285         i_size_write(inode, kms);
1286         ll_inode_size_unlock(inode, 0);
1287 }
1288
1289 #define cl_isize_read(inode)             i_size_read(inode)
1290
1291 static inline int cl_merge_lvb(struct inode *inode)
1292 {
1293         return ll_merge_lvb(inode);
1294 }
1295
1296 #define cl_inode_atime(inode) LTIME_S((inode)->i_atime)
1297 #define cl_inode_ctime(inode) LTIME_S((inode)->i_ctime)
1298 #define cl_inode_mtime(inode) LTIME_S((inode)->i_mtime)
1299
1300 struct obd_capa *cl_capa_lookup(struct inode *inode, enum cl_req_type crt);
1301
1302 /** direct write pages */
1303 struct ll_dio_pages {
1304         /** page array to be written. we don't support
1305          * partial pages except the last one. */
1306         struct page **ldp_pages;
1307         /* offset of each page */
1308         loff_t       *ldp_offsets;
1309         /** if ldp_offsets is NULL, it means a sequential
1310          * pages to be written, then this is the file offset
1311          * of the * first page. */
1312         loff_t        ldp_start_offset;
1313         /** how many bytes are to be written. */
1314         size_t        ldp_size;
1315         /** # of pages in the array. */
1316         int           ldp_nr;
1317 };
1318
1319 static inline void cl_stats_tally(struct cl_device *dev, enum cl_req_type crt,
1320                                   int rc)
1321 {
1322         int opc = (crt == CIT_READ) ? LPROC_LL_OSC_READ :
1323                                       LPROC_LL_OSC_WRITE;
1324
1325         ll_stats_ops_tally(ll_s2sbi(cl2ccc_dev(dev)->cdv_sb), opc, rc);
1326 }
1327
1328 extern ssize_t ll_direct_rw_pages(const struct lu_env *env, struct cl_io *io,
1329                                   int rw, struct inode *inode,
1330                                   struct ll_dio_pages *pv);
1331
1332 static inline int ll_file_nolock(const struct file *file)
1333 {
1334         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1335         struct inode *inode = file->f_dentry->d_inode;
1336
1337         LASSERT(fd != NULL);
1338         return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
1339                 (ll_i2sbi(inode)->ll_flags & LL_SBI_NOLCK));
1340 }
1341
1342 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2,7,50,0)
1343 /* Compatibility for old (1.8) compiled userspace quota code */
1344 struct if_quotactl_18 {
1345         __u32                   qc_cmd;
1346         __u32                   qc_type;
1347         __u32                   qc_id;
1348         __u32                   qc_stat;
1349         struct obd_dqinfo       qc_dqinfo;
1350         struct obd_dqblk        qc_dqblk;
1351         char                    obd_type[16];
1352         struct obd_uuid         obd_uuid;
1353 };
1354 #define LL_IOC_QUOTACTL_18              _IOWR('f', 162, struct if_quotactl_18 *)
1355 /* End compatibility for old (1.8) compiled userspace quota code */
1356 #else
1357 #warning "remove old LL_IOC_QUOTACTL_18 compatibility code"
1358 #endif /* LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2,7,50,0) */
1359
1360 #endif /* LLITE_INTERNAL_H */