/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=8:tabstop=8: * * lustre lite cluster file system * * This code is issued under the GNU General Public License. * See the file COPYING in this distribution * * Copyright (C) 2002 Cluster File Systems, Inc. */ #ifndef _LL_H #define _LL_H #ifdef __KERNEL__ #include #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)) #include #endif #include #include #include #include #include #include #include #include #include #include #include #include /* careful, this is easy to screw up */ #define PAGE_CACHE_MAXBYTES ((__u64)(~0UL) << PAGE_CACHE_SHIFT) #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0") static inline struct lookup_intent *ll_nd2it(struct nameidata *nd) { #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)) return &nd->intent; #else return nd->intent; #endif } struct ll_dentry_data { int lld_cwd_count; int lld_mnt_count; struct obd_client_handle lld_cwd_och; struct obd_client_handle lld_mnt_och; }; #define ll_d2d(de) ((struct ll_dentry_data*) de->d_fsdata) extern struct file_operations ll_pgcache_seq_fops; #define LLI_INODE_MAGIC 0x111d0de5 #define LLI_INODE_DEAD 0xdeadd00d #define LLI_F_HAVE_OST_SIZE_LOCK 0 #define LLI_F_HAVE_MDS_SIZE_LOCK 1 #define LLI_F_PREFER_EXTENDED_SIZE 2 struct ll_inode_info { int lli_inode_magic; struct lov_stripe_md *lli_smd; struct mea *lli_mea; struct lustre_id lli_id; /* full lustre_id */ char *lli_symlink_name; struct semaphore lli_open_sem; __u64 lli_maxbytes; __u64 lli_io_epoch; unsigned long lli_flags; /* this lock protects s_d_w and p_w_ll */ spinlock_t lli_lock; int lli_send_done_writing; int lli_snap_index; struct list_head lli_pending_write_llaps; struct list_head lli_close_item; struct file_operations *ll_save_ifop; struct file_operations *ll_save_ffop; struct file_operations *ll_save_wfop; struct file_operations *ll_save_wrfop; #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)) struct inode lli_vfs_inode; #endif }; // FIXME: replace the name of this with LL_I to conform to kernel stuff // static inline struct ll_inode_info *LL_I(struct inode *inode) static inline struct ll_inode_info *ll_i2info(struct inode *inode) { #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)) return container_of(inode, struct ll_inode_info, lli_vfs_inode); #else return (struct ll_inode_info *)&(inode->u.generic_ip); #endif } /* lprocfs.c */ enum { LPROC_LL_DIRTY_HITS = 0, LPROC_LL_DIRTY_MISSES, LPROC_LL_WB_WRITEPAGE, LPROC_LL_WB_PRESSURE, LPROC_LL_WB_OK, LPROC_LL_WB_FAIL, LPROC_LL_READ_BYTES, LPROC_LL_WRITE_BYTES, LPROC_LL_BRW_READ, LPROC_LL_BRW_WRITE, LPROC_LL_IOCTL, LPROC_LL_OPEN, LPROC_LL_RELEASE, LPROC_LL_MAP, LPROC_LL_LLSEEK, LPROC_LL_FSYNC, LPROC_LL_SETATTR, LPROC_LL_TRUNC, #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0)) LPROC_LL_GETATTR, #else LPROC_LL_REVALIDATE, #endif LPROC_LL_STAFS, LPROC_LL_ALLOC_INODE, LPROC_LL_DIRECT_READ, LPROC_LL_DIRECT_WRITE, LPROC_LL_FILE_OPCODES }; static inline void ll_inode2id(struct lustre_id *id, struct inode *inode) { struct lustre_id *lid = &ll_i2info(inode)->lli_id; mdc_pack_id(id, inode->i_ino, inode->i_generation, (inode->i_mode & S_IFMT), id_group(lid), id_fid(lid)); } static inline void ll_prepare_mdc_data(struct mdc_op_data *data, struct inode *i1, struct inode *i2, const char *name, int namelen, int mode) { LASSERT(i1); ll_inode2id(&data->id1, i1); /* it could be directory with mea */ data->mea1 = ll_i2info(i1)->lli_mea; if (i2) { ll_inode2id(&data->id2, i2); data->mea2 = ll_i2info(i2)->lli_mea; } data->valid = 0; data->name = name; data->namelen = namelen; data->create_mode = mode; data->mod_time = LTIME_S(CURRENT_TIME); } #else #include #endif /* __KERNEL__ */ #include #endif