4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
33 #ifndef LLITE_INTERNAL_H
34 #define LLITE_INTERNAL_H
35 #include <lustre_debug.h>
36 #include <lustre_disk.h> /* for s2sbi */
37 #include <lustre_eacl.h>
38 #include <lustre_linkea.h>
40 /* for struct cl_lock_descr and struct cl_io */
41 #include <cl_object.h>
42 #include <lustre_lmv.h>
43 #include <lustre_mdc.h>
44 #include <lustre_intent.h>
45 #include <linux/compat.h>
46 #include <linux/aio.h>
48 #include <lustre_compat.h>
49 #include "vvp_internal.h"
50 #include "range_lock.h"
56 #ifndef VM_FAULT_RETRY
57 #define VM_FAULT_RETRY 0
60 /* Kernel 3.1 kills LOOKUP_CONTINUE, LOOKUP_PARENT is equivalent to it.
61 * seem kernel commit 49084c3bb2055c401f3493c13edae14d49128ca0 */
62 #ifndef LOOKUP_CONTINUE
63 #define LOOKUP_CONTINUE LOOKUP_PARENT
66 /** Only used on client-side for indicating the tail of dir hash/offset. */
67 #define LL_DIR_END_OFF 0x7fffffffffffffffULL
68 #define LL_DIR_END_OFF_32BIT 0x7fffffffUL
70 /* 4UL * 1024 * 1024 */
71 #define LL_MAX_BLKSIZE_BITS 22
73 #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0")
74 #define LUSTRE_FPRIVATE(file) ((file)->private_data)
76 struct ll_dentry_data {
77 struct lookup_intent *lld_it;
78 unsigned int lld_sa_generation;
79 unsigned int lld_invalid:1;
80 unsigned int lld_nfs_dentry:1;
81 struct rcu_head lld_rcu_head;
84 #define ll_d2d(de) ((struct ll_dentry_data*)((de)->d_fsdata))
86 #define LLI_INODE_MAGIC 0x111d0de5
87 #define LLI_INODE_DEAD 0xdeadd00d
89 struct ll_getname_data {
90 #ifdef HAVE_DIR_CONTEXT
91 struct dir_context ctx;
93 char *lgd_name; /* points to a buffer with NAME_MAX+1 size */
94 struct lu_fid lgd_fid; /* target fid we are looking for */
95 int lgd_found; /* inode matched? */
99 struct lu_env *lg_env;
101 struct cl_lock *lg_lock;
102 unsigned long lg_gid;
105 struct ll_inode_info {
106 __u32 lli_inode_magic;
109 volatile unsigned long lli_flags;
110 struct posix_acl *lli_posix_acl;
112 /* identifying fields for both metadata and data stacks. */
113 struct lu_fid lli_fid;
114 /* master inode fid for stripe directory */
115 struct lu_fid lli_pfid;
117 /* We need all three because every inode may be opened in different
119 struct obd_client_handle *lli_mds_read_och;
120 struct obd_client_handle *lli_mds_write_och;
121 struct obd_client_handle *lli_mds_exec_och;
122 __u64 lli_open_fd_read_count;
123 __u64 lli_open_fd_write_count;
124 __u64 lli_open_fd_exec_count;
125 /* Protects access to och pointers and their usage counters */
126 struct mutex lli_och_mutex;
128 struct inode lli_vfs_inode;
130 /* the most recent timestamps obtained from mds */
134 spinlock_t lli_agl_lock;
136 /* update atime from MDS no matter if it's older than
137 * local inode atime. */
138 unsigned int lli_update_atime:1,
141 /* Try to make the d::member and f::member are aligned. Before using
142 * these members, make clear whether it is directory or not. */
146 /* serialize normal readdir and statahead-readdir. */
147 struct mutex lli_readdir_mutex;
149 /* metadata statahead */
150 /* since parent-child threads can share the same @file
151 * struct, "opendir_key" is the token when dir close for
152 * case of parent exit before child -- it is me should
153 * cleanup the dir readahead. */
154 void *lli_opendir_key;
155 struct ll_statahead_info *lli_sai;
156 /* protect statahead stuff. */
157 spinlock_t lli_sa_lock;
158 /* "opendir_pid" is the token when lookup/revalid
159 * -- I am the owner of dir statahead. */
160 pid_t lli_opendir_pid;
161 /* stat will try to access statahead entries or start
162 * statahead if this flag is set, and this flag will be
163 * set upon dir open, and cleared when dir is closed,
164 * statahead hit ratio is too low, or start statahead
166 unsigned int lli_sa_enabled:1;
167 /* generation for statahead */
168 unsigned int lli_sa_generation;
169 /* directory stripe information */
170 struct lmv_stripe_md *lli_lsm_md;
171 /* default directory stripe offset. This is extracted
172 * from the "dmv" xattr in order to decide which MDT to
173 * create a subdirectory on. The MDS itself fetches
174 * "dmv" and gets the rest of the default layout itself
175 * (count, hash, etc). */
176 __u32 lli_def_stripe_offset;
179 /* for non-directory */
181 struct mutex lli_size_mutex;
182 char *lli_symlink_name;
184 * struct rw_semaphore {
185 * signed long count; // align d.d_def_acl
186 * spinlock_t wait_lock; // align d.d_sa_lock
187 * struct list_head wait_list;
190 struct rw_semaphore lli_trunc_sem;
191 struct range_lock_tree lli_write_tree;
193 struct rw_semaphore lli_glimpse_sem;
194 ktime_t lli_glimpse_time;
195 struct list_head lli_agl_list;
198 /* for writepage() only to communicate to fsync */
202 * whenever a process try to read/write the file, the
203 * jobid of the process will be saved here, and it'll
204 * be packed into the write PRC when flush later.
206 * so the read/write statistics for jobid will not be
207 * accurate if the file is shared by different jobs.
209 char lli_jobid[LUSTRE_JOBID_SIZE];
213 /* XXX: For following frequent used members, although they maybe special
214 * used for non-directory object, it is some time-wasting to check
215 * whether the object is directory or not before using them. On the
216 * other hand, currently, sizeof(f) > sizeof(d), it cannot reduce
217 * the "ll_inode_info" size even if moving those members into u.f.
218 * So keep them out side.
220 * In the future, if more members are added only for directory,
221 * some of the following members can be moved into u.f.
223 struct cl_object *lli_clob;
225 /* mutex to request for layout lock exclusively. */
226 struct mutex lli_layout_mutex;
227 /* Layout version, protected by lli_layout_lock */
228 __u32 lli_layout_gen;
229 spinlock_t lli_layout_lock;
231 __u32 lli_projid; /* project id */
233 struct rw_semaphore lli_xattrs_list_rwsem;
234 struct mutex lli_xattrs_enq_lock;
235 struct list_head lli_xattrs; /* ll_xattr_entry->xe_list */
238 static inline __u32 ll_layout_version_get(struct ll_inode_info *lli)
242 spin_lock(&lli->lli_layout_lock);
243 gen = lli->lli_layout_gen;
244 spin_unlock(&lli->lli_layout_lock);
249 static inline void ll_layout_version_set(struct ll_inode_info *lli, __u32 gen)
251 spin_lock(&lli->lli_layout_lock);
252 lli->lli_layout_gen = gen;
253 spin_unlock(&lli->lli_layout_lock);
257 /* File data is modified. */
258 LLIF_DATA_MODIFIED = 0,
259 /* File is being restored */
260 LLIF_FILE_RESTORING = 1,
261 /* Xattr cache is attached to the file */
262 LLIF_XATTR_CACHE = 2,
265 static inline void ll_file_set_flag(struct ll_inode_info *lli,
266 enum ll_file_flags flag)
268 set_bit(flag, &lli->lli_flags);
271 static inline void ll_file_clear_flag(struct ll_inode_info *lli,
272 enum ll_file_flags flag)
274 clear_bit(flag, &lli->lli_flags);
277 static inline bool ll_file_test_flag(struct ll_inode_info *lli,
278 enum ll_file_flags flag)
280 return test_bit(flag, &lli->lli_flags);
283 static inline bool ll_file_test_and_clear_flag(struct ll_inode_info *lli,
284 enum ll_file_flags flag)
286 return test_and_clear_bit(flag, &lli->lli_flags);
289 int ll_xattr_cache_destroy(struct inode *inode);
291 int ll_xattr_cache_get(struct inode *inode,
297 int ll_dentry_init_security(struct dentry *dentry, int mode, struct qstr *name,
298 const char **secctx_name, void **secctx,
300 int ll_inode_init_security(struct dentry *dentry, struct inode *inode,
304 * Locking to guarantee consistency of non-atomic updates to long long i_size,
305 * consistency between file size and KMS.
307 * Implemented by ->lli_size_mutex and ->lsm_lock, nested in that order.
310 void ll_inode_size_lock(struct inode *inode);
311 void ll_inode_size_unlock(struct inode *inode);
313 // FIXME: replace the name of this with LL_I to conform to kernel stuff
314 // static inline struct ll_inode_info *LL_I(struct inode *inode)
315 static inline struct ll_inode_info *ll_i2info(struct inode *inode)
317 return container_of(inode, struct ll_inode_info, lli_vfs_inode);
320 /* default to about 64M of readahead on a given system. */
321 #define SBI_DEFAULT_READAHEAD_MAX (64UL << (20 - PAGE_SHIFT))
323 /* default to read-ahead full files smaller than 2MB on the second read */
324 #define SBI_DEFAULT_READAHEAD_WHOLE_MAX (2UL << (20 - PAGE_SHIFT))
329 RA_STAT_DISTANT_READPAGE,
330 RA_STAT_MISS_IN_WINDOW,
331 RA_STAT_FAILED_GRAB_PAGE,
332 RA_STAT_FAILED_MATCH,
337 RA_STAT_MAX_IN_FLIGHT,
338 RA_STAT_WRONG_GRAB_PAGE,
339 RA_STAT_FAILED_REACH_END,
344 atomic_t ra_cur_pages;
345 unsigned long ra_max_pages;
346 unsigned long ra_max_pages_per_file;
347 unsigned long ra_max_read_ahead_whole_pages;
350 /* ra_io_arg will be filled in the beginning of ll_readahead with
351 * ras_lock, then the following ll_read_ahead_pages will read RA
352 * pages according to this arg, all the items in this structure are
353 * counted by page index.
356 unsigned long ria_start; /* start offset of read-ahead*/
357 unsigned long ria_end; /* end offset of read-ahead*/
358 unsigned long ria_reserved; /* reserved pages for read-ahead */
359 unsigned long ria_end_min; /* minimum end to cover current read */
360 bool ria_eof; /* reach end of file */
361 /* If stride read pattern is detected, ria_stoff means where
362 * stride read is started. Note: for normal read-ahead, the
363 * value here is meaningless, and also it will not be accessed*/
365 /* ria_length and ria_pages are the length and pages length in the
366 * stride I/O mode. And they will also be used to check whether
367 * it is stride I/O read-ahead in the read-ahead pages*/
368 unsigned long ria_length;
369 unsigned long ria_pages;
372 /* LL_HIST_MAX=32 causes an overflow */
373 #define LL_HIST_MAX 28
374 #define LL_HIST_START 12 /* buckets start at 2^12 = 4k */
375 #define LL_PROCESS_HIST_MAX 10
376 struct per_process_info {
378 struct obd_histogram pp_r_hist;
379 struct obd_histogram pp_w_hist;
382 /* pp_extents[LL_PROCESS_HIST_MAX] will hold the combined process info */
383 struct ll_rw_extents_info {
384 struct per_process_info pp_extents[LL_PROCESS_HIST_MAX + 1];
387 #define LL_OFFSET_HIST_MAX 100
388 struct ll_rw_process_info {
391 loff_t rw_range_start;
393 loff_t rw_last_file_pos;
395 size_t rw_smallest_extent;
396 size_t rw_largest_extent;
397 struct ll_file_data *rw_last_file;
400 enum stats_track_type {
401 STATS_TRACK_ALL = 0, /* track all processes */
402 STATS_TRACK_PID, /* track process with this pid */
403 STATS_TRACK_PPID, /* track processes with this ppid */
404 STATS_TRACK_GID, /* track processes with this gid */
408 /* flags for sbi->ll_flags */
409 #define LL_SBI_NOLCK 0x01 /* DLM locking disabled (directio-only) */
410 #define LL_SBI_CHECKSUM 0x02 /* checksum each page as it's written */
411 #define LL_SBI_FLOCK 0x04
412 #define LL_SBI_USER_XATTR 0x08 /* support user xattr */
413 #define LL_SBI_ACL 0x10 /* support ACL */
414 /* LL_SBI_RMT_CLIENT 0x40 remote client */
415 #define LL_SBI_MDS_CAPA 0x80 /* support mds capa, obsolete */
416 #define LL_SBI_OSS_CAPA 0x100 /* support oss capa, obsolete */
417 #define LL_SBI_LOCALFLOCK 0x200 /* Local flocks support by kernel */
418 #define LL_SBI_LRU_RESIZE 0x400 /* lru resize support */
419 #define LL_SBI_LAZYSTATFS 0x800 /* lazystatfs mount option */
420 /* LL_SBI_SOM_PREVIEW 0x1000 SOM preview mount option, obsolete */
421 #define LL_SBI_32BIT_API 0x2000 /* generate 32 bit inodes. */
422 #define LL_SBI_64BIT_HASH 0x4000 /* support 64-bits dir hash/offset */
423 #define LL_SBI_AGL_ENABLED 0x8000 /* enable agl */
424 #define LL_SBI_VERBOSE 0x10000 /* verbose mount/umount */
425 #define LL_SBI_LAYOUT_LOCK 0x20000 /* layout lock support */
426 #define LL_SBI_USER_FID2PATH 0x40000 /* allow fid2path by unprivileged users */
427 #define LL_SBI_XATTR_CACHE 0x80000 /* support for xattr cache */
428 #define LL_SBI_NOROOTSQUASH 0x100000 /* do not apply root squash */
429 #define LL_SBI_ALWAYS_PING 0x200000 /* always ping even if server
431 #define LL_SBI_FAST_READ 0x400000 /* fast read support */
432 #define LL_SBI_FILE_SECCTX 0x800000 /* set file security context at create */
433 #define LL_SBI_PIO 0x1000000 /* parallel IO support */
434 #define LL_SBI_TINY_WRITE 0x2000000 /* tiny write support */
436 #define LL_SBI_FLAGS { \
465 /* This is embedded into llite super-blocks to keep track of connect
466 * flags (capabilities) supported by all imports given mount is
468 struct lustre_client_ocd {
469 /* This is conjunction of connect_flags across all imports
470 * (LOVs) this mount is connected to. This field is updated by
471 * cl_ocd_update() under ->lco_lock. */
473 struct mutex lco_lock;
474 struct obd_export *lco_md_exp;
475 struct obd_export *lco_dt_exp;
479 /* this protects pglist and ra_info. It isn't safe to
480 * grab from interrupt contexts */
482 spinlock_t ll_pp_extent_lock; /* pp_extent entry*/
483 spinlock_t ll_process_lock; /* ll_rw_process_info */
484 struct obd_uuid ll_sb_uuid;
485 struct obd_export *ll_md_exp;
486 struct obd_export *ll_dt_exp;
487 struct proc_dir_entry* ll_proc_root;
488 struct lu_fid ll_root_fid; /* root object fid */
491 unsigned int ll_umounting:1,
492 ll_xattr_cache_enabled:1,
493 ll_xattr_cache_set:1, /* already set to 0/1 */
494 ll_client_common_fill_super_succeeded:1;
496 struct lustre_client_ocd ll_lco;
498 struct lprocfs_stats *ll_stats; /* lprocfs stats counter */
500 /* Used to track "unstable" pages on a client, and maintain a
501 * LRU list of clean pages. An "unstable" page is defined as
502 * any page which is sent to a server as part of a bulk request,
503 * but is uncommitted to stable storage. */
504 struct cl_client_cache *ll_cache;
506 struct lprocfs_stats *ll_ra_stats;
508 struct ll_ra_info ll_ra_info;
509 unsigned int ll_namelen;
510 struct file_operations *ll_fop;
512 struct lu_site *ll_site;
513 struct cl_device *ll_cl;
515 struct ll_rw_extents_info ll_rw_extents_info;
516 int ll_extent_process_count;
517 struct ll_rw_process_info ll_rw_process_info[LL_PROCESS_HIST_MAX];
518 unsigned int ll_offset_process_count;
519 struct ll_rw_process_info ll_rw_offset_info[LL_OFFSET_HIST_MAX];
520 unsigned int ll_rw_offset_entry_count;
521 int ll_stats_track_id;
522 enum stats_track_type ll_stats_track_type;
525 /* metadata stat-ahead */
526 unsigned int ll_sa_max; /* max statahead RPCs */
527 atomic_t ll_sa_total; /* statahead thread started
529 atomic_t ll_sa_wrong; /* statahead thread stopped for
531 atomic_t ll_sa_running; /* running statahead thread
533 atomic_t ll_agl_total; /* AGL thread started count */
535 dev_t ll_sdev_orig; /* save s_dev before assign for
538 struct root_squash_info ll_squash;
541 /* st_blksize returned by stat(2), when non-zero */
542 unsigned int ll_stat_blksize;
546 * per file-descriptor read-ahead data.
548 struct ll_readahead_state {
551 * index of the last page that read(2) needed and that wasn't in the
552 * cache. Used by ras_update() to detect seeks.
554 * XXX nikita: if access seeks into cached region, Lustre doesn't see
557 unsigned long ras_last_readpage;
559 * number of pages read after last read-ahead window reset. As window
560 * is reset on each seek, this is effectively a number of consecutive
561 * accesses. Maybe ->ras_accessed_in_window is better name.
563 * XXX nikita: window is also reset (by ras_update()) when Lustre
564 * believes that memory pressure evicts read-ahead pages. In that
565 * case, it probably doesn't make sense to expand window to
566 * PTLRPC_MAX_BRW_PAGES on the third access.
568 unsigned long ras_consecutive_pages;
570 * number of read requests after the last read-ahead window reset
571 * As window is reset on each seek, this is effectively the number
572 * on consecutive read request and is used to trigger read-ahead.
574 unsigned long ras_consecutive_requests;
576 * Parameters of current read-ahead window. Handled by
577 * ras_update(). On the initial access to the file or after a seek,
578 * window is reset to 0. After 3 consecutive accesses, window is
579 * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
580 * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
582 unsigned long ras_window_start, ras_window_len;
584 * Optimal RPC size. It decides how many pages will be sent
585 * for each read-ahead.
587 unsigned long ras_rpc_size;
589 * Where next read-ahead should start at. This lies within read-ahead
590 * window. Read-ahead window is read in pieces rather than at once
591 * because: 1. lustre limits total number of pages under read-ahead by
592 * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
593 * not covered by DLM lock.
595 unsigned long ras_next_readahead;
597 * Total number of ll_file_read requests issued, reads originating
598 * due to mmap are not counted in this total. This value is used to
599 * trigger full file read-ahead after multiple reads to a small file.
601 unsigned long ras_requests;
603 * Page index with respect to the current request, these value
604 * will not be accurate when dealing with reads issued via mmap.
606 unsigned long ras_request_index;
608 * The following 3 items are used for detecting the stride I/O
610 * In stride I/O mode,
611 * ...............|-----data-----|****gap*****|--------|******|....
612 * offset |-stride_pages-|-stride_gap-|
613 * ras_stride_offset = offset;
614 * ras_stride_length = stride_pages + stride_gap;
615 * ras_stride_pages = stride_pages;
616 * Note: all these three items are counted by pages.
618 unsigned long ras_stride_length;
619 unsigned long ras_stride_pages;
620 pgoff_t ras_stride_offset;
622 * number of consecutive stride request count, and it is similar as
623 * ras_consecutive_requests, but used for stride I/O mode.
624 * Note: only more than 2 consecutive stride request are detected,
625 * stride read-ahead will be enable
627 unsigned long ras_consecutive_stride_requests;
630 extern struct kmem_cache *ll_file_data_slab;
631 struct lustre_handle;
632 struct ll_file_data {
633 struct ll_readahead_state fd_ras;
634 struct ll_grouplock fd_grouplock;
638 /* openhandle if lease exists for this file.
639 * Borrow lli->lli_och_mutex to protect assignment */
640 struct obd_client_handle *fd_lease_och;
641 struct obd_client_handle *fd_och;
642 struct file *fd_file;
643 /* Indicate whether need to report failure when close.
644 * true: failure is known, not report again.
645 * false: unknown failure, should report. */
646 bool fd_write_failed;
647 bool ll_lock_no_expand;
648 rwlock_t fd_lock; /* protect lcc list */
649 struct list_head fd_lccs; /* list of ll_cl_context */
650 /* Used by mirrored file to lead IOs to a specific mirror, usually
651 * for mirror resync. 0 means default. */
652 __u32 fd_designated_mirror;
653 /* The layout version when resync starts. Resync I/O should carry this
654 * layout version for verification to OST objects */
655 __u32 fd_layout_version;
658 extern struct proc_dir_entry *proc_lustre_fs_root;
660 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
662 return &lli->lli_vfs_inode;
665 __u32 ll_i2suppgid(struct inode *i);
666 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
668 static inline int ll_need_32bit_api(struct ll_sb_info *sbi)
670 #if BITS_PER_LONG == 32
672 #elif defined(CONFIG_COMPAT)
673 if (unlikely(sbi->ll_flags & LL_SBI_32BIT_API))
676 # ifdef CONFIG_X86_X32
677 /* in_compat_syscall() returns true when called from a kthread
678 * and CONFIG_X86_X32 is enabled, which is wrong. So check
679 * whether the caller comes from a syscall (ie. not a kthread)
680 * before calling in_compat_syscall(). */
681 if (current->flags & PF_KTHREAD)
685 return unlikely(in_compat_syscall());
687 return unlikely(sbi->ll_flags & LL_SBI_32BIT_API);
691 static inline bool ll_sbi_has_fast_read(struct ll_sb_info *sbi)
693 return !!(sbi->ll_flags & LL_SBI_FAST_READ);
696 static inline bool ll_sbi_has_tiny_write(struct ll_sb_info *sbi)
698 return !!(sbi->ll_flags & LL_SBI_TINY_WRITE);
701 void ll_ras_enter(struct file *f);
703 /* llite/lcommon_misc.c */
704 int cl_ocd_update(struct obd_device *host, struct obd_device *watched,
705 enum obd_notify_event ev, void *owner);
706 int cl_get_grouplock(struct cl_object *obj, unsigned long gid, int nonblock,
707 struct ll_grouplock *lg);
708 void cl_put_grouplock(struct ll_grouplock *lg);
710 /* llite/lproc_llite.c */
711 #ifdef CONFIG_PROC_FS
712 int lprocfs_ll_register_mountpoint(struct proc_dir_entry *parent,
713 struct super_block *sb);
714 int lprocfs_ll_register_obd(struct super_block *sb, const char *obdname);
715 void lprocfs_ll_unregister_mountpoint(struct ll_sb_info *sbi);
716 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count);
717 extern struct lprocfs_vars lprocfs_llite_obd_vars[];
719 static inline int lprocfs_ll_register_mountpoint(struct proc_dir_entry *parent,
720 struct super_block *sb) {return 0; }
721 static inline int lprocfs_ll_register_obd(struct super_block *sb,
722 const char *obdname) {return 0; }
723 static inline void lprocfs_ll_unregister_mountpoint(struct ll_sb_info *sbi) {}
724 static void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count) {}
729 LPROC_LL_DIRTY_MISSES,
731 LPROC_LL_WRITE_BYTES,
756 LPROC_LL_ALLOC_INODE,
759 LPROC_LL_GETXATTR_HITS,
761 LPROC_LL_REMOVEXATTR,
763 LPROC_LL_FILE_OPCODES
767 struct ll_dir_chain {
770 static inline void ll_dir_chain_init(struct ll_dir_chain *chain)
774 static inline void ll_dir_chain_fini(struct ll_dir_chain *chain)
778 extern const struct file_operations ll_dir_operations;
779 extern const struct inode_operations ll_dir_inode_operations;
780 #ifdef HAVE_DIR_CONTEXT
781 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
782 struct dir_context *ctx);
784 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
785 void *cookie, filldir_t filldir);
787 int ll_get_mdt_idx(struct inode *inode);
788 int ll_get_mdt_idx_by_fid(struct ll_sb_info *sbi, const struct lu_fid *fid);
789 struct page *ll_get_dir_page(struct inode *dir, struct md_op_data *op_data,
790 __u64 offset, struct ll_dir_chain *chain);
791 void ll_release_page(struct inode *inode, struct page *page, bool remove);
794 extern const struct inode_operations ll_special_inode_operations;
796 struct inode *ll_iget(struct super_block *sb, ino_t hash,
797 struct lustre_md *lic);
798 int ll_test_inode_by_fid(struct inode *inode, void *opaque);
799 int ll_md_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
800 void *data, int flag);
801 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de);
802 int ll_rmdir_entry(struct inode *dir, char *name, int namelen);
803 void ll_update_times(struct ptlrpc_request *request, struct inode *inode);
806 int ll_writepage(struct page *page, struct writeback_control *wbc);
807 int ll_writepages(struct address_space *, struct writeback_control *wbc);
808 int ll_readpage(struct file *file, struct page *page);
809 int ll_io_read_page(const struct lu_env *env, struct cl_io *io,
810 struct cl_page *page, struct file *file);
811 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
812 int vvp_io_write_commit(const struct lu_env *env, struct cl_io *io);
815 void ll_cl_add(struct file *file, const struct lu_env *env, struct cl_io *io,
817 void ll_cl_remove(struct file *file, const struct lu_env *env);
818 struct ll_cl_context *ll_cl_find(struct file *file);
820 extern const struct address_space_operations ll_aops;
823 extern struct file_operations ll_file_operations;
824 extern struct file_operations ll_file_operations_flock;
825 extern struct file_operations ll_file_operations_noflock;
826 extern struct inode_operations ll_file_inode_operations;
827 extern int ll_have_md_lock(struct inode *inode, __u64 *bits,
828 enum ldlm_mode l_req_mode);
829 extern enum ldlm_mode ll_take_md_lock(struct inode *inode, __u64 bits,
830 struct lustre_handle *lockh, __u64 flags,
831 enum ldlm_mode mode);
833 int ll_file_open(struct inode *inode, struct file *file);
834 int ll_file_release(struct inode *inode, struct file *file);
835 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
836 int ll_md_real_close(struct inode *inode, fmode_t fmode);
837 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
838 struct ll_file_data *file, loff_t pos,
839 size_t count, int rw);
840 #ifdef HAVE_INODEOPS_ENHANCED_GETATTR
841 int ll_getattr(const struct path *path, struct kstat *stat,
842 u32 request_mask, unsigned int flags);
844 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
846 struct posix_acl *ll_get_acl(struct inode *inode, int type);
847 #ifdef HAVE_IOP_SET_ACL
848 #ifdef CONFIG_FS_POSIX_ACL
849 int ll_set_acl(struct inode *inode, struct posix_acl *acl, int type);
850 #else /* !CONFIG_FS_POSIX_ACL */
851 #define ll_set_acl NULL
852 #endif /* CONFIG_FS_POSIX_ACL */
855 int ll_migrate(struct inode *parent, struct file *file, int mdtidx,
856 const char *name, int namelen);
857 int ll_get_fid_by_name(struct inode *parent, const char *name,
858 int namelen, struct lu_fid *fid, struct inode **inode);
859 #ifdef HAVE_GENERIC_PERMISSION_4ARGS
860 int ll_inode_permission(struct inode *inode, int mask, unsigned int flags);
862 # ifndef HAVE_INODE_PERMISION_2ARGS
863 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
865 int ll_inode_permission(struct inode *inode, int mask);
868 int ll_ioctl_fsgetxattr(struct inode *inode, unsigned int cmd,
870 int ll_ioctl_fssetxattr(struct inode *inode, unsigned int cmd,
873 int ll_lov_setstripe_ea_info(struct inode *inode, struct dentry *dentry,
874 __u64 flags, struct lov_user_md *lum,
876 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
877 struct lov_mds_md **lmm, int *lmm_size,
878 struct ptlrpc_request **request);
879 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
881 int ll_dir_getstripe(struct inode *inode, void **lmmp,
882 int *lmm_size, struct ptlrpc_request **request,
884 #ifdef HAVE_FILE_FSYNC_4ARGS
885 int ll_fsync(struct file *file, loff_t start, loff_t end, int data);
886 #elif defined(HAVE_FILE_FSYNC_2ARGS)
887 int ll_fsync(struct file *file, int data);
889 int ll_fsync(struct file *file, struct dentry *dentry, int data);
891 int ll_merge_attr(const struct lu_env *env, struct inode *inode);
892 int ll_fid2path(struct inode *inode, void __user *arg);
893 int ll_data_version(struct inode *inode, __u64 *data_version, int flags);
894 int ll_hsm_release(struct inode *inode);
895 int ll_hsm_state_set(struct inode *inode, struct hsm_state_set *hss);
896 void ll_io_set_mirror(struct cl_io *io, const struct file *file);
900 int ll_d_init(struct dentry *de);
901 extern const struct dentry_operations ll_d_ops;
902 void ll_intent_drop_lock(struct lookup_intent *);
903 void ll_intent_release(struct lookup_intent *);
904 void ll_invalidate_aliases(struct inode *);
905 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
906 int ll_revalidate_it_finish(struct ptlrpc_request *request,
907 struct lookup_intent *it, struct dentry *de);
909 /* llite/llite_lib.c */
910 extern struct super_operations lustre_super_operations;
912 void ll_lli_init(struct ll_inode_info *lli);
913 int ll_fill_super(struct super_block *sb, struct vfsmount *mnt);
914 void ll_put_super(struct super_block *sb);
915 void ll_kill_super(struct super_block *sb);
916 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock);
917 void ll_dir_clear_lsm_md(struct inode *inode);
918 void ll_clear_inode(struct inode *inode);
919 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr, bool hsm_import);
920 int ll_setattr(struct dentry *de, struct iattr *attr);
921 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
922 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
924 int ll_update_inode(struct inode *inode, struct lustre_md *md);
925 int ll_read_inode2(struct inode *inode, void *opaque);
926 void ll_delete_inode(struct inode *inode);
927 int ll_iocontrol(struct inode *inode, struct file *file,
928 unsigned int cmd, unsigned long arg);
929 int ll_flush_ctx(struct inode *inode);
930 void ll_umount_begin(struct super_block *sb);
931 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
932 #ifdef HAVE_SUPEROPS_USE_DENTRY
933 int ll_show_options(struct seq_file *seq, struct dentry *dentry);
935 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs);
937 void ll_dirty_page_discard_warn(struct page *page, int ioret);
938 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
939 struct super_block *, struct lookup_intent *);
940 int ll_obd_statfs(struct inode *inode, void __user *arg);
941 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
942 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *default_mdsize);
943 int ll_set_default_mdsize(struct ll_sb_info *sbi, int default_mdsize);
944 int ll_process_config(struct lustre_cfg *lcfg);
947 LUSTRE_OPC_MKDIR = 0,
948 LUSTRE_OPC_SYMLINK = 1,
949 LUSTRE_OPC_MKNOD = 2,
950 LUSTRE_OPC_CREATE = 3,
954 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
955 struct inode *i1, struct inode *i2,
956 const char *name, size_t namelen,
957 __u32 mode, __u32 opc, void *data);
958 void ll_finish_md_op_data(struct md_op_data *op_data);
959 int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg);
960 char *ll_get_fsname(struct super_block *sb, char *buf, int buflen);
961 void ll_compute_rootsquash_state(struct ll_sb_info *sbi);
962 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
963 struct lov_user_md **kbuf);
964 void ll_open_cleanup(struct super_block *sb, struct ptlrpc_request *open_req);
966 /* Compute expected user md size when passing in a md from user space */
967 static inline ssize_t ll_lov_user_md_size(const struct lov_user_md *lum)
969 switch (lum->lmm_magic) {
970 case LOV_USER_MAGIC_V1:
971 return sizeof(struct lov_user_md_v1);
972 case LOV_USER_MAGIC_V3:
973 return sizeof(struct lov_user_md_v3);
974 case LOV_USER_MAGIC_SPECIFIC:
975 if (lum->lmm_stripe_count > LOV_MAX_STRIPE_COUNT)
978 return lov_user_md_size(lum->lmm_stripe_count,
979 LOV_USER_MAGIC_SPECIFIC);
980 case LOV_USER_MAGIC_COMP_V1:
981 return ((struct lov_comp_md_v1 *)lum)->lcm_size;
987 /* llite/llite_nfs.c */
988 extern struct export_operations lustre_export_operations;
989 __u32 get_uuid2int(const char *name, int len);
990 struct inode *search_inode_for_lustre(struct super_block *sb,
991 const struct lu_fid *fid);
992 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid);
994 /* llite/symlink.c */
995 extern struct inode_operations ll_fast_symlink_inode_operations;
998 * IO arguments for various VFS I/O interfaces.
1000 struct vvp_io_args {
1001 /** normal/sendfile/splice */
1002 enum vvp_io_subtype via_io_subtype;
1006 struct kiocb *via_iocb;
1007 struct iov_iter *via_iter;
1010 struct pipe_inode_info *via_pipe;
1011 unsigned int via_flags;
1021 struct ll_cl_context {
1022 struct list_head lcc_list;
1024 const struct lu_env *lcc_env;
1025 struct cl_io *lcc_io;
1026 struct cl_page *lcc_page;
1027 enum lcc_type lcc_type;
1030 struct ll_thread_info {
1031 struct iov_iter lti_iter;
1032 struct vvp_io_args lti_args;
1033 struct ra_io_arg lti_ria;
1034 struct ll_cl_context lti_io_ctx;
1037 extern struct lu_context_key ll_thread_key;
1039 static inline struct ll_thread_info *ll_env_info(const struct lu_env *env)
1041 struct ll_thread_info *lti;
1043 lti = lu_context_key_get(&env->le_ctx, &ll_thread_key);
1044 LASSERT(lti != NULL);
1049 static inline struct vvp_io_args *ll_env_args(const struct lu_env *env,
1050 enum vvp_io_subtype type)
1052 struct vvp_io_args *via = &ll_env_info(env)->lti_args;
1054 via->via_io_subtype = type;
1059 /* llite/llite_mmap.c */
1061 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last);
1062 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
1063 void policy_from_vma(union ldlm_policy_data *policy, struct vm_area_struct *vma,
1064 unsigned long addr, size_t count);
1065 struct vm_area_struct *our_vma(struct mm_struct *mm, unsigned long addr,
1068 static inline void ll_invalidate_page(struct page *vmpage)
1070 struct address_space *mapping = vmpage->mapping;
1071 loff_t offset = vmpage->index << PAGE_SHIFT;
1073 LASSERT(PageLocked(vmpage));
1074 if (mapping == NULL)
1078 * truncate_complete_page() calls
1079 * a_ops->invalidatepage()->cl_page_delete()->vvp_page_delete().
1081 ll_teardown_mmaps(mapping, offset, offset + PAGE_SIZE);
1082 truncate_complete_page(mapping, vmpage);
1085 #define ll_s2sbi(sb) (s2lsi(sb)->lsi_llsbi)
1087 /* don't need an addref as the sb_info should be holding one */
1088 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
1090 return ll_s2sbi(sb)->ll_dt_exp;
1093 /* don't need an addref as the sb_info should be holding one */
1094 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
1096 return ll_s2sbi(sb)->ll_md_exp;
1099 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
1101 struct obd_device *obd = sbi->ll_md_exp->exp_obd;
1107 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
1108 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
1110 return ll_s2sbi(inode->i_sb);
1113 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
1115 return ll_s2dtexp(inode->i_sb);
1118 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
1120 return ll_s2mdexp(inode->i_sb);
1123 static inline struct lu_fid *ll_inode2fid(struct inode *inode)
1127 LASSERT(inode != NULL);
1128 fid = &ll_i2info(inode)->lli_fid;
1133 static inline loff_t ll_file_maxbytes(struct inode *inode)
1135 struct cl_object *obj = ll_i2info(inode)->lli_clob;
1138 return MAX_LFS_FILESIZE;
1140 return min_t(loff_t, cl_object_maxbytes(obj), MAX_LFS_FILESIZE);
1144 extern const struct xattr_handler *ll_xattr_handlers[];
1146 #define XATTR_USER_T 1
1147 #define XATTR_TRUSTED_T 2
1148 #define XATTR_SECURITY_T 3
1149 #define XATTR_ACL_ACCESS_T 4
1150 #define XATTR_ACL_DEFAULT_T 5
1151 #define XATTR_LUSTRE_T 6
1152 #define XATTR_OTHER_T 7
1154 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
1155 int ll_xattr_list(struct inode *inode, const char *name, int type,
1156 void *buffer, size_t size, u64 valid);
1157 const struct xattr_handler *get_xattr_type(const char *name);
1160 * Common IO arguments for various VFS I/O interfaces.
1162 int cl_sb_init(struct super_block *sb);
1163 int cl_sb_fini(struct super_block *sb);
1165 enum ras_update_flags {
1169 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len);
1170 void ll_ra_stats_inc(struct inode *inode, enum ra_stat which);
1174 #define LL_SA_RPC_MIN 2
1175 #define LL_SA_RPC_DEF 32
1176 #define LL_SA_RPC_MAX 8192
1178 #define LL_SA_CACHE_BIT 5
1179 #define LL_SA_CACHE_SIZE (1 << LL_SA_CACHE_BIT)
1180 #define LL_SA_CACHE_MASK (LL_SA_CACHE_SIZE - 1)
1182 /* per inode struct, for dir only */
1183 struct ll_statahead_info {
1184 struct dentry *sai_dentry;
1185 atomic_t sai_refcount; /* when access this struct, hold
1187 unsigned int sai_max; /* max ahead of lookup */
1188 __u64 sai_sent; /* stat requests sent count */
1189 __u64 sai_replied; /* stat requests which received
1191 __u64 sai_index; /* index of statahead entry */
1192 __u64 sai_index_wait; /* index of entry which is the
1193 * caller is waiting for */
1194 __u64 sai_hit; /* hit count */
1195 __u64 sai_miss; /* miss count:
1196 * for "ls -al" case, includes
1197 * hidden dentry miss;
1198 * for "ls -l" case, it does not
1199 * include hidden dentry miss.
1200 * "sai_miss_hidden" is used for
1203 unsigned int sai_consecutive_miss; /* consecutive miss */
1204 unsigned int sai_miss_hidden;/* "ls -al", but first dentry
1205 * is not a hidden one */
1206 unsigned int sai_skip_hidden;/* skipped hidden dentry count
1208 unsigned int sai_ls_all:1, /* "ls -al", do stat-ahead for
1210 sai_agl_valid:1,/* AGL is valid for the dir */
1211 sai_in_readpage:1;/* statahead is in readdir()*/
1212 wait_queue_head_t sai_waitq; /* stat-ahead wait queue */
1213 struct ptlrpc_thread sai_thread; /* stat-ahead thread */
1214 struct ptlrpc_thread sai_agl_thread; /* AGL thread */
1215 struct list_head sai_interim_entries; /* entries which got async
1216 * stat reply, but not
1218 struct list_head sai_entries; /* completed entries */
1219 struct list_head sai_agls; /* AGLs to be sent */
1220 struct list_head sai_cache[LL_SA_CACHE_SIZE];
1221 spinlock_t sai_cache_lock[LL_SA_CACHE_SIZE];
1222 atomic_t sai_cache_count; /* entry count in cache */
1225 int ll_statahead(struct inode *dir, struct dentry **dentry, bool unplug);
1226 void ll_authorize_statahead(struct inode *dir, void *key);
1227 void ll_deauthorize_statahead(struct inode *dir, void *key);
1230 blkcnt_t dirty_cnt(struct inode *inode);
1232 int cl_glimpse_size0(struct inode *inode, int agl);
1233 int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
1234 struct inode *inode, struct cl_object *clob, int agl);
1236 static inline int cl_glimpse_size(struct inode *inode)
1238 return cl_glimpse_size0(inode, 0);
1241 /* AGL is 'asychronous glimpse lock', which is a speculative lock taken as
1242 * part of statahead */
1243 static inline int cl_agl(struct inode *inode)
1245 return cl_glimpse_size0(inode, 1);
1248 int ll_file_lock_ahead(struct file *file, struct llapi_lu_ladvise *ladvise);
1250 int cl_io_get(struct inode *inode, struct lu_env **envout,
1251 struct cl_io **ioout, __u16 *refcheck);
1253 static inline int ll_glimpse_size(struct inode *inode)
1255 struct ll_inode_info *lli = ll_i2info(inode);
1258 down_read(&lli->lli_glimpse_sem);
1259 rc = cl_glimpse_size(inode);
1260 lli->lli_glimpse_time = ktime_get();
1261 up_read(&lli->lli_glimpse_sem);
1265 /* dentry may statahead when statahead is enabled and current process has opened
1266 * parent directory, and this dentry hasn't accessed statahead cache before */
1268 dentry_may_statahead(struct inode *dir, struct dentry *dentry)
1270 struct ll_inode_info *lli;
1271 struct ll_dentry_data *ldd;
1273 if (ll_i2sbi(dir)->ll_sa_max == 0)
1276 lli = ll_i2info(dir);
1278 /* statahead is not allowed for this dir, there may be three causes:
1279 * 1. dir is not opened.
1280 * 2. statahead hit ratio is too low.
1281 * 3. previous stat started statahead thread failed. */
1282 if (!lli->lli_sa_enabled)
1285 /* not the same process, don't statahead */
1286 if (lli->lli_opendir_pid != current_pid())
1290 * When stating a dentry, kernel may trigger 'revalidate' or 'lookup'
1291 * multiple times, eg. for 'getattr', 'getxattr' and etc.
1292 * For patchless client, lookup intent is not accurate, which may
1293 * misguide statahead. For example:
1294 * The 'revalidate' call for 'getattr' and 'getxattr' of a dentry will
1295 * have the same intent -- IT_GETATTR, while one dentry should access
1296 * statahead cache once, otherwise statahead windows is messed up.
1297 * The solution is as following:
1298 * Assign 'lld_sa_generation' with 'lli_sa_generation' when a dentry
1299 * IT_GETATTR for the first time, and subsequent IT_GETATTR will
1300 * bypass interacting with statahead cache by checking
1301 * 'lld_sa_generation == lli->lli_sa_generation'.
1303 ldd = ll_d2d(dentry);
1304 if (ldd != NULL && ldd->lld_sa_generation == lli->lli_sa_generation)
1310 int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
1311 enum cl_fsync_mode mode, int ignore_layout);
1313 static inline int ll_file_nolock(const struct file *file)
1315 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1316 struct inode *inode = file_inode((struct file *)file);
1318 LASSERT(fd != NULL);
1319 return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
1320 (ll_i2sbi(inode)->ll_flags & LL_SBI_NOLCK));
1323 static inline void ll_set_lock_data(struct obd_export *exp, struct inode *inode,
1324 struct lookup_intent *it, __u64 *bits)
1326 if (!it->it_lock_set) {
1327 struct lustre_handle handle;
1329 /* If this inode is a remote object, it will get two
1330 * separate locks in different namespaces, Master MDT,
1331 * where the name entry is, will grant LOOKUP lock,
1332 * remote MDT, where the object is, will grant
1333 * UPDATE|PERM lock. The inode will be attched to both
1334 * LOOKUP and PERM locks, so revoking either locks will
1335 * case the dcache being cleared */
1336 if (it->it_remote_lock_mode) {
1337 handle.cookie = it->it_remote_lock_handle;
1338 CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID
1339 "(%p) for remote lock %#llx\n",
1340 PFID(ll_inode2fid(inode)), inode,
1342 md_set_lock_data(exp, &handle, inode, NULL);
1345 handle.cookie = it->it_lock_handle;
1347 CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID"(%p)"
1348 " for lock %#llx\n",
1349 PFID(ll_inode2fid(inode)), inode, handle.cookie);
1351 md_set_lock_data(exp, &handle, inode, &it->it_lock_bits);
1352 it->it_lock_set = 1;
1356 *bits = it->it_lock_bits;
1359 static inline void ll_lock_dcache(struct inode *inode)
1361 #ifdef HAVE_DCACHE_LOCK
1362 spin_lock(&dcache_lock);
1364 spin_lock(&inode->i_lock);
1368 static inline void ll_unlock_dcache(struct inode *inode)
1370 #ifdef HAVE_DCACHE_LOCK
1371 spin_unlock(&dcache_lock);
1373 spin_unlock(&inode->i_lock);
1377 static inline int d_lustre_invalid(const struct dentry *dentry)
1379 struct ll_dentry_data *lld = ll_d2d(dentry);
1381 return (lld == NULL) || lld->lld_invalid;
1384 static inline void __d_lustre_invalidate(struct dentry *dentry)
1386 struct ll_dentry_data *lld = ll_d2d(dentry);
1389 lld->lld_invalid = 1;
1393 * Mark dentry INVALID, if dentry refcount is zero (this is normally case for
1394 * ll_md_blocking_ast), unhash this dentry, and let dcache to reclaim it later;
1395 * else dput() of the last refcount will unhash this dentry and kill it.
1397 static inline void d_lustre_invalidate(struct dentry *dentry, int nested)
1399 CDEBUG(D_DENTRY, "invalidate dentry %.*s (%p) parent %p inode %p "
1400 "refc %d\n", dentry->d_name.len, dentry->d_name.name, dentry,
1401 dentry->d_parent, dentry->d_inode, ll_d_count(dentry));
1403 spin_lock_nested(&dentry->d_lock,
1404 nested ? DENTRY_D_LOCK_NESTED : DENTRY_D_LOCK_NORMAL);
1405 __d_lustre_invalidate(dentry);
1407 * We should be careful about dentries created by d_obtain_alias().
1408 * These dentries are not put in the dentry tree, instead they are
1409 * linked to sb->s_anon through dentry->d_hash.
1410 * shrink_dcache_for_umount() shrinks the tree and sb->s_anon list.
1411 * If we unhashed such a dentry, unmount would not be able to find
1412 * it and busy inodes would be reported.
1414 if (ll_d_count(dentry) == 0 && !(dentry->d_flags & DCACHE_DISCONNECTED))
1416 spin_unlock(&dentry->d_lock);
1419 static inline void d_lustre_revalidate(struct dentry *dentry)
1421 spin_lock(&dentry->d_lock);
1422 LASSERT(ll_d2d(dentry) != NULL);
1423 ll_d2d(dentry)->lld_invalid = 0;
1424 spin_unlock(&dentry->d_lock);
1427 int ll_layout_conf(struct inode *inode, const struct cl_object_conf *conf);
1428 int ll_layout_refresh(struct inode *inode, __u32 *gen);
1429 int ll_layout_restore(struct inode *inode, loff_t start, __u64 length);
1430 int ll_layout_write_intent(struct inode *inode, enum layout_intent_opc opc,
1431 struct lu_extent *ext);
1433 int ll_xattr_init(void);
1434 void ll_xattr_fini(void);
1436 int ll_page_sync_io(const struct lu_env *env, struct cl_io *io,
1437 struct cl_page *page, enum cl_req_type crt);
1439 int ll_getparent(struct file *file, struct getparent __user *arg);
1442 int cl_setattr_ost(struct cl_object *obj, const struct iattr *attr,
1443 unsigned int attr_flags);
1445 extern struct lu_env *cl_inode_fini_env;
1446 extern __u16 cl_inode_fini_refcheck;
1448 int cl_file_inode_init(struct inode *inode, struct lustre_md *md);
1449 void cl_inode_fini(struct inode *inode);
1451 u64 cl_fid_build_ino(const struct lu_fid *fid, int api32);
1452 u32 cl_fid_build_gen(const struct lu_fid *fid);
1454 #endif /* LLITE_INTERNAL_H */