Whamcloud - gitweb
LU-9679 lustre: remove some "#ifdef CONFIG*" from .c files.
[fs/lustre-release.git] / lustre / llite / llite_internal.h
index 82e3ca6..93b1a51 100644 (file)
 #include <linux/compat.h>
 #include <linux/aio.h>
 #include <lustre_compat.h>
+#include <lustre_crypto.h>
+
+#ifndef VM_FAULT_RETRY
+#include <linux/mm_types.h>
+#endif
 
 #include "vvp_internal.h"
 #include "range_lock.h"
 #define LL_MAX_BLKSIZE_BITS 22
 
 #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0")
-#define LUSTRE_FPRIVATE(file) ((file)->private_data)
+
+#define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)
 
 struct ll_dentry_data {
-       struct lookup_intent            *lld_it;
        unsigned int                    lld_sa_generation;
        unsigned int                    lld_invalid:1;
        unsigned int                    lld_nfs_dentry:1;
@@ -103,6 +108,16 @@ struct ll_grouplock {
        unsigned long    lg_gid;
 };
 
+/* See comment on trunc_sem_down_read_nowait */
+struct ll_trunc_sem {
+       /* when positive, this is a count of readers, when -1, it indicates
+        * the semaphore is held for write, and 0 is unlocked
+        */
+       atomic_t        ll_trunc_readers;
+       /* this tracks a count of waiting writers */
+       atomic_t        ll_trunc_waiters;
+};
+
 struct ll_inode_info {
        __u32                           lli_inode_magic;
        spinlock_t                      lli_lock;
@@ -132,6 +147,7 @@ struct ll_inode_info {
        s64                             lli_atime;
        s64                             lli_mtime;
        s64                             lli_ctime;
+       s64                             lli_btime;
        spinlock_t                      lli_agl_lock;
 
        /* Try to make the d::member and f::member are aligned. Before using
@@ -171,15 +187,9 @@ struct ll_inode_info {
                struct {
                        struct mutex            lli_size_mutex;
                        char                   *lli_symlink_name;
-                       /*
-                        * struct rw_semaphore {
-                        *    signed long       count;     // align d.d_def_acl
-                        *    spinlock_t        wait_lock; // align d.d_sa_lock
-                        *    struct list_head wait_list;
-                        * }
-                        */
-                       struct rw_semaphore     lli_trunc_sem;
+                       struct ll_trunc_sem     lli_trunc_sem;
                        struct range_lock_tree  lli_write_tree;
+                       struct mutex            lli_setattr_mutex;
 
                        struct rw_semaphore     lli_glimpse_sem;
                        ktime_t                 lli_glimpse_time;
@@ -226,6 +236,10 @@ struct ll_inode_info {
                        struct mutex             lli_group_mutex;
                        __u64                    lli_group_users;
                        unsigned long            lli_group_gid;
+
+                       __u64                    lli_attr_valid;
+                       __u64                    lli_lazysize;
+                       __u64                    lli_lazyblocks;
                };
        };
 
@@ -254,6 +268,116 @@ struct ll_inode_info {
        struct list_head                lli_xattrs; /* ll_xattr_entry->xe_list */
 };
 
+static inline void ll_trunc_sem_init(struct ll_trunc_sem *sem)
+{
+       atomic_set(&sem->ll_trunc_readers, 0);
+       atomic_set(&sem->ll_trunc_waiters, 0);
+}
+
+/* This version of down read ignores waiting writers, meaning if the semaphore
+ * is already held for read, this down_read will 'join' that reader and also
+ * take the semaphore.
+ *
+ * This lets us avoid an unusual deadlock.
+ *
+ * We must take lli_trunc_sem in read mode on entry in to various i/o paths
+ * in Lustre, in order to exclude truncates.  Some of these paths then need to
+ * take the mmap_sem, while still holding the trunc_sem.  The problem is that
+ * page faults hold the mmap_sem when calling in to Lustre, and then must also
+ * take the trunc_sem to exclude truncate.
+ *
+ * This means the locking order for trunc_sem and mmap_sem is sometimes AB,
+ * sometimes BA.  This is almost OK because in both cases, we take the trunc
+ * sem for read, so it doesn't block.
+ *
+ * However, if a write mode user (truncate, a setattr op) arrives in the
+ * middle of this, the second reader on the truncate_sem will wait behind that
+ * writer.
+ *
+ * So we have, on our truncate sem, in order (where 'reader' and 'writer' refer
+ * to the mode in which they take the semaphore):
+ * reader (holding mmap_sem, needs truncate_sem)
+ * writer
+ * reader (holding truncate sem, waiting for mmap_sem)
+ *
+ * And so the readers deadlock.
+ *
+ * The solution is this modified semaphore, where this down_read ignores
+ * waiting write operations, and all waiters are woken up at once, so readers
+ * using down_read_nowait cannot get stuck behind waiting writers, regardless
+ * of the order they arrived in.
+ *
+ * down_read_nowait is only used in the page fault case, where we already hold
+ * the mmap_sem.  This is because otherwise repeated read and write operations
+ * (which take the truncate sem) could prevent a truncate from ever starting.
+ * This could still happen with page faults, but without an even more complex
+ * mechanism, this is unavoidable.
+ *
+ * LU-12460
+ */
+static inline void trunc_sem_down_read_nowait(struct ll_trunc_sem *sem)
+{
+       wait_var_event(&sem->ll_trunc_readers,
+                      atomic_inc_unless_negative(&sem->ll_trunc_readers));
+}
+
+static inline void trunc_sem_down_read(struct ll_trunc_sem *sem)
+{
+       wait_var_event(&sem->ll_trunc_readers,
+                      atomic_read(&sem->ll_trunc_waiters) == 0 &&
+                      atomic_inc_unless_negative(&sem->ll_trunc_readers));
+}
+
+static inline void trunc_sem_up_read(struct ll_trunc_sem *sem)
+{
+       if (atomic_dec_return(&sem->ll_trunc_readers) == 0 &&
+           atomic_read(&sem->ll_trunc_waiters))
+               wake_up_var(&sem->ll_trunc_readers);
+}
+
+static inline void trunc_sem_down_write(struct ll_trunc_sem *sem)
+{
+       atomic_inc(&sem->ll_trunc_waiters);
+       wait_var_event(&sem->ll_trunc_readers,
+                      atomic_cmpxchg(&sem->ll_trunc_readers, 0, -1) == 0);
+       atomic_dec(&sem->ll_trunc_waiters);
+}
+
+static inline void trunc_sem_up_write(struct ll_trunc_sem *sem)
+{
+       atomic_set(&sem->ll_trunc_readers, 0);
+       wake_up_var(&sem->ll_trunc_readers);
+}
+
+#ifdef CONFIG_LUSTRE_FS_POSIX_ACL
+static inline void lli_clear_acl(struct ll_inode_info *lli)
+{
+       if (lli->lli_posix_acl) {
+               posix_acl_release(lli->lli_posix_acl);
+               lli->lli_posix_acl = NULL;
+       }
+}
+
+static inline void lli_replace_acl(struct ll_inode_info *lli,
+                                  struct lustre_md *md)
+{
+       spin_lock(&lli->lli_lock);
+       if (lli->lli_posix_acl)
+               posix_acl_release(lli->lli_posix_acl);
+       lli->lli_posix_acl = md->posix_acl;
+       spin_unlock(&lli->lli_lock);
+}
+#else
+static inline void lli_clear_acl(struct ll_inode_info *lli)
+{
+}
+
+static inline void lli_replace_acl(struct ll_inode_info *lli,
+                                  struct lustre_md *md)
+{
+}
+#endif
+
 static inline __u32 ll_layout_version_get(struct ll_inode_info *lli)
 {
        __u32 gen;
@@ -320,19 +444,19 @@ int ll_xattr_cache_get(struct inode *inode,
 
 static inline bool obd_connect_has_secctx(struct obd_connect_data *data)
 {
-#if defined(HAVE_SECURITY_DENTRY_INIT_SECURITY) && defined(CONFIG_SECURITY)
+#ifdef CONFIG_SECURITY
        return data->ocd_connect_flags & OBD_CONNECT_FLAGS2 &&
               data->ocd_connect_flags2 & OBD_CONNECT2_FILE_SECCTX;
 #else
        return false;
-#endif /* HAVE_SECURITY_DENTRY_INIT_SECURITY */
+#endif
 }
 
 static inline void obd_connect_set_secctx(struct obd_connect_data *data)
 {
-#if defined(HAVE_SECURITY_DENTRY_INIT_SECURITY) && defined(CONFIG_SECURITY)
+#ifdef CONFIG_SECURITY
        data->ocd_connect_flags2 |= OBD_CONNECT2_FILE_SECCTX;
-#endif /* HAVE_SECURITY_DENTRY_INIT_SECURITY */
+#endif
 }
 
 int ll_dentry_init_security(struct dentry *dentry, int mode, struct qstr *name,
@@ -344,6 +468,23 @@ int ll_inode_init_security(struct dentry *dentry, struct inode *inode,
 int ll_listsecurity(struct inode *inode, char *secctx_name,
                    size_t secctx_name_size);
 
+static inline bool obd_connect_has_enc(struct obd_connect_data *data)
+{
+#ifdef HAVE_LUSTRE_CRYPTO
+       return data->ocd_connect_flags & OBD_CONNECT_FLAGS2 &&
+               data->ocd_connect_flags2 & OBD_CONNECT2_ENCRYPT;
+#else
+       return false;
+#endif
+}
+
+static inline void obd_connect_set_enc(struct obd_connect_data *data)
+{
+#ifdef HAVE_LUSTRE_CRYPTO
+       data->ocd_connect_flags2 |= OBD_CONNECT2_ENCRYPT;
+#endif
+}
+
 /*
  * Locking to guarantee consistency of non-atomic updates to long long i_size,
  * consistency between file size and KMS.
@@ -367,11 +508,11 @@ static inline struct pcc_inode *ll_i2pcci(struct inode *inode)
 /* default to use at least 16M for fast read if possible */
 #define RA_REMAIN_WINDOW_MIN                   MiB_TO_PAGES(16UL)
 
-/* default to about 64M of readahead on a given system. */
-#define SBI_DEFAULT_READAHEAD_MAX              MiB_TO_PAGES(64UL)
+/* default readahead on a given system. */
+#define SBI_DEFAULT_READ_AHEAD_MAX             MiB_TO_PAGES(64UL)
 
-/* default to read-ahead full files smaller than 2MB on the second read */
-#define SBI_DEFAULT_READAHEAD_WHOLE_MAX                MiB_TO_PAGES(2UL)
+/* default read-ahead full files smaller than limit on the second read */
+#define SBI_DEFAULT_READ_AHEAD_WHOLE_MAX       MiB_TO_PAGES(2UL)
 
 enum ra_stat {
         RA_STAT_HIT = 0,
@@ -399,12 +540,12 @@ struct ll_ra_info {
        unsigned long   ra_max_read_ahead_whole_pages;
        struct workqueue_struct  *ll_readahead_wq;
        /*
-        * Max number of active works for readahead workqueue,
-        * default is 0 which make workqueue init number itself,
-        * unless there is a specific need for throttling the
-        * number of active work items, specifying '0' is recommended.
+        * Max number of active works could be triggered
+        * for async readahead.
         */
        unsigned int ra_async_max_active;
+       /* how many async readahead triggered in flight */
+       atomic_t ra_async_inflight;
        /* Threshold to control when to trigger async readahead */
        unsigned long ra_async_pages_per_file_threshold;
 };
@@ -415,20 +556,20 @@ struct ll_ra_info {
  * counted by page index.
  */
 struct ra_io_arg {
-       pgoff_t ria_start; /* start offset of read-ahead*/
-       pgoff_t ria_end; /* end offset of read-ahead*/
-       unsigned long ria_reserved; /* reserved pages for read-ahead */
-       pgoff_t ria_end_min; /* minimum end to cover current read */
-       bool ria_eof; /* reach end of file */
-       /* If stride read pattern is detected, ria_stoff means where
-        * stride read is started. Note: for normal read-ahead, the
+       pgoff_t         ria_start_idx;  /* start offset of read-ahead*/
+       pgoff_t         ria_end_idx;    /* end offset of read-ahead*/
+       unsigned long   ria_reserved;   /* reserved pages for read-ahead */
+       pgoff_t         ria_end_idx_min;/* minimum end to cover current read */
+       bool            ria_eof;        /* reach end of file */
+       /* If stride read pattern is detected, ria_stoff is the byte offset
+        * where stride read is started. Note: for normal read-ahead, the
         * value here is meaningless, and also it will not be accessed*/
-       unsigned long ria_stoff;
+       loff_t          ria_stoff;
        /* ria_length and ria_bytes are the length and pages length in the
         * stride I/O mode. And they will also be used to check whether
         * it is stride I/O read-ahead in the read-ahead pages*/
-       unsigned long ria_length;
-       unsigned long ria_bytes;
+       loff_t          ria_length;
+       loff_t          ria_bytes;
 };
 
 /* LL_HIST_MAX=32 causes an overflow */
@@ -496,6 +637,8 @@ enum stats_track_type {
                                         2.10, abandoned */
 #define LL_SBI_TINY_WRITE   0x2000000 /* tiny write support */
 #define LL_SBI_FILE_HEAT    0x4000000 /* file heat support */
+#define LL_SBI_TEST_DUMMY_ENCRYPTION    0x8000000 /* test dummy encryption */
+#define LL_SBI_ENCRYPT    0x10000000 /* client side encryption */
 #define LL_SBI_FLAGS {         \
        "nolck",        \
        "checksum",     \
@@ -524,6 +667,8 @@ enum stats_track_type {
        "pio",          \
        "tiny_write",   \
        "file_heat",    \
+       "test_dummy_encryption", \
+       "noencrypt",    \
 }
 
 /* This is embedded into llite super-blocks to keep track of connect
@@ -632,9 +777,9 @@ struct ll_sb_info {
  * per file-descriptor read-ahead data.
  */
 struct ll_readahead_state {
-       spinlock_t  ras_lock;
+       spinlock_t      ras_lock;
        /* End byte that read(2) try to read.  */
-       unsigned long ras_last_read_end;
+       loff_t          ras_last_read_end_bytes;
         /*
         * number of bytes read after last read-ahead window reset. As window
          * is reset on each seek, this is effectively a number of consecutive
@@ -645,13 +790,13 @@ struct ll_readahead_state {
          * case, it probably doesn't make sense to expand window to
          * PTLRPC_MAX_BRW_PAGES on the third access.
          */
-       unsigned long ras_consecutive_bytes;
+       loff_t          ras_consecutive_bytes;
         /*
          * number of read requests after the last read-ahead window reset
          * As window is reset on each seek, this is effectively the number
          * on consecutive read request and is used to trigger read-ahead.
          */
-       unsigned long ras_consecutive_requests;
+       unsigned long   ras_consecutive_requests;
         /*
          * Parameters of current read-ahead window. Handled by
          * ras_update(). On the initial access to the file or after a seek,
@@ -659,12 +804,13 @@ struct ll_readahead_state {
          * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
          * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
          */
-       pgoff_t ras_window_start, ras_window_len;
+       pgoff_t         ras_window_start_idx;
+       pgoff_t         ras_window_pages;
        /*
-        * Optimal RPC size. It decides how many pages will be sent
-        * for each read-ahead.
+        * Optimal RPC size in pages.
+        * It decides how many pages will be sent for each read-ahead.
         */
-       unsigned long ras_rpc_size;
+       unsigned long   ras_rpc_pages;
         /*
          * Where next read-ahead should start at. This lies within read-ahead
          * window. Read-ahead window is read in pieces rather than at once
@@ -672,13 +818,13 @@ struct ll_readahead_state {
          * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
          * not covered by DLM lock.
          */
-       pgoff_t ras_next_readahead;
+       pgoff_t         ras_next_readahead_idx;
         /*
          * Total number of ll_file_read requests issued, reads originating
          * due to mmap are not counted in this total.  This value is used to
          * trigger full file read-ahead after multiple reads to a small file.
          */
-       unsigned long ras_requests;
+       unsigned long   ras_requests;
         /*
          * The following 3 items are used for detecting the stride I/O
          * mode.
@@ -690,34 +836,33 @@ struct ll_readahead_state {
         * ras_stride_bytes = stride_bytes;
         * Note: all these three items are counted by bytes.
         */
-       unsigned long ras_stride_length;
-       unsigned long ras_stride_bytes;
-       unsigned long ras_stride_offset;
+       loff_t          ras_stride_offset;
+       loff_t          ras_stride_length;
+       loff_t          ras_stride_bytes;
         /*
          * number of consecutive stride request count, and it is similar as
          * ras_consecutive_requests, but used for stride I/O mode.
          * Note: only more than 2 consecutive stride request are detected,
          * stride read-ahead will be enable
          */
-       unsigned long ras_consecutive_stride_requests;
+       unsigned long   ras_consecutive_stride_requests;
        /* index of the last page that async readahead starts */
-       pgoff_t ras_async_last_readpage;
+       pgoff_t         ras_async_last_readpage_idx;
        /* whether we should increase readahead window */
-       bool ras_need_increase_window;
+       bool            ras_need_increase_window;
        /* whether ra miss check should be skipped */
-       bool ras_no_miss_check;
+       bool            ras_no_miss_check;
 };
 
 struct ll_readahead_work {
        /** File to readahead */
        struct file                     *lrw_file;
-       /** Start bytes */
-       unsigned long                    lrw_start;
-       /** End bytes */
-       unsigned long                    lrw_end;
+       pgoff_t                          lrw_start_idx;
+       pgoff_t                          lrw_end_idx;
 
        /* async worker to handler read */
        struct work_struct               lrw_readahead_work;
+       char                             lrw_jobid[LUSTRE_JOBID_SIZE];
 };
 
 extern struct kmem_cache *ll_file_data_slab;
@@ -798,7 +943,7 @@ static inline bool ll_sbi_has_file_heat(struct ll_sb_info *sbi)
        return !!(sbi->ll_flags & LL_SBI_FILE_HEAT);
 }
 
-void ll_ras_enter(struct file *f, unsigned long pos, unsigned long count);
+void ll_ras_enter(struct file *f, loff_t pos, size_t count);
 
 /* llite/lcommon_misc.c */
 int cl_ocd_update(struct obd_device *host, struct obd_device *watched,
@@ -845,10 +990,15 @@ enum {
        LPROC_LL_LISTXATTR,
        LPROC_LL_REMOVEXATTR,
        LPROC_LL_INODE_PERM,
+       LPROC_LL_FALLOCATE,
        LPROC_LL_FILE_OPCODES
 };
 
 /* llite/dir.c */
+enum get_default_layout_type {
+       GET_DEFAULT_LAYOUT_ROOT = 1,
+};
+
 struct ll_dir_chain {
 };
 
@@ -928,7 +1078,8 @@ int ll_getattr(const struct path *path, struct kstat *stat,
 #else
 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
 #endif
-int ll_getattr_dentry(struct dentry *de, struct kstat *stat);
+int ll_getattr_dentry(struct dentry *de, struct kstat *stat, u32 request_mask,
+                     unsigned int flags);
 struct posix_acl *ll_get_acl(struct inode *inode, int type);
 #ifdef HAVE_IOP_SET_ACL
 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
@@ -938,6 +1089,23 @@ int ll_set_acl(struct inode *inode, struct posix_acl *acl, int type);
 #endif /* CONFIG_LUSTRE_FS_POSIX_ACL */
 
 #endif
+
+static inline int ll_xflags_to_inode_flags(int xflags)
+{
+       return ((xflags & FS_XFLAG_SYNC)      ? S_SYNC      : 0) |
+              ((xflags & FS_XFLAG_NOATIME)   ? S_NOATIME   : 0) |
+              ((xflags & FS_XFLAG_APPEND)    ? S_APPEND    : 0) |
+              ((xflags & FS_XFLAG_IMMUTABLE) ? S_IMMUTABLE : 0);
+}
+
+static inline int ll_inode_flags_to_xflags(int flags)
+{
+       return ((flags & S_SYNC)      ? FS_XFLAG_SYNC      : 0) |
+              ((flags & S_NOATIME)   ? FS_XFLAG_NOATIME   : 0) |
+              ((flags & S_APPEND)    ? FS_XFLAG_APPEND    : 0) |
+              ((flags & S_IMMUTABLE) ? FS_XFLAG_IMMUTABLE : 0);
+}
+
 int ll_migrate(struct inode *parent, struct file *file,
               struct lmv_user_md *lum, const char *name);
 int ll_get_fid_by_name(struct inode *parent, const char *name,
@@ -957,9 +1125,11 @@ int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
                              struct ptlrpc_request **request);
 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
                      int set_default);
-int ll_dir_getstripe(struct inode *inode, void **lmmp,
-                    int *lmm_size, struct ptlrpc_request **request,
-                    u64 valid);
+int ll_dir_getstripe_default(struct inode *inode, void **lmmp,
+                            int *lmm_size, struct ptlrpc_request **request,
+                            struct ptlrpc_request **root_request, u64 valid);
+int ll_dir_getstripe(struct inode *inode, void **plmm, int *plmm_size,
+                    struct ptlrpc_request **request, u64 valid);
 int ll_fsync(struct file *file, loff_t start, loff_t end, int data);
 int ll_merge_attr(const struct lu_env *env, struct inode *inode);
 int ll_fid2path(struct inode *inode, void __user *arg);
@@ -983,7 +1153,7 @@ int ll_revalidate_it_finish(struct ptlrpc_request *request,
 extern struct super_operations lustre_super_operations;
 
 void ll_lli_init(struct ll_inode_info *lli);
-int ll_fill_super(struct super_block *sb, struct vfsmount *mnt);
+int ll_fill_super(struct super_block *sb);
 void ll_put_super(struct super_block *sb);
 void ll_kill_super(struct super_block *sb);
 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock);
@@ -1004,11 +1174,7 @@ int ll_iocontrol(struct inode *inode, struct file *file,
 int ll_flush_ctx(struct inode *inode);
 void ll_umount_begin(struct super_block *sb);
 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
-#ifdef HAVE_SUPEROPS_USE_DENTRY
 int ll_show_options(struct seq_file *seq, struct dentry *dentry);
-#else
-int ll_show_options(struct seq_file *seq, struct vfsmount *vfs);
-#endif
 void ll_dirty_page_discard_warn(struct page *page, int ioret);
 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
                  struct super_block *, struct lookup_intent *);
@@ -1281,8 +1447,8 @@ struct ll_statahead_info {
                                sai_agl_valid:1,/* AGL is valid for the dir */
                                sai_in_readpage:1;/* statahead is in readdir()*/
        wait_queue_head_t       sai_waitq;      /* stat-ahead wait queue */
-       struct ptlrpc_thread    sai_thread;     /* stat-ahead thread */
-       struct ptlrpc_thread    sai_agl_thread; /* AGL thread */
+       struct task_struct      *sai_task;      /* stat-ahead thread */
+       struct task_struct      *sai_agl_task;  /* AGL thread */
        struct list_head        sai_interim_entries; /* entries which got async
                                                      * stat reply, but not
                                                      * instantiated */
@@ -1293,7 +1459,9 @@ struct ll_statahead_info {
        atomic_t                sai_cache_count; /* entry count in cache */
 };
 
-int ll_statahead(struct inode *dir, struct dentry **dentry, bool unplug);
+int ll_revalidate_statahead(struct inode *dir, struct dentry **dentry,
+                           bool unplug);
+int ll_start_statahead(struct inode *dir, struct dentry *dentry, bool agl);
 void ll_authorize_statahead(struct inode *dir, void *key);
 void ll_deauthorize_statahead(struct inode *dir, void *key);
 
@@ -1354,7 +1522,7 @@ dentry_may_statahead(struct inode *dir, struct dentry *dentry)
                return false;
 
        /* not the same process, don't statahead */
-       if (lli->lli_opendir_pid != current_pid())
+       if (lli->lli_opendir_pid != current->pid)
                return false;
 
        /*
@@ -1372,7 +1540,8 @@ dentry_may_statahead(struct inode *dir, struct dentry *dentry)
         * 'lld_sa_generation == lli->lli_sa_generation'.
         */
        ldd = ll_d2d(dentry);
-       if (ldd != NULL && ldd->lld_sa_generation == lli->lli_sa_generation)
+       if (ldd != NULL && lli->lli_sa_generation &&
+           ldd->lld_sa_generation == lli->lli_sa_generation)
                return false;
 
        return true;
@@ -1383,12 +1552,12 @@ int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
 
 static inline int ll_file_nolock(const struct file *file)
 {
-        struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
+       struct ll_file_data *fd = file->private_data;
        struct inode *inode = file_inode((struct file *)file);
 
-        LASSERT(fd != NULL);
-        return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
-                (ll_i2sbi(inode)->ll_flags & LL_SBI_NOLCK));
+       LASSERT(fd != NULL);
+       return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
+               (ll_i2sbi(inode)->ll_flags & LL_SBI_NOLCK));
 }
 
 static inline void ll_set_lock_data(struct obd_export *exp, struct inode *inode,
@@ -1449,8 +1618,8 @@ static inline void __d_lustre_invalidate(struct dentry *dentry)
  */
 static inline void d_lustre_invalidate(struct dentry *dentry, int nested)
 {
-       CDEBUG(D_DENTRY, "invalidate dentry %.*s (%p) parent %p inode %p "
-              "refc %d\n", dentry->d_name.len, dentry->d_name.name, dentry,
+       CDEBUG(D_DENTRY, "invalidate dentry %pd (%p) parent %p inode %p refc %d\n",
+              dentry, dentry,
               dentry->d_parent, dentry->d_inode, ll_d_count(dentry));
 
        spin_lock_nested(&dentry->d_lock,
@@ -1526,4 +1695,9 @@ static inline struct pcc_super *ll_info2pccs(struct ll_inode_info *lli)
        return ll_i2pccs(ll_info2i(lli));
 }
 
+#ifdef HAVE_LUSTRE_CRYPTO
+/* crypto.c */
+extern const struct llcrypt_operations lustre_cryptops;
+#endif
+
 #endif /* LLITE_INTERNAL_H */