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