Whamcloud - gitweb
b=18233
[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 #ifdef CONFIG_FS_POSIX_ACL
41 # include <linux/fs.h>
42 #ifdef HAVE_XATTR_ACL
43 # include <linux/xattr_acl.h>
44 #endif
45 #ifdef HAVE_LINUX_POSIX_ACL_XATTR_H
46 # include <linux/posix_acl_xattr.h>
47 #endif
48 #endif
49
50 #include <lustre_debug.h>
51 #include <lustre_ver.h>
52 #include <linux/lustre_version.h>
53 #include <lustre_disk.h>  /* for s2sbi */
54
55 #ifndef HAVE_LE_TYPES
56 typedef __u16 __le16;
57 typedef __u32 __le32;
58 #endif
59  
60 /*
61 struct lustre_intent_data {
62         __u64 it_lock_handle[2];
63         __u32 it_disposition;
64         __u32 it_status;
65         __u32 it_lock_mode;
66         }; */
67
68 /* If there is no FMODE_EXEC defined, make it to match nothing */
69 #ifndef FMODE_EXEC
70 #define FMODE_EXEC 0
71 #endif
72
73 #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0")
74 #define LUSTRE_FPRIVATE(file) ((file)->private_data)
75
76 #ifdef HAVE_VFS_INTENT_PATCHES
77 static inline struct lookup_intent *ll_nd2it(struct nameidata *nd)
78 {
79         return &nd->intent;
80 }
81 #endif
82
83 /*
84  * Directory entries are currently in the same format as ext2/ext3, but will
85  * be changed in the future to accomodate FIDs
86  */
87 #define LL_DIR_NAME_LEN (255)
88 #define LL_DIR_PAD      (4)
89
90 struct ll_dir_entry {
91         /* number of inode, referenced by this entry */
92         __le32  lde_inode;
93         /* total record length, multiple of LL_DIR_PAD */
94         __le16  lde_rec_len;
95         /* length of name */
96         __u8    lde_name_len;
97         /* file type: regular, directory, device, etc. */
98         __u8    lde_file_type;
99         /* name. NOT NUL-terminated */
100         char    lde_name[LL_DIR_NAME_LEN];
101 };
102
103 struct ll_dentry_data {
104         int                      lld_cwd_count;
105         int                      lld_mnt_count;
106         struct obd_client_handle lld_cwd_och;
107         struct obd_client_handle lld_mnt_och;
108 #ifndef HAVE_VFS_INTENT_PATCHES
109         struct lookup_intent    *lld_it;
110 #endif
111         unsigned int             lld_sa_generation;
112 };
113
114 #define ll_d2d(de) ((struct ll_dentry_data*)((de)->d_fsdata))
115
116 extern struct file_operations ll_pgcache_seq_fops;
117
118 #define LLI_INODE_MAGIC                 0x111d0de5
119 #define LLI_INODE_DEAD                  0xdeadd00d
120 #define LLI_F_HAVE_OST_SIZE_LOCK        0
121 #define LLI_F_HAVE_MDS_SIZE_LOCK        1
122 #define LLI_F_CONTENDED                 2
123 #define LLI_F_SRVLOCK                   3
124
125 struct ll_inode_info {
126         int                     lli_inode_magic;
127         struct semaphore        lli_size_sem;           /* protect open and change size */
128         void                   *lli_size_sem_owner;
129         struct semaphore        lli_write_sem;
130         struct lov_stripe_md   *lli_smd;
131         char                   *lli_symlink_name;
132         __u64                   lli_maxbytes;
133         __u64                   lli_io_epoch;
134         unsigned long           lli_flags;
135         cfs_time_t              lli_contention_time;
136
137         /* this lock protects s_d_w and p_w_ll and mmap_cnt */
138         spinlock_t              lli_lock;
139 #ifdef HAVE_CLOSE_THREAD
140         struct list_head        lli_pending_write_llaps;
141         struct list_head        lli_close_item;
142         int                     lli_send_done_writing;
143 #endif
144         atomic_t                lli_mmap_cnt;
145
146         /* for writepage() only to communicate to fsync */
147         int                     lli_async_rc;
148
149         struct posix_acl       *lli_posix_acl;
150
151         struct list_head        lli_dead_list;
152
153         struct semaphore        lli_och_sem; /* Protects access to och pointers
154                                                 and their usage counters */
155         /* We need all three because every inode may be opened in different
156            modes */
157         struct obd_client_handle *lli_mds_read_och;
158         __u64                   lli_open_fd_read_count;
159         struct obd_client_handle *lli_mds_write_och;
160         __u64                   lli_open_fd_write_count;
161         struct obd_client_handle *lli_mds_exec_och;
162         __u64                   lli_open_fd_exec_count;
163
164         /** fid of this object. */
165         union {
166                 struct lu_fid f20;
167                 struct ll_fid f16;
168         } lli_fid;
169
170         /* metadata stat-ahead */
171         /*
172          * "opendir_pid" is the token when lookup/revalid -- I am the owner of
173          * dir statahead.
174          */
175         pid_t                   lli_opendir_pid;
176         /* 
177          * since parent-child threads can share the same @file struct,
178          * "opendir_key" is the token when dir close for case of parent exit
179          * before child -- it is me should cleanup the dir readahead. */
180         void                   *lli_opendir_key;
181         struct ll_statahead_info *lli_sai;
182         struct rw_semaphore     lli_truncate_rwsem;
183         /* the most recent attributes from mds, it is used for timestampts
184          * only so far */
185         struct ost_lvb         lli_lvb;
186         struct inode            lli_vfs_inode;
187 };
188
189 /*
190  * Locking to guarantee consistency of non-atomic updates to long long i_size,
191  * consistency between file size and KMS, and consistency within
192  * ->lli_smd->lsm_oinfo[]'s.
193  *
194  * Implemented by ->lli_size_sem and ->lsm_sem, nested in that order.
195  */
196
197 void ll_inode_size_lock(struct inode *inode, int lock_lsm);
198 void ll_inode_size_unlock(struct inode *inode, int unlock_lsm);
199
200 // FIXME: replace the name of this with LL_I to conform to kernel stuff
201 // static inline struct ll_inode_info *LL_I(struct inode *inode)
202 static inline struct ll_inode_info *ll_i2info(struct inode *inode)
203 {
204         return container_of(inode, struct ll_inode_info, lli_vfs_inode);
205 }
206
207 /* default to about 40meg of readahead on a given system.  That much tied
208  * up in 512k readahead requests serviced at 40ms each is about 1GB/s. */
209 #define SBI_DEFAULT_READAHEAD_MAX (40UL << (20 - CFS_PAGE_SHIFT))
210
211 /* default to read-ahead full files smaller than 2MB on the second read */
212 #define SBI_DEFAULT_READAHEAD_WHOLE_MAX (2UL << (20 - CFS_PAGE_SHIFT))
213
214 enum ra_stat {
215         RA_STAT_HIT = 0,
216         RA_STAT_MISS,
217         RA_STAT_DISTANT_READPAGE,
218         RA_STAT_MISS_IN_WINDOW,
219         RA_STAT_FAILED_GRAB_PAGE,
220         RA_STAT_FAILED_MATCH,
221         RA_STAT_DISCARDED,
222         RA_STAT_ZERO_LEN,
223         RA_STAT_ZERO_WINDOW,
224         RA_STAT_EOF,
225         RA_STAT_MAX_IN_FLIGHT,
226         RA_STAT_WRONG_GRAB_PAGE,
227         _NR_RA_STAT,
228 };
229
230 #define LL_RA_STAT      _NR_RA_STAT
231 #define LL_RA_STAT_STRINGS           {                                  \
232         [RA_STAT_HIT]               = "hits",                           \
233         [RA_STAT_MISS]              = "misses",                         \
234         [RA_STAT_DISTANT_READPAGE]  = "readpage not consecutive",       \
235         [RA_STAT_MISS_IN_WINDOW]    = "miss inside window",             \
236         [RA_STAT_FAILED_GRAB_PAGE]  = "failed grab_cache_page",         \
237         [RA_STAT_FAILED_MATCH]      = "failed lock match",              \
238         [RA_STAT_DISCARDED]         = "read but discarded",             \
239         [RA_STAT_ZERO_LEN]          = "zero length file",               \
240         [RA_STAT_ZERO_WINDOW]       = "zero size window",               \
241         [RA_STAT_EOF]               = "read-ahead to EOF",              \
242         [RA_STAT_MAX_IN_FLIGHT]     = "hit max r-a issue",              \
243         [RA_STAT_WRONG_GRAB_PAGE]   = "wrong page from grab_cache_page",\
244
245
246 struct ll_ra_info {
247         atomic_t                  ra_cur_pages;
248         unsigned long             ra_max_pages;
249         unsigned long             ra_max_read_ahead_whole_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 file               *rw_last_file;
278 };
279
280
281 enum stats_track_type {
282         STATS_TRACK_ALL = 0,  /* track all processes */
283         STATS_TRACK_PID,      /* track process with this pid */
284         STATS_TRACK_PPID,     /* track processes with this ppid */
285         STATS_TRACK_GID,      /* track processes with this gid */
286         STATS_TRACK_LAST,
287 };
288
289 /* flags for sbi->ll_flags */
290 #define LL_SBI_NOLCK            0x01 /* DLM locking disabled (directio-only) */
291 #define LL_SBI_DATA_CHECKSUM    0x02 /* checksum each page on the wire */
292 #define LL_SBI_FLOCK            0x04
293 #define LL_SBI_USER_XATTR       0x08 /* support user xattr */
294 #define LL_SBI_ACL              0x10 /* support ACL */
295 #define LL_SBI_JOIN             0x20 /* support JOIN */
296 #define LL_SBI_LOCALFLOCK       0x40 /* Local flocks support by kernel */
297 #define LL_SBI_LRU_RESIZE       0x80 /* support lru resize */
298 #define LL_SBI_LLITE_CHECKSUM  0x100 /* checksum each page in memory */
299
300 /* default value for ll_sb_info->contention_time */
301 #define SBI_DEFAULT_CONTENTION_SECONDS     60
302 /* default value for lockless_truncate_enable */
303 #define SBI_DEFAULT_LOCKLESS_TRUNCATE_ENABLE 1
304
305 /* percpu data structure for lustre lru page list */
306 struct ll_pglist_data {
307         spinlock_t                llpd_lock; /* lock to protect llpg_list */
308         struct list_head          llpd_list; /* all pages (llap_pglist_item) */
309         unsigned long             llpd_gen;  /* generation # of this list */
310         unsigned long             llpd_count; /* How many pages in this list */
311         atomic_t                  llpd_sample_count;
312         unsigned long             llpd_reblnc_count;
313         /* the pages in this list shouldn't be over this number */
314         unsigned long             llpd_budget; 
315         int                       llpd_cpu;
316         /* which page the pglist data is in */
317         struct page              *llpd_page; 
318
319         /* stats */
320         unsigned long             llpd_hit;
321         unsigned long             llpd_miss;
322         unsigned long             llpd_cross;
323 };
324
325 struct ll_sb_info {
326         struct list_head          ll_list;
327         /* this protects pglist(only ll_async_page_max) and ra_info.  
328          * It isn't safe to grab from interrupt contexts. */
329         spinlock_t                ll_lock;
330         spinlock_t                ll_pp_extent_lock; /* Lock for pp_extent entries */
331         spinlock_t                ll_process_lock; /* Lock for ll_rw_process_info */
332         struct obd_uuid           ll_sb_uuid;
333         struct obd_export        *ll_mdc_exp;
334         struct obd_export        *ll_osc_exp;
335         struct proc_dir_entry    *ll_proc_root;
336         obd_id                    ll_rootino; /* number of root inode */
337
338         int                       ll_flags;
339         struct list_head          ll_conn_chain; /* per-conn chain of SBs */
340         struct lustre_client_ocd  ll_lco;
341
342         struct list_head          ll_orphan_dentry_list; /*please don't ask -p*/
343         struct ll_close_queue    *ll_lcq;
344
345         struct lprocfs_stats     *ll_stats; /* lprocfs stats counter */
346
347         /* reblnc lock protects llpd_budget */
348         spinlock_t                ll_async_page_reblnc_lock;
349         unsigned long             ll_async_page_reblnc_count;
350         unsigned long             ll_async_page_sample_max;
351         /* I defined this array here rather than in ll_pglist_data
352          * because it is always accessed by only one cpu. -jay */
353         unsigned long            *ll_async_page_sample;
354         unsigned long             ll_async_page_max;
355         unsigned long             ll_async_page_clock_hand;
356         lcounter_t                ll_async_page_count;
357         struct ll_pglist_data   **ll_pglist;
358
359         struct lprocfs_stats     *ll_ra_stats;
360
361         unsigned                  ll_contention_time; /* seconds */
362         unsigned                  ll_lockless_truncate_enable; /* true/false */
363
364         struct ll_ra_info         ll_ra_info;
365         unsigned int              ll_namelen;
366         struct file_operations   *ll_fop;
367
368 #ifdef HAVE_EXPORT___IGET
369         struct list_head          ll_deathrow; /* inodes to be destroyed (b1443) */
370         spinlock_t                ll_deathrow_lock;
371 #endif
372         /* =0 - hold lock over whole read/write
373          * >0 - max. chunk to be read/written w/o lock re-acquiring */
374         unsigned long             ll_max_rw_chunk;
375
376         /* Statistics */
377         struct ll_rw_extents_info ll_rw_extents_info;
378         int                       ll_extent_process_count;
379         struct ll_rw_process_info ll_rw_process_info[LL_PROCESS_HIST_MAX];
380         unsigned int              ll_offset_process_count;
381         struct ll_rw_process_info ll_rw_offset_info[LL_OFFSET_HIST_MAX];
382         unsigned int              ll_rw_offset_entry_count;
383         enum stats_track_type     ll_stats_track_type;
384         int                       ll_stats_track_id;
385         int                       ll_rw_stats_on;
386         dev_t                     ll_sdev_orig; /* save s_dev before assign for
387                                                  * clustred nfs */
388
389         /* metadata stat-ahead */
390         unsigned int              ll_sa_max;     /* max statahead RPCs */
391         unsigned int              ll_sa_wrong;   /* statahead thread stopped for
392                                                   * low hit ratio */
393         unsigned int              ll_sa_total;   /* statahead thread started
394                                                   * count */
395         unsigned long long        ll_sa_blocked; /* ls count waiting for
396                                                   * statahead */
397         unsigned long long        ll_sa_cached;  /* ls count got in cache */
398         unsigned long long        ll_sa_hit;     /* hit count */
399         unsigned long long        ll_sa_miss;    /* miss count */
400 };
401
402 #define LL_DEFAULT_MAX_RW_CHUNK      (32 * 1024 * 1024)
403
404 #define LL_PGLIST_DATA_CPU(sbi, cpu) ((sbi)->ll_pglist[cpu])
405 #define LL_PGLIST_DATA(sbi)          LL_PGLIST_DATA_CPU(sbi, smp_processor_id())
406
407 static inline struct ll_pglist_data *ll_pglist_cpu_lock(
408                 struct ll_sb_info *sbi, 
409                 int cpu)
410 {
411         spin_lock(&sbi->ll_pglist[cpu]->llpd_lock);
412         return LL_PGLIST_DATA_CPU(sbi, cpu);
413 }
414
415 static inline void ll_pglist_cpu_unlock(struct ll_sb_info *sbi, int cpu)
416 {
417         spin_unlock(&sbi->ll_pglist[cpu]->llpd_lock);
418 }
419
420 static inline struct ll_pglist_data *ll_pglist_double_lock(
421                 struct ll_sb_info *sbi, 
422                 int cpu, struct ll_pglist_data **pd_cpu)
423 {
424         int current_cpu = get_cpu();
425
426         if (cpu == current_cpu) {
427                 ll_pglist_cpu_lock(sbi, cpu);
428         } else if (current_cpu < cpu) {
429                 ll_pglist_cpu_lock(sbi, current_cpu);
430                 ll_pglist_cpu_lock(sbi, cpu);
431         } else {
432                 ll_pglist_cpu_lock(sbi, cpu);
433                 ll_pglist_cpu_lock(sbi, current_cpu);
434         }
435
436         if (pd_cpu)
437                 *pd_cpu = LL_PGLIST_DATA_CPU(sbi, cpu);
438
439         return LL_PGLIST_DATA(sbi);
440 }
441
442 static inline void ll_pglist_double_unlock(struct ll_sb_info *sbi, int cpu)
443 {
444         int current_cpu = smp_processor_id();
445         if (cpu == current_cpu) {
446                 ll_pglist_cpu_unlock(sbi, cpu);
447         } else {
448                 ll_pglist_cpu_unlock(sbi, cpu);
449                 ll_pglist_cpu_unlock(sbi, current_cpu);
450         }
451         put_cpu();
452 }
453
454 static inline struct ll_pglist_data *ll_pglist_lock(struct ll_sb_info *sbi)
455 {
456         ll_pglist_cpu_lock(sbi, get_cpu());
457         return LL_PGLIST_DATA(sbi);
458 }
459
460 static inline void ll_pglist_unlock(struct ll_sb_info *sbi)
461 {
462         ll_pglist_cpu_unlock(sbi, smp_processor_id());
463         put_cpu();
464 }
465
466 struct ll_ra_read {
467         pgoff_t             lrr_start;
468         pgoff_t             lrr_count;
469         struct task_struct *lrr_reader;
470         struct list_head    lrr_linkage;
471 };
472
473 /*
474  * per file-descriptor read-ahead data.
475  */
476 struct ll_readahead_state {
477         spinlock_t      ras_lock;
478         /*
479          * index of the last page that read(2) needed and that wasn't in the
480          * cache. Used by ras_update() to detect seeks.
481          *
482          * XXX nikita: if access seeks into cached region, Lustre doesn't see
483          * this.
484          */
485         unsigned long   ras_last_readpage;
486         /*
487          * number of pages read after last read-ahead window reset. As window
488          * is reset on each seek, this is effectively a number of consecutive
489          * accesses. Maybe ->ras_accessed_in_window is better name.
490          *
491          * XXX nikita: window is also reset (by ras_update()) when Lustre
492          * believes that memory pressure evicts read-ahead pages. In that
493          * case, it probably doesn't make sense to expand window to
494          * PTLRPC_MAX_BRW_PAGES on the third access.
495          */
496         unsigned long   ras_consecutive_pages;
497         /*
498          * number of read requests after the last read-ahead window reset
499          * As window is reset on each seek, this is effectively the number 
500          * on consecutive read request and is used to trigger read-ahead.
501          */
502         unsigned long   ras_consecutive_requests;
503         /*
504          * Parameters of current read-ahead window. Handled by
505          * ras_update(). On the initial access to the file or after a seek,
506          * window is reset to 0. After 3 consecutive accesses, window is
507          * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
508          * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
509          */
510         unsigned long   ras_window_start, ras_window_len;
511         /*
512          * Where next read-ahead should start at. This lies within read-ahead
513          * window. Read-ahead window is read in pieces rather than at once
514          * because: 1. lustre limits total number of pages under read-ahead by
515          * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
516          * not covered by DLM lock.
517          */
518         unsigned long   ras_next_readahead;
519         /*
520          * Total number of ll_file_read requests issued, reads originating
521          * due to mmap are not counted in this total.  This value is used to
522          * trigger full file read-ahead after multiple reads to a small file.
523          */
524         unsigned long   ras_requests;
525         /*
526          * Page index with respect to the current request, these value 
527          * will not be accurate when dealing with reads issued via mmap.
528          */
529         unsigned long   ras_request_index;
530         /*
531          * list of struct ll_ra_read's one per read(2) call current in
532          * progress against this file descriptor. Used by read-ahead code,
533          * protected by ->ras_lock.
534          */
535         struct list_head ras_read_beads;
536         /* 
537          * The following 3 items are used for detecting the stride I/O
538          * mode. 
539          * In stride I/O mode, 
540          * ...............|-----data-----|****gap*****|--------|******|.... 
541          *    offset      |-stride_pages-|-stride_gap-| 
542          * ras_stride_offset = offset;
543          * ras_stride_length = stride_pages + stride_gap;
544          * ras_stride_pages = stride_pages;
545          * Note: all these three items are counted by pages.
546          */
547         unsigned long ras_stride_length;
548         unsigned long ras_stride_pages;
549         pgoff_t ras_stride_offset;
550         /* 
551          * number of consecutive stride request count, and it is similar as
552          * ras_consecutive_requests, but used for stride I/O mode.
553          * Note: only more than 2 consecutive stride request are detected,
554          * stride read-ahead will be enable
555          */
556         unsigned long ras_consecutive_stride_requests;
557 };
558
559 extern cfs_mem_cache_t *ll_file_data_slab;
560 struct lustre_handle;
561 struct ll_file_data {
562         struct ll_readahead_state fd_ras;
563         int fd_omode;
564         struct lustre_handle fd_cwlockh;
565         unsigned long fd_gid;
566         __u32 fd_flags;
567 };
568
569 struct lov_stripe_md;
570
571 extern spinlock_t inode_lock;
572
573 extern struct proc_dir_entry *proc_lustre_fs_root;
574
575 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
576 {
577         return &lli->lli_vfs_inode;
578 }
579
580 struct it_cb_data {
581         struct inode *icbd_parent;
582         struct dentry **icbd_childp;
583         obd_id hash;
584 };
585
586 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
587
588 #define LLAP_MAGIC 98764321
589
590 extern cfs_mem_cache_t *ll_async_page_slab;
591 extern size_t ll_async_page_slab_size;
592 struct ll_async_page {
593         int              llap_magic;
594          /* only trust these if the page lock is providing exclusion */
595         unsigned int     llap_write_queued:1,
596                          llap_defer_uptodate:1,
597                          llap_origin:3,
598                          llap_ra_used:1,
599                          llap_ignore_quota:1,
600                          llap_nocache:1,
601                          llap_lockless_io_page:1,
602                          llap_reserved:7;
603         unsigned int     llap_pglist_cpu:16;
604         void            *llap_cookie;
605         struct page     *llap_page;
606         struct list_head llap_pending_write;
607         struct list_head llap_pglist_item;
608         /* checksum for paranoid I/O debugging */
609         __u32 llap_checksum;
610 };
611
612 /*
613  * enumeration of llap_from_page() call-sites. Used to export statistics in
614  * /proc/fs/lustre/llite/fsN/dump_page_cache.
615  */
616 enum {
617         LLAP_ORIGIN_UNKNOWN = 0,
618         LLAP_ORIGIN_READPAGE,
619         LLAP_ORIGIN_READAHEAD,
620         LLAP_ORIGIN_COMMIT_WRITE,
621         LLAP_ORIGIN_WRITEPAGE,
622         LLAP_ORIGIN_REMOVEPAGE,
623         LLAP_ORIGIN_LOCKLESS_IO,
624         LLAP__ORIGIN_MAX,
625 };
626 extern char *llap_origins[];
627
628 #ifdef HAVE_REGISTER_CACHE
629 #include <linux/cache_def.h>
630 #define ll_register_cache(cache) register_cache(cache)
631 #define ll_unregister_cache(cache) unregister_cache(cache)
632 #elif defined(HAVE_SHRINKER_CACHE)
633 struct cache_definition {
634         const char *name;
635         shrinker_t shrink;
636         struct shrinker *shrinker;
637 };
638
639 #define ll_register_cache(cache) do {                                   \
640         struct cache_definition *c = (cache);                           \
641         c->shrinker = set_shrinker(DEFAULT_SEEKS, c->shrink);           \
642 } while(0)
643
644 #define ll_unregister_cache(cache) do {                                 \
645         remove_shrinker((cache)->shrinker);                             \
646         (cache)->shrinker = NULL;                                       \
647 } while(0)
648 #else
649 #define ll_register_cache(cache) do {} while (0)
650 #define ll_unregister_cache(cache) do {} while (0)
651 #endif
652
653 void ll_ra_read_in(struct file *f, struct ll_ra_read *rar);
654 void ll_ra_read_ex(struct file *f, struct ll_ra_read *rar);
655 struct ll_ra_read *ll_ra_read_get(struct file *f);
656
657 /* llite/lproc_llite.c */
658 #ifdef LPROCFS
659 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
660                                 struct super_block *sb, char *osc, char *mdc);
661 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
662 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count);
663 void lprocfs_llite_init_vars(struct lprocfs_static_vars *lvars);
664 #else
665 static inline int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
666                         struct super_block *sb, char *osc, char *mdc){return 0;}
667 static inline void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi) {}
668 static void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count) {}
669 static void lprocfs_llite_init_vars(struct lprocfs_static_vars *lvars)
670 {
671         memset(lvars, 0, sizeof(*lvars));
672 }
673 #endif
674
675
676 /* llite/dir.c */
677 extern struct file_operations ll_dir_operations;
678 extern struct inode_operations ll_dir_inode_operations;
679
680 struct page *ll_get_dir_page(struct inode *dir, unsigned long n);
681
682 static inline unsigned ll_dir_rec_len(unsigned name_len)
683 {
684         return (name_len + 8 + LL_DIR_PAD - 1) & ~(LL_DIR_PAD - 1);
685 }
686
687 static inline struct ll_dir_entry *ll_entry_at(void *base, unsigned offset)
688 {
689         return (struct ll_dir_entry *)((char *)base + offset);
690 }
691
692 /*
693  * p is at least 6 bytes before the end of page
694  */
695 static inline struct ll_dir_entry *ll_dir_next_entry(struct ll_dir_entry *p)
696 {
697         return ll_entry_at(p, le16_to_cpu(p->lde_rec_len));
698 }
699
700 static inline void ll_put_page(struct page *page)
701 {
702         kunmap(page);
703         page_cache_release(page);
704 }
705
706 static inline unsigned long dir_pages(struct inode *inode)
707 {
708         return (inode->i_size + CFS_PAGE_SIZE - 1) >> CFS_PAGE_SHIFT;
709 }
710
711 int ll_objects_destroy(struct ptlrpc_request *request, struct inode *dir);
712 struct inode *ll_iget(struct super_block *sb, ino_t hash,
713                       struct lustre_md *lic);
714 int ll_mdc_cancel_unused(struct lustre_handle *, struct inode *, int flags,
715                          void *opaque);
716 int ll_mdc_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
717                         void *data, int flag);
718 int ll_prepare_mdc_op_data(struct mdc_op_data *,
719                            struct inode *i1, struct inode *i2,
720                            const char *name, int namelen, int mode, void *data);
721 #ifndef HAVE_VFS_INTENT_PATCHES
722 struct lookup_intent *ll_convert_intent(struct open_intent *oit,
723                                         int lookup_flags);
724 #endif
725 void ll_pin_extent_cb(void *data);
726 int ll_page_removal_cb(void *data, int discard);
727 int ll_extent_lock_cancel_cb(struct ldlm_lock *lock, struct ldlm_lock_desc *new,
728                              void *data, int flag);
729 int lookup_it_finish(struct ptlrpc_request *request, int offset,
730                      struct lookup_intent *it, void *data);
731 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
732
733 /* llite/rw.c */
734 int ll_prepare_write(struct file *, struct page *, unsigned from, unsigned to);
735 int ll_commit_write(struct file *, struct page *, unsigned from, unsigned to);
736 int ll_writepage(struct page *page);
737 void ll_inode_fill_obdo(struct inode *inode, int cmd, struct obdo *oa);
738 int ll_ap_completion(void *data, int cmd, struct obdo *oa, int rc);
739 int llap_shrink_cache(struct ll_sb_info *sbi, int shrink_fraction);
740 extern struct cache_definition ll_cache_definition;
741 void ll_removepage(struct page *page);
742 int ll_readpage(struct file *file, struct page *page);
743 struct ll_async_page *llap_cast_private(struct page *page);
744 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
745 void ll_ra_accounting(struct ll_async_page *llap,struct address_space *mapping);
746 void ll_truncate(struct inode *inode);
747 int ll_file_punch(struct inode *, loff_t, int);
748 ssize_t ll_file_lockless_io(struct file *, const struct iovec *,
749                             unsigned long, loff_t *, int, ssize_t);
750 void ll_clear_file_contended(struct inode*);
751 int ll_sync_page_range(struct inode *, struct address_space *, loff_t, size_t);
752
753 /* llite/file.c */
754 extern struct file_operations ll_file_operations;
755 extern struct file_operations ll_file_operations_flock;
756 extern struct file_operations ll_file_operations_noflock;
757 extern struct inode_operations ll_file_inode_operations;
758 extern int ll_inode_revalidate_it(struct dentry *, struct lookup_intent *);
759 extern int ll_have_md_lock(struct inode *inode, __u64 bits);
760 int ll_region_mapped(unsigned long addr, size_t count);
761 int ll_extent_lock(struct ll_file_data *, struct inode *,
762                    struct lov_stripe_md *, int mode, ldlm_policy_data_t *,
763                    struct lustre_handle *, int ast_flags);
764 int ll_extent_unlock(struct ll_file_data *, struct inode *,
765                      struct lov_stripe_md *, int mode, struct lustre_handle *);
766 int ll_file_open(struct inode *inode, struct file *file);
767 int ll_file_release(struct inode *inode, struct file *file);
768 int ll_lsm_getattr(struct obd_export *, struct lov_stripe_md *, struct obdo *);
769 int ll_glimpse_ioctl(struct ll_sb_info *sbi, 
770                      struct lov_stripe_md *lsm, lstat_t *st);
771 int ll_glimpse_size(struct inode *inode, int ast_flags);
772 int ll_local_open(struct file *file,
773                   struct lookup_intent *it, struct ll_file_data *fd,
774                   struct obd_client_handle *och);
775 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
776 int ll_mdc_close(struct obd_export *mdc_exp, struct inode *inode,
777                  struct file *file);
778 int ll_mdc_real_close(struct inode *inode, int flags);
779 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid, struct file
780                                *file, size_t count, int rw);
781 int ll_getattr_it(struct vfsmount *mnt, struct dentry *de,
782                struct lookup_intent *it, struct kstat *stat);
783 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
784 struct ll_file_data *ll_file_data_get(void);
785 #ifndef HAVE_INODE_PERMISION_2ARGS
786 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
787 #else
788 int ll_inode_permission(struct inode *inode, int mask);
789 #endif
790 int ll_lov_setstripe_ea_info(struct inode *inode, struct file *file,
791                              int flags, struct lov_user_md *lum,
792                              int lum_size);
793 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
794                              struct lov_mds_md **lmm, int *lmm_size,
795                              struct ptlrpc_request **request);
796 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
797                      int set_default);
798 int ll_dir_getstripe(struct inode *inode, struct lov_mds_md **lmm, 
799                      int *lmm_size, struct ptlrpc_request **request);
800 int ll_fsync(struct file *file, struct dentry *dentry, int data);
801 int ll_fiemap(struct inode *inode, struct ll_user_fiemap *fiemap,
802               int num_bytes);
803
804 /* llite/dcache.c */
805 /* llite/namei.c */
806 /**
807  * protect race ll_find_aliases vs ll_revalidate_it vs ll_unhash_aliases
808  */
809 extern spinlock_t ll_lookup_lock;
810 extern struct dentry_operations ll_d_ops;
811 void ll_intent_drop_lock(struct lookup_intent *);
812 void ll_intent_release(struct lookup_intent *);
813 extern void ll_set_dd(struct dentry *de);
814 int ll_drop_dentry(struct dentry *dentry);
815 void ll_unhash_aliases(struct inode *);
816 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft);
817 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
818 int ll_dcompare(struct dentry *parent, struct qstr *d_name, struct qstr *name);
819 int revalidate_it_finish(struct ptlrpc_request *request, int offset,
820                          struct lookup_intent *it, struct dentry *de);
821
822 /* llite/llite_lib.c */
823 extern struct super_operations lustre_super_operations;
824
825 char *ll_read_opt(const char *opt, char *data);
826 void ll_lli_init(struct ll_inode_info *lli);
827 int ll_fill_super(struct super_block *sb);
828 void ll_put_super(struct super_block *sb);
829 void ll_kill_super(struct super_block *sb);
830 struct inode *ll_inode_from_lock(struct ldlm_lock *lock);
831 void ll_clear_inode(struct inode *inode);
832 int ll_setattr_raw(struct inode *inode, struct iattr *attr);
833 int ll_setattr(struct dentry *de, struct iattr *attr);
834 #ifndef HAVE_STATFS_DENTRY_PARAM
835 int ll_statfs(struct super_block *sb, struct kstatfs *sfs);
836 #else
837 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
838 #endif
839 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
840                        __u64 max_age, __u32 flags);
841 void ll_update_inode(struct inode *inode, struct lustre_md *md);
842 void ll_read_inode2(struct inode *inode, void *opaque);
843 int ll_iocontrol(struct inode *inode, struct file *file,
844                  unsigned int cmd, unsigned long arg);
845 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
846 void ll_umount_begin(struct vfsmount *vfsmnt, int flags);
847 #else
848 void ll_umount_begin(struct super_block *sb);
849 #endif
850 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
851 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs);
852 int ll_prep_inode(struct obd_export *exp, struct inode **inode,
853                   struct ptlrpc_request *req, int offset, struct super_block *);
854 void lustre_dump_dentry(struct dentry *, int recur);
855 void lustre_dump_inode(struct inode *);
856 struct ll_async_page *llite_pglist_next_llap(struct list_head *head,
857                                              struct list_head *list);
858 int ll_obd_statfs(struct inode *inode, void *arg);
859 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
860 int ll_process_config(struct lustre_cfg *lcfg);
861
862 /* llite/llite_nfs.c */
863 extern struct export_operations lustre_export_operations;
864 __u32 get_uuid2int(const char *name, int len);
865
866 /* llite/special.c */
867 extern struct inode_operations ll_special_inode_operations;
868 extern struct file_operations ll_special_chr_inode_fops;
869 extern struct file_operations ll_special_chr_file_fops;
870 extern struct file_operations ll_special_blk_inode_fops;
871 extern struct file_operations ll_special_fifo_inode_fops;
872 extern struct file_operations ll_special_fifo_file_fops;
873 extern struct file_operations ll_special_sock_inode_fops;
874
875 /* llite/symlink.c */
876 extern struct inode_operations ll_fast_symlink_inode_operations;
877
878 /* llite/llite_close.c */
879 struct ll_close_queue {
880         spinlock_t              lcq_lock;
881         struct list_head        lcq_list;
882         wait_queue_head_t       lcq_waitq;
883         struct completion       lcq_comp;
884 };
885
886 #ifdef HAVE_CLOSE_THREAD
887 void llap_write_pending(struct inode *inode, struct ll_async_page *llap);
888 void llap_write_complete(struct inode *inode, struct ll_async_page *llap);
889 void ll_open_complete(struct inode *inode);
890 int ll_is_inode_dirty(struct inode *inode);
891 void ll_try_done_writing(struct inode *inode);
892 void ll_queue_done_writing(struct inode *inode);
893 #else
894 static inline void llap_write_pending(struct inode *inode,
895                                       struct ll_async_page *llap) { return; };
896 static inline void llap_write_complete(struct inode *inode,
897                                        struct ll_async_page *llap) { return; };
898 static inline void ll_open_complete(struct inode *inode) { return; };
899 static inline int ll_is_inode_dirty(struct inode *inode) { return 0; };
900 static inline void ll_try_done_writing(struct inode *inode) { return; };
901 static inline void ll_queue_done_writing(struct inode *inode) { return; };
902 //static inline void ll_close_thread_shutdown(struct ll_close_queue *lcq) { return; };
903 //static inline int ll_close_thread_start(struct ll_close_queue **lcq_ret) { return 0; };
904 #endif
905 void ll_close_thread_shutdown(struct ll_close_queue *lcq);
906 int ll_close_thread_start(struct ll_close_queue **lcq_ret);
907
908 /* llite/llite_mmap.c */
909 typedef struct rb_root  rb_root_t;
910 typedef struct rb_node  rb_node_t;
911
912 struct ll_lock_tree_node;
913 struct ll_lock_tree {
914         rb_root_t                       lt_root;
915         struct list_head                lt_locked_list;
916         struct ll_file_data             *lt_fd;
917 };
918
919 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last);
920 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
921 struct ll_lock_tree_node * ll_node_from_inode(struct inode *inode, __u64 start,
922                                               __u64 end, ldlm_mode_t mode);
923 int ll_tree_lock(struct ll_lock_tree *tree,
924                  struct ll_lock_tree_node *first_node,
925                  const char *buf, size_t count, int ast_flags);
926 int ll_tree_lock_iov(struct ll_lock_tree *tree,
927                      struct ll_lock_tree_node *first_node,
928                      const struct iovec *iov, unsigned long nr_segs,
929                      int ast_flags);
930 int ll_tree_unlock(struct ll_lock_tree *tree);
931
932 #define    ll_s2sbi(sb)        (s2lsi(sb)->lsi_llsbi)
933
934 static inline __u64 ll_ts2u64(struct timespec *time)
935 {
936         __u64 t = time->tv_sec;
937         return t;
938 }
939
940 /* don't need an addref as the sb_info should be holding one */
941 static inline struct obd_export *ll_s2obdexp(struct super_block *sb)
942 {
943         return ll_s2sbi(sb)->ll_osc_exp;
944 }
945
946 /* don't need an addref as the sb_info should be holding one */
947 static inline struct obd_export *ll_s2mdcexp(struct super_block *sb)
948 {
949         return ll_s2sbi(sb)->ll_mdc_exp;
950 }
951
952 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
953 {
954         struct obd_device *obd = sbi->ll_mdc_exp->exp_obd;
955         if (obd == NULL)
956                 LBUG();
957         return &obd->u.cli;
958 }
959
960 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
961 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
962 {
963         return ll_s2sbi(inode->i_sb);
964 }
965
966 static inline struct obd_export *ll_i2obdexp(struct inode *inode)
967 {
968         return ll_s2obdexp(inode->i_sb);
969 }
970
971 static inline struct obd_export *ll_i2mdcexp(struct inode *inode)
972 {
973         return ll_s2mdcexp(inode->i_sb);
974 }
975
976 /** get lu_fid from inode. */
977 static inline struct lu_fid *ll_inode_lu_fid(struct inode *inode)
978 {
979         return &ll_i2info(inode)->lli_fid.f20;
980 }
981
982 /** get ll_fid from inode. */
983 static inline struct ll_fid *ll_inode_ll_fid(struct inode *inode)
984 {
985         return &ll_i2info(inode)->lli_fid.f16;
986 }
987
988 static inline void ll_inode2fid(struct ll_fid *fid, struct inode *inode)
989 {
990         *fid = *ll_inode_ll_fid(inode);
991 }
992
993 static inline int ll_mds_max_easize(struct super_block *sb)
994 {
995         return sbi2mdc(ll_s2sbi(sb))->cl_max_mds_easize;
996 }
997
998 static inline __u64 ll_file_maxbytes(struct inode *inode)
999 {
1000         return ll_i2info(inode)->lli_maxbytes;
1001 }
1002
1003 /* llite/xattr.c */
1004 int ll_setxattr(struct dentry *dentry, const char *name,
1005                 const void *value, size_t size, int flags);
1006 ssize_t ll_getxattr(struct dentry *dentry, const char *name,
1007                     void *buffer, size_t size);
1008 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
1009 int ll_removexattr(struct dentry *dentry, const char *name);
1010
1011 /* statahead.c */
1012
1013 #define LL_SA_RPC_MIN   2
1014 #define LL_SA_RPC_DEF   32
1015 #define LL_SA_RPC_MAX   8192
1016
1017 /* per inode struct, for dir only */
1018 struct ll_statahead_info {
1019         struct inode           *sai_inode;
1020         unsigned int            sai_generation; /* generation for statahead */
1021         atomic_t                sai_refcount;   /* when access this struct, hold
1022                                                  * refcount */
1023         unsigned int            sai_sent;       /* stat requests sent count */
1024         unsigned int            sai_replied;    /* stat requests which received
1025                                                  * reply */
1026         unsigned int            sai_max;        /* max ahead of lookup */
1027         unsigned int            sai_index;      /* index of statahead entry */
1028         unsigned int            sai_index_next; /* index for the next statahead
1029                                                  * entry to be stated */
1030         unsigned int            sai_hit;        /* hit count */
1031         unsigned int            sai_miss;       /* miss count:
1032                                                  * for "ls -al" case, it includes
1033                                                  * hidden dentry miss;
1034                                                  * for "ls -l" case, it does not
1035                                                  * include hidden dentry miss.
1036                                                  * "sai_miss_hidden" is used for
1037                                                  * the later case.
1038                                                  */
1039         unsigned int            sai_consecutive_miss; /* consecutive miss */
1040         unsigned int            sai_miss_hidden;/* "ls -al", but first dentry
1041                                                  * is not a hidden one */
1042         unsigned int            sai_skip_hidden;/* skipped hidden dentry count */
1043         unsigned int            sai_ls_all:1;   /* "ls -al", do stat-ahead for
1044                                                  * hidden entries */
1045         cfs_waitq_t             sai_waitq;      /* stat-ahead wait queue */
1046         struct ptlrpc_thread    sai_thread;     /* stat-ahead thread */
1047         struct list_head        sai_entries_sent;     /* entries sent out */
1048         struct list_head        sai_entries_received; /* entries returned */
1049         struct list_head        sai_entries_stated;   /* entries stated */
1050 };
1051
1052 int do_statahead_enter(struct inode *dir, struct dentry **dentry, int lookup);
1053 void ll_statahead_exit(struct dentry *dentry, int result);
1054 void ll_stop_statahead(struct inode *inode, void *key);
1055
1056 static inline
1057 void ll_statahead_mark(struct dentry *dentry)
1058 {
1059         struct ll_inode_info *lli = ll_i2info(dentry->d_parent->d_inode);
1060         struct ll_dentry_data *ldd = ll_d2d(dentry);
1061
1062         /* not the same process, don't mark */
1063         if (lli->lli_opendir_pid != cfs_curproc_pid())
1064                 return;
1065
1066         spin_lock(&lli->lli_lock);
1067         if (likely(lli->lli_sai != NULL && ldd != NULL))
1068                 ldd->lld_sa_generation = lli->lli_sai->sai_generation;
1069         spin_unlock(&lli->lli_lock);
1070 }
1071
1072 static inline
1073 int ll_statahead_enter(struct inode *dir, struct dentry **dentryp, int lookup)
1074 {
1075         struct ll_sb_info        *sbi = ll_i2sbi(dir);
1076         struct ll_inode_info     *lli = ll_i2info(dir);
1077         struct ll_dentry_data    *ldd = ll_d2d(*dentryp);
1078
1079         if (sbi->ll_sa_max == 0)
1080                 return -ENOTSUPP;
1081
1082         /* temporarily disable dir stat ahead in interoperability mode */
1083         if (sbi->ll_mdc_exp->exp_connect_flags & OBD_CONNECT_FID)
1084                 return -ENOTSUPP;
1085
1086         /* not the same process, don't statahead */
1087         if (lli->lli_opendir_pid != cfs_curproc_pid())
1088                 return -EBADF;
1089
1090         /*
1091          * When "ls" a dentry, the system trigger more than once "revalidate" or
1092          * "lookup", for "getattr", for "getxattr", and maybe for others.
1093          * Under patchless client mode, the operation intent is not accurate,
1094          * it maybe misguide the statahead thread. For example:
1095          * The "revalidate" call for "getattr" and "getxattr" of a dentry maybe
1096          * have the same operation intent -- "IT_GETATTR".
1097          * In fact, one dentry should has only one chance to interact with the
1098          * statahead thread, otherwise the statahead windows will be confused.
1099          * The solution is as following:
1100          * Assign "lld_sa_generation" with "sai_generation" when a dentry
1101          * "IT_GETATTR" for the first time, and the subsequent "IT_GETATTR"
1102          * will bypass interacting with statahead thread for checking:
1103          * "lld_sa_generation == lli_sai->sai_generation"
1104          */ 
1105         if (ldd && lli->lli_sai &&
1106             ldd->lld_sa_generation == lli->lli_sai->sai_generation)
1107                 return -EAGAIN;
1108
1109         return do_statahead_enter(dir, dentryp, lookup);
1110 }
1111
1112 static void inline ll_dops_init(struct dentry *de, int block)
1113 {
1114         struct ll_dentry_data *lld = ll_d2d(de);
1115
1116         if (lld == NULL && block != 0) {
1117                 ll_set_dd(de);
1118                 lld = ll_d2d(de);
1119         }
1120
1121         if (lld != NULL)
1122                 lld->lld_sa_generation = 0;
1123
1124         de->d_op = &ll_d_ops;
1125 }
1126
1127 /* llite ioctl register support rountine */
1128 #ifdef __KERNEL__
1129 enum llioc_iter {
1130         LLIOC_CONT = 0,
1131         LLIOC_STOP
1132 };
1133
1134 #define LLIOC_MAX_CMD           256
1135
1136 /*
1137  * Rules to write a callback function:
1138  *
1139  * Parameters:
1140  *  @magic: Dynamic ioctl call routine will feed this vaule with the pointer
1141  *      returned to ll_iocontrol_register.  Callback functions should use this
1142  *      data to check the potential collasion of ioctl cmd. If collasion is 
1143  *      found, callback function should return LLIOC_CONT.
1144  *  @rcp: The result of ioctl command.
1145  *
1146  *  Return values:
1147  *      If @magic matches the pointer returned by ll_iocontrol_data, the 
1148  *      callback should return LLIOC_STOP; return LLIOC_STOP otherwise.
1149  */
1150 typedef enum llioc_iter (*llioc_callback_t)(struct inode *inode, 
1151                 struct file *file, unsigned int cmd, unsigned long arg,
1152                 void *magic, int *rcp);
1153
1154 enum llioc_iter ll_iocontrol_call(struct inode *inode, struct file *file, 
1155                 unsigned int cmd, unsigned long arg, int *rcp);
1156
1157 /* export functions */
1158 /* Register ioctl block dynamatically for a regular file. 
1159  *
1160  * @cmd: the array of ioctl command set
1161  * @count: number of commands in the @cmd
1162  * @cb: callback function, it will be called if an ioctl command is found to 
1163  *      belong to the command list @cmd.
1164  *
1165  * Return vaule:
1166  *      A magic pointer will be returned if success; 
1167  *      otherwise, NULL will be returned. 
1168  * */
1169 void *ll_iocontrol_register(llioc_callback_t cb, int count, unsigned int *cmd);
1170 void ll_iocontrol_unregister(void *magic);
1171
1172 ino_t ll_fid_build_ino(struct ll_sb_info *sbi,
1173                        struct ll_fid *fid);
1174 __u32 ll_fid_build_gen(struct ll_sb_info *sbi,
1175                        struct ll_fid *fid);
1176
1177 #endif
1178
1179 #endif /* LLITE_INTERNAL_H */