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