Whamcloud - gitweb
Branch HEAD
[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 lustre_handle fd_cwlockh;
508         unsigned long fd_gid;
509         struct ll_file_dir fd_dir;
510         __u32 fd_flags;
511         struct file *fd_file;
512 };
513
514 struct lov_stripe_md;
515
516 extern spinlock_t inode_lock;
517
518 extern struct proc_dir_entry *proc_lustre_fs_root;
519
520 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
521 {
522         return &lli->lli_vfs_inode;
523 }
524
525 struct it_cb_data {
526         struct inode *icbd_parent;
527         struct dentry **icbd_childp;
528         obd_id hash;
529 };
530
531 __u32 ll_i2suppgid(struct inode *i);
532 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
533
534 #define LLAP_MAGIC 98764321
535
536 extern cfs_mem_cache_t *ll_async_page_slab;
537 extern size_t ll_async_page_slab_size;
538
539 #ifdef HAVE_REGISTER_CACHE
540 #include <linux/cache_def.h>
541 #define ll_register_cache(cache) register_cache(cache)
542 #define ll_unregister_cache(cache) unregister_cache(cache)
543 #elif defined(HAVE_SHRINKER_CACHE)
544 struct cache_definition {
545         const char *name;
546         shrinker_t shrink;
547         struct shrinker *shrinker;
548 };
549
550 #define ll_register_cache(cache) do {                                   \
551         struct cache_definition *c = (cache);                           \
552         c->shrinker = set_shrinker(DEFAULT_SEEKS, c->shrink);           \
553 } while(0)
554
555 #define ll_unregister_cache(cache) do {                                 \
556         remove_shrinker((cache)->shrinker);                             \
557         (cache)->shrinker = NULL;                                       \
558 } while(0)
559 #else
560 #define ll_register_cache(cache) do {} while (0)
561 #define ll_unregister_cache(cache) do {} while (0)
562 #endif
563
564 void ll_ra_read_in(struct file *f, struct ll_ra_read *rar);
565 void ll_ra_read_ex(struct file *f, struct ll_ra_read *rar);
566 struct ll_ra_read *ll_ra_read_get(struct file *f);
567
568 /* llite/lproc_llite.c */
569 #ifdef LPROCFS
570 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
571                                 struct super_block *sb, char *osc, char *mdc);
572 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
573 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count);
574 void lprocfs_llite_init_vars(struct lprocfs_static_vars *lvars);
575 #else
576 static inline int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
577                         struct super_block *sb, char *osc, char *mdc){return 0;}
578 static inline void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi) {}
579 static void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count) {}
580 static void lprocfs_llite_init_vars(struct lprocfs_static_vars *lvars)
581 {
582         memset(lvars, 0, sizeof(*lvars));
583 }
584 #endif
585
586
587 /* llite/dir.c */
588 static inline void ll_put_page(struct page *page)
589 {
590         kunmap(page);
591         page_cache_release(page);
592 }
593
594 extern struct file_operations ll_dir_operations;
595 extern struct inode_operations ll_dir_inode_operations;
596 struct page *ll_get_dir_page(struct inode *dir, __u64 hash, int exact,
597                              struct ll_dir_chain *chain);
598 /* llite/namei.c */
599 int ll_objects_destroy(struct ptlrpc_request *request,
600                        struct inode *dir);
601 struct inode *ll_iget(struct super_block *sb, ino_t hash,
602                       struct lustre_md *lic);
603 int ll_md_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
604                        void *data, int flag);
605 #ifndef HAVE_VFS_INTENT_PATCHES
606 struct lookup_intent *ll_convert_intent(struct open_intent *oit,
607                                         int lookup_flags);
608 #endif
609 int ll_lookup_it_finish(struct ptlrpc_request *request,
610                         struct lookup_intent *it, void *data);
611 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
612
613 /* llite/rw.c */
614 int ll_prepare_write(struct file *, struct page *, unsigned from, unsigned to);
615 int ll_commit_write(struct file *, struct page *, unsigned from, unsigned to);
616 int ll_writepage(struct page *page, struct writeback_control *wbc);
617 void ll_removepage(struct page *page);
618 int ll_readpage(struct file *file, struct page *page);
619 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
620 void ll_truncate(struct inode *inode);
621 int ll_file_punch(struct inode *, loff_t, int);
622 ssize_t ll_file_lockless_io(struct file *, char *, size_t, loff_t *, int);
623 void ll_clear_file_contended(struct inode*);
624 int ll_sync_page_range(struct inode *, struct address_space *, loff_t, size_t);
625 int ll_readahead(const struct lu_env *env, struct cl_io *io, struct ll_readahead_state *ras,
626                  struct address_space *mapping, struct cl_page_list *queue, int flags);
627
628 /* llite/file.c */
629 extern struct file_operations ll_file_operations;
630 extern struct file_operations ll_file_operations_flock;
631 extern struct file_operations ll_file_operations_noflock;
632 extern struct inode_operations ll_file_inode_operations;
633 extern int ll_inode_revalidate_it(struct dentry *, struct lookup_intent *);
634 extern int ll_have_md_lock(struct inode *inode, __u64 bits);
635 extern ldlm_mode_t ll_take_md_lock(struct inode *inode, __u64 bits,
636                                    struct lustre_handle *lockh);
637 int ll_file_open(struct inode *inode, struct file *file);
638 int ll_file_release(struct inode *inode, struct file *file);
639 int ll_glimpse_ioctl(struct ll_sb_info *sbi,
640                      struct lov_stripe_md *lsm, lstat_t *st);
641 int ll_local_open(struct file *file,
642                   struct lookup_intent *it, struct ll_file_data *fd,
643                   struct obd_client_handle *och);
644 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
645 int ll_md_close(struct obd_export *md_exp, struct inode *inode,
646                 struct file *file);
647 int ll_md_real_close(struct inode *inode, int flags);
648 void ll_epoch_close(struct inode *inode, struct md_op_data *op_data,
649                     struct obd_client_handle **och, unsigned long flags);
650 int ll_sizeonmds_update(struct inode *inode, struct lustre_handle *fh,
651                         __u64 ioepoch);
652 int ll_inode_getattr(struct inode *inode, struct obdo *obdo);
653 int ll_md_setattr(struct inode *inode, struct md_op_data *op_data,
654                   struct md_open_data **mod);
655 void ll_pack_inode2opdata(struct inode *inode, struct md_op_data *op_data,
656                           struct lustre_handle *fh);
657 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
658                               struct ll_file_data *file, loff_t pos,
659                               size_t count, int rw);
660 int ll_getattr_it(struct vfsmount *mnt, struct dentry *de,
661                struct lookup_intent *it, struct kstat *stat);
662 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
663 struct ll_file_data *ll_file_data_get(void);
664 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
665 int ll_lov_setstripe_ea_info(struct inode *inode, struct file *file,
666                              int flags, struct lov_user_md *lum,
667                              int lum_size);
668 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
669                              struct lov_mds_md **lmm, int *lmm_size,
670                              struct ptlrpc_request **request);
671 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
672                      int set_default);
673 int ll_dir_getstripe(struct inode *inode, struct lov_mds_md **lmm,
674                      int *lmm_size, struct ptlrpc_request **request);
675 int ll_fsync(struct file *file, struct dentry *dentry, int data);
676 int ll_fiemap(struct inode *inode, struct ll_user_fiemap *fiemap,
677               int num_bytes);
678 int ll_merge_lvb(struct inode *inode);
679
680 /* llite/dcache.c */
681 /* llite/namei.c */
682 /**
683  * protect race ll_find_aliases vs ll_revalidate_it vs ll_unhash_aliases
684  */
685 extern spinlock_t ll_lookup_lock;
686 extern struct dentry_operations ll_d_ops;
687 void ll_intent_drop_lock(struct lookup_intent *);
688 void ll_intent_release(struct lookup_intent *);
689 int ll_drop_dentry(struct dentry *dentry);
690 extern void ll_set_dd(struct dentry *de);
691 int ll_drop_dentry(struct dentry *dentry);
692 void ll_unhash_aliases(struct inode *);
693 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft);
694 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
695 int ll_dcompare(struct dentry *parent, struct qstr *d_name, struct qstr *name);
696 int ll_revalidate_it_finish(struct ptlrpc_request *request,
697                             struct lookup_intent *it, struct dentry *de);
698
699 /* llite/llite_lib.c */
700 extern struct super_operations lustre_super_operations;
701
702 char *ll_read_opt(const char *opt, char *data);
703 void ll_lli_init(struct ll_inode_info *lli);
704 int ll_fill_super(struct super_block *sb);
705 void ll_put_super(struct super_block *sb);
706 void ll_kill_super(struct super_block *sb);
707 struct inode *ll_inode_from_lock(struct ldlm_lock *lock);
708 void ll_clear_inode(struct inode *inode);
709 int ll_setattr_raw(struct inode *inode, struct iattr *attr);
710 int ll_setattr(struct dentry *de, struct iattr *attr);
711 #ifndef HAVE_STATFS_DENTRY_PARAM
712 int ll_statfs(struct super_block *sb, struct kstatfs *sfs);
713 #else
714 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
715 #endif
716 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
717                        __u64 max_age, __u32 flags);
718 void ll_update_inode(struct inode *inode, struct lustre_md *md);
719 void ll_read_inode2(struct inode *inode, void *opaque);
720 void ll_delete_inode(struct inode *inode);
721 int ll_iocontrol(struct inode *inode, struct file *file,
722                  unsigned int cmd, unsigned long arg);
723 int ll_flush_ctx(struct inode *inode);
724 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
725 void ll_umount_begin(struct vfsmount *vfsmnt, int flags);
726 #else
727 void ll_umount_begin(struct super_block *sb);
728 #endif
729 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
730 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs);
731 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
732                   struct super_block *);
733 void lustre_dump_dentry(struct dentry *, int recur);
734 void lustre_dump_inode(struct inode *);
735 int ll_obd_statfs(struct inode *inode, void *arg);
736 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
737 int ll_process_config(struct lustre_cfg *lcfg);
738 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
739                                       struct inode *i1, struct inode *i2,
740                                       const char *name, int namelen,
741                                       int mode, __u32 opc, void *data);
742 void ll_finish_md_op_data(struct md_op_data *op_data);
743
744 /* llite/llite_nfs.c */
745 extern struct export_operations lustre_export_operations;
746 __u32 get_uuid2int(const char *name, int len);
747 struct dentry *ll_fh_to_dentry(struct super_block *sb, __u32 *data, int len,
748                                int fhtype, int parent);
749 int ll_dentry_to_fh(struct dentry *, __u32 *datap, int *lenp, int need_parent);
750
751 /* llite/special.c */
752 extern struct inode_operations ll_special_inode_operations;
753 extern struct file_operations ll_special_chr_inode_fops;
754 extern struct file_operations ll_special_chr_file_fops;
755 extern struct file_operations ll_special_blk_inode_fops;
756 extern struct file_operations ll_special_fifo_inode_fops;
757 extern struct file_operations ll_special_fifo_file_fops;
758 extern struct file_operations ll_special_sock_inode_fops;
759
760 /* llite/symlink.c */
761 extern struct inode_operations ll_fast_symlink_inode_operations;
762
763 /* llite/llite_close.c */
764 struct ll_close_queue {
765         spinlock_t              lcq_lock;
766         struct list_head        lcq_head;
767         wait_queue_head_t       lcq_waitq;
768         struct completion       lcq_comp;
769         atomic_t                lcq_stop;
770 };
771
772 struct vvp_thread_info {
773         struct ost_lvb       vti_lvb;
774         struct cl_2queue     vti_queue;
775         struct iovec         vti_local_iov;
776         struct ccc_io_args   vti_args;
777         struct ra_io_arg     vti_ria;
778         struct kiocb         vti_kiocb;
779 };
780
781 struct ccc_object *cl_inode2ccc(struct inode *inode);
782
783 static inline struct vvp_thread_info *vvp_env_info(const struct lu_env *env)
784 {
785         extern struct lu_context_key vvp_key;
786         struct vvp_thread_info      *info;
787
788         info = lu_context_key_get(&env->le_ctx, &vvp_key);
789         LASSERT(info != NULL);
790         return info;
791 }
792
793 void vvp_write_pending (struct ccc_object *club, struct ccc_page *page);
794 void vvp_write_complete(struct ccc_object *club, struct ccc_page *page);
795
796 struct vvp_io {
797         union {
798                 struct {
799                         read_actor_t      cui_actor;
800                         void             *cui_target;
801                 } read;
802                 struct vvp_fault_io {
803                         /**
804                          * Inode modification time that is checked across DLM
805                          * lock request.
806                          */
807                         time_t                 ft_mtime;
808                         struct vm_area_struct *ft_vma;
809                         /**
810                          * Virtual address at which fault occurred.
811                          */
812                         unsigned long          ft_address;
813                         /**
814                          * Fault type, as to be supplied to filemap_nopage().
815                          */
816                         int                   *ft_type;
817                 } fault;
818         } u;
819         /**
820          * Read-ahead state used by read and page-fault IO contexts.
821          */
822         struct ll_ra_read    cui_bead;
823         /**
824          * Set when cui_bead has been initialized.
825          */
826         int                  cui_ra_window_set;
827         /**
828          * If IO was created directly in low level method like
829          * ->prepare_write(), this field stores the number of method calls
830          * that constitute this IO. This field is decremented by ll_cl_fini(),
831          * and cl_io is destroyed, when it reaches 0. When oneshot IO
832          * completes, this fields is set to -1.
833          */
834
835         int                  cui_oneshot;
836         /**
837          * Partially truncated page, that vvp_io_trunc_start() keeps locked
838          * across truncate.
839          */
840         struct cl_page      *cui_partpage;
841 };
842
843 struct vvp_session {
844         struct vvp_io vs_ios;
845 };
846
847 static inline struct vvp_session *vvp_env_session(const struct lu_env *env)
848 {
849         extern struct lu_context_key vvp_session_key;
850         struct vvp_session *ses;
851
852         ses = lu_context_key_get(env->le_ses, &vvp_session_key);
853         LASSERT(ses != NULL);
854         return ses;
855 }
856
857 static inline struct vvp_io *vvp_env_io(const struct lu_env *env)
858 {
859         return &vvp_env_session(env)->vs_ios;
860 }
861
862 void ll_queue_done_writing(struct inode *inode, unsigned long flags);
863 void ll_close_thread_shutdown(struct ll_close_queue *lcq);
864 int ll_close_thread_start(struct ll_close_queue **lcq_ret);
865
866 /* llite/llite_mmap.c */
867 typedef struct rb_root  rb_root_t;
868 typedef struct rb_node  rb_node_t;
869
870 struct ll_lock_tree_node;
871 struct ll_lock_tree {
872         rb_root_t                       lt_root;
873         struct list_head                lt_locked_list;
874         struct ll_file_data             *lt_fd;
875 };
876
877 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last);
878 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
879 struct ll_lock_tree_node * ll_node_from_inode(struct inode *inode, __u64 start,
880                                               __u64 end, ldlm_mode_t mode);
881 void policy_from_vma(ldlm_policy_data_t *policy,
882                 struct vm_area_struct *vma, unsigned long addr, size_t count);
883 struct vm_area_struct *our_vma(unsigned long addr, size_t count);
884
885 #define    ll_s2sbi(sb)        (s2lsi(sb)->lsi_llsbi)
886
887 static inline __u64 ll_ts2u64(struct timespec *time)
888 {
889         __u64 t = time->tv_sec;
890         return t;
891 }
892
893 /* don't need an addref as the sb_info should be holding one */
894 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
895 {
896         return ll_s2sbi(sb)->ll_dt_exp;
897 }
898
899 /* don't need an addref as the sb_info should be holding one */
900 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
901 {
902         return ll_s2sbi(sb)->ll_md_exp;
903 }
904
905 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
906 {
907         struct obd_device *obd = sbi->ll_md_exp->exp_obd;
908         if (obd == NULL)
909                 LBUG();
910         return &obd->u.cli;
911 }
912
913 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
914 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
915 {
916         return ll_s2sbi(inode->i_sb);
917 }
918
919 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
920 {
921         return ll_s2dtexp(inode->i_sb);
922 }
923
924 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
925 {
926         return ll_s2mdexp(inode->i_sb);
927 }
928
929 static inline struct lu_fid *ll_inode2fid(struct inode *inode)
930 {
931         struct lu_fid *fid;
932         LASSERT(inode != NULL);
933         fid = &ll_i2info(inode)->lli_fid;
934         LASSERT(fid_is_igif(fid) || fid_ver(fid) == 0);
935         return fid;
936 }
937
938 static inline int ll_mds_max_easize(struct super_block *sb)
939 {
940         return sbi2mdc(ll_s2sbi(sb))->cl_max_mds_easize;
941 }
942
943 static inline __u64 ll_file_maxbytes(struct inode *inode)
944 {
945         return ll_i2info(inode)->lli_maxbytes;
946 }
947
948 /* llite/xattr.c */
949 int ll_setxattr(struct dentry *dentry, const char *name,
950                 const void *value, size_t size, int flags);
951 ssize_t ll_getxattr(struct dentry *dentry, const char *name,
952                     void *buffer, size_t size);
953 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
954 int ll_removexattr(struct dentry *dentry, const char *name);
955
956 /* llite/remote_perm.c */
957 extern cfs_mem_cache_t *ll_remote_perm_cachep;
958 extern cfs_mem_cache_t *ll_rmtperm_hash_cachep;
959
960 struct hlist_head *alloc_rmtperm_hash(void);
961 void free_rmtperm_hash(struct hlist_head *hash);
962 int ll_update_remote_perm(struct inode *inode, struct mdt_remote_perm *perm);
963 int lustre_check_remote_perm(struct inode *inode, int mask);
964
965 /* llite/llite_fid.c */
966 ino_t ll_fid_build_ino(struct ll_sb_info *sbi, struct lu_fid *fid);
967 __u32 ll_fid_build_gen(struct ll_sb_info *sbi, struct lu_fid *fid);
968
969 /* llite/llite_capa.c */
970 extern cfs_timer_t ll_capa_timer;
971
972 int ll_capa_thread_start(void);
973 void ll_capa_thread_stop(void);
974 void ll_capa_timer_callback(unsigned long unused);
975
976 struct obd_capa *ll_add_capa(struct inode *inode, struct obd_capa *ocapa);
977 int ll_update_capa(struct obd_capa *ocapa, struct lustre_capa *capa);
978
979 void ll_capa_open(struct inode *inode);
980 void ll_capa_close(struct inode *inode);
981
982 struct obd_capa *ll_mdscapa_get(struct inode *inode);
983 struct obd_capa *ll_osscapa_get(struct inode *inode, __u64 opc);
984
985 void ll_truncate_free_capa(struct obd_capa *ocapa);
986 void ll_clear_inode_capas(struct inode *inode);
987 void ll_print_capa_stat(struct ll_sb_info *sbi);
988
989 /* llite/llite_cl.c */
990 extern struct lu_device_type vvp_device_type;
991
992 /**
993  * Common IO arguments for various VFS I/O interfaces.
994  */
995
996 int cl_sb_init(struct super_block *sb);
997 int cl_sb_fini(struct super_block *sb);
998 int cl_inode_init(struct inode *inode, struct lustre_md *md);
999 void cl_inode_fini(struct inode *inode);
1000
1001 enum cl_lock_mode  vvp_mode_from_vma(struct vm_area_struct *vma);
1002 void ll_io_init(struct cl_io *io, const struct file *file, int write);
1003
1004 void ras_update(struct ll_sb_info *sbi, struct inode *inode,
1005                 struct ll_readahead_state *ras, unsigned long index,
1006                 unsigned hit);
1007 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len);
1008 int ll_is_file_contended(struct file *file);
1009 void ll_ra_stats_inc(struct address_space *mapping, enum ra_stat which);
1010
1011 /* llite/llite_rmtacl.c */
1012 #ifdef CONFIG_FS_POSIX_ACL
1013 obd_valid rce_ops2valid(int ops);
1014 struct rmtacl_ctl_entry *rct_search(struct rmtacl_ctl_table *rct, pid_t key);
1015 int rct_add(struct rmtacl_ctl_table *rct, pid_t key, int ops);
1016 int rct_del(struct rmtacl_ctl_table *rct, pid_t key);
1017 void rct_init(struct rmtacl_ctl_table *rct);
1018 void rct_fini(struct rmtacl_ctl_table *rct);
1019
1020 void ee_free(struct eacl_entry *ee);
1021 int ee_add(struct eacl_table *et, pid_t key, struct lu_fid *fid, int type,
1022            ext_acl_xattr_header *header);
1023 struct eacl_entry *et_search_del(struct eacl_table *et, pid_t key,
1024                                  struct lu_fid *fid, int type);
1025 void et_search_free(struct eacl_table *et, pid_t key);
1026 void et_init(struct eacl_table *et);
1027 void et_fini(struct eacl_table *et);
1028 #endif
1029
1030 /* statahead.c */
1031
1032 #define LL_SA_RPC_MIN   2
1033 #define LL_SA_RPC_DEF   32
1034 #define LL_SA_RPC_MAX   8192
1035
1036 /* per inode struct, for dir only */
1037 struct ll_statahead_info {
1038         struct inode           *sai_inode;
1039         unsigned int            sai_generation; /* generation for statahead */
1040         atomic_t                sai_refcount;   /* when access this struct, hold
1041                                                  * refcount */
1042         unsigned int            sai_sent;       /* stat requests sent count */
1043         unsigned int            sai_replied;    /* stat requests which received
1044                                                  * reply */
1045         unsigned int            sai_max;        /* max ahead of lookup */
1046         unsigned int            sai_index;      /* index of statahead entry */
1047         unsigned int            sai_index_next; /* index for the next statahead
1048                                                  * entry to be stated */
1049         unsigned int            sai_hit;        /* hit count */
1050         unsigned int            sai_miss;       /* miss count:
1051                                                  * for "ls -al" case, it includes
1052                                                  * hidden dentry miss;
1053                                                  * for "ls -l" case, it does not
1054                                                  * include hidden dentry miss.
1055                                                  * "sai_miss_hidden" is used for
1056                                                  * the later case.
1057                                                  */
1058         unsigned int            sai_consecutive_miss; /* consecutive miss */
1059         unsigned int            sai_miss_hidden;/* "ls -al", but first dentry
1060                                                  * is not a hidden one */
1061         unsigned int            sai_skip_hidden;/* skipped hidden dentry count */
1062         unsigned int            sai_ls_all:1;   /* "ls -al", do stat-ahead for
1063                                                  * hidden entries */
1064         cfs_waitq_t             sai_waitq;      /* stat-ahead wait queue */
1065         struct ptlrpc_thread    sai_thread;     /* stat-ahead thread */
1066         struct list_head        sai_entries_sent;     /* entries sent out */
1067         struct list_head        sai_entries_received; /* entries returned */
1068         struct list_head        sai_entries_stated;   /* entries stated */
1069 };
1070
1071 int do_statahead_enter(struct inode *dir, struct dentry **dentry, int lookup);
1072 void ll_statahead_exit(struct dentry *dentry, int result);
1073 void ll_stop_statahead(struct inode *inode, void *key);
1074
1075 static inline
1076 void ll_statahead_mark(struct dentry *dentry)
1077 {
1078         struct ll_inode_info *lli = ll_i2info(dentry->d_parent->d_inode);
1079         struct ll_dentry_data *ldd = ll_d2d(dentry);
1080
1081         /* not the same process, don't mark */
1082         if (lli->lli_opendir_pid != cfs_curproc_pid())
1083                 return;
1084
1085         spin_lock(&lli->lli_lock);
1086         if (likely(lli->lli_sai != NULL && ldd != NULL))
1087                 ldd->lld_sa_generation = lli->lli_sai->sai_generation;
1088         spin_unlock(&lli->lli_lock);
1089 }
1090
1091 static inline
1092 int ll_statahead_enter(struct inode *dir, struct dentry **dentryp, int lookup)
1093 {
1094         struct ll_sb_info        *sbi = ll_i2sbi(dir);
1095         struct ll_inode_info     *lli = ll_i2info(dir);
1096         struct ll_dentry_data    *ldd = ll_d2d(*dentryp);
1097
1098         if (sbi->ll_sa_max == 0)
1099                 return -ENOTSUPP;
1100
1101         /* not the same process, don't statahead */
1102         if (lli->lli_opendir_pid != cfs_curproc_pid())
1103                 return -EBADF;
1104
1105         /*
1106          * When "ls" a dentry, the system trigger more than once "revalidate" or
1107          * "lookup", for "getattr", for "getxattr", and maybe for others.
1108          * Under patchless client mode, the operation intent is not accurate,
1109          * it maybe misguide the statahead thread. For example:
1110          * The "revalidate" call for "getattr" and "getxattr" of a dentry maybe
1111          * have the same operation intent -- "IT_GETATTR".
1112          * In fact, one dentry should has only one chance to interact with the
1113          * statahead thread, otherwise the statahead windows will be confused.
1114          * The solution is as following:
1115          * Assign "lld_sa_generation" with "sai_generation" when a dentry
1116          * "IT_GETATTR" for the first time, and the subsequent "IT_GETATTR"
1117          * will bypass interacting with statahead thread for checking:
1118          * "lld_sa_generation == lli_sai->sai_generation"
1119          */
1120         if (ldd && lli->lli_sai &&
1121             ldd->lld_sa_generation == lli->lli_sai->sai_generation)
1122                 return -EAGAIN;
1123
1124         return do_statahead_enter(dir, dentryp, lookup);
1125 }
1126
1127 static void inline ll_dops_init(struct dentry *de, int block)
1128 {
1129         struct ll_dentry_data *lld = ll_d2d(de);
1130
1131         if (lld == NULL && block != 0) {
1132                 ll_set_dd(de);
1133                 lld = ll_d2d(de);
1134         }
1135
1136         if (lld != NULL)
1137                 lld->lld_sa_generation = 0;
1138
1139         de->d_op = &ll_d_ops;
1140 }
1141
1142 /* llite ioctl register support rountine */
1143 #ifdef __KERNEL__
1144 enum llioc_iter {
1145         LLIOC_CONT = 0,
1146         LLIOC_STOP
1147 };
1148
1149 #define LLIOC_MAX_CMD           256
1150
1151 /*
1152  * Rules to write a callback function:
1153  *
1154  * Parameters:
1155  *  @magic: Dynamic ioctl call routine will feed this vaule with the pointer
1156  *      returned to ll_iocontrol_register.  Callback functions should use this
1157  *      data to check the potential collasion of ioctl cmd. If collasion is
1158  *      found, callback function should return LLIOC_CONT.
1159  *  @rcp: The result of ioctl command.
1160  *
1161  *  Return values:
1162  *      If @magic matches the pointer returned by ll_iocontrol_data, the
1163  *      callback should return LLIOC_STOP; return LLIOC_STOP otherwise.
1164  */
1165 typedef enum llioc_iter (*llioc_callback_t)(struct inode *inode,
1166                 struct file *file, unsigned int cmd, unsigned long arg,
1167                 void *magic, int *rcp);
1168
1169 enum llioc_iter ll_iocontrol_call(struct inode *inode, struct file *file,
1170                 unsigned int cmd, unsigned long arg, int *rcp);
1171
1172 /* export functions */
1173 /* Register ioctl block dynamatically for a regular file.
1174  *
1175  * @cmd: the array of ioctl command set
1176  * @count: number of commands in the @cmd
1177  * @cb: callback function, it will be called if an ioctl command is found to
1178  *      belong to the command list @cmd.
1179  *
1180  * Return vaule:
1181  *      A magic pointer will be returned if success;
1182  *      otherwise, NULL will be returned.
1183  * */
1184 void *ll_iocontrol_register(llioc_callback_t cb, int count, unsigned int *cmd);
1185 void ll_iocontrol_unregister(void *magic);
1186
1187 #endif
1188
1189 /* lclient compat stuff */
1190 #define cl_inode_info ll_inode_info
1191 #define cl_i2info(info) ll_i2info(info)
1192 #define cl_inode_mode(inode) ((inode)->i_mode)
1193 #define cl_i2sbi ll_i2sbi
1194 #define cl_isize_read(inode) i_size_read(inode)
1195 #define cl_isize_write(inode,kms) i_size_write(inode, kms)
1196 #define cl_isize_write_nolock(inode,kms) do {(inode)->i_size=(kms);}while(0)
1197
1198 static inline void cl_isize_lock(struct inode *inode, int lsmlock)
1199 {
1200         ll_inode_size_lock(inode, lsmlock);
1201 }
1202
1203 static inline void cl_isize_unlock(struct inode *inode, int lsmlock)
1204 {
1205         ll_inode_size_unlock(inode, lsmlock);
1206 }
1207
1208 static inline int cl_merge_lvb(struct inode *inode)
1209 {
1210         return ll_merge_lvb(inode);
1211 }
1212
1213 #define cl_inode_atime(inode) LTIME_S((inode)->i_atime)
1214 #define cl_inode_ctime(inode) LTIME_S((inode)->i_ctime)
1215 #define cl_inode_mtime(inode) LTIME_S((inode)->i_mtime)
1216
1217 struct obd_capa *cl_capa_lookup(struct inode *inode, enum cl_req_type crt);
1218
1219 /** direct write pages */
1220 struct ll_dio_pages {
1221         /** page array to be written. we don't support
1222          * partial pages except the last one. */
1223         struct page **ldp_pages;
1224         /* offset of each page */
1225         loff_t       *ldp_offsets;
1226         /** if ldp_offsets is NULL, it means a sequential
1227          * pages to be written, then this is the file offset
1228          * of the * first page. */
1229         loff_t        ldp_start_offset;
1230         /** how many bytes are to be written. */
1231         size_t        ldp_size;
1232         /** # of pages in the array. */
1233         int           ldp_nr;
1234 };
1235
1236 extern ssize_t ll_direct_rw_pages(const struct lu_env *env, struct cl_io *io,
1237                                   int rw, struct inode *inode,
1238                                   struct ll_dio_pages *pv);
1239
1240 #endif /* LLITE_INTERNAL_H */