Lines Matching defs:gfs2_sbd

688 struct gfs2_sbd {  struct
689 struct super_block *sd_vfs;
690 struct gfs2_pcpu_lkstats __percpu *sd_lkstats;
691 struct kobject sd_kobj;
692 struct completion sd_kobj_unregister;
693 unsigned long sd_flags; /* SDF_... */
694 struct gfs2_sb_host sd_sb;
698 u32 sd_fsb2bb;
699 u32 sd_fsb2bb_shift;
700 u32 sd_diptrs; /* Number of pointers in a dinode */
701 u32 sd_inptrs; /* Number of pointers in a indirect block */
702 u32 sd_ldptrs; /* Number of pointers in a log descriptor block */
703 u32 sd_jbsize; /* Size of a journaled data block */
704 u32 sd_hash_bsize; /* sizeof(exhash block) */
705 u32 sd_hash_bsize_shift;
706 u32 sd_hash_ptrs; /* Number of pointers in a hash block */
707 u32 sd_qc_per_block;
708 u32 sd_blocks_per_bitmap;
709 u32 sd_max_dirres; /* Max blocks needed to add a directory entry */
710 u32 sd_max_height; /* Max height of a file's metadata tree */
711 u64 sd_heightsize[GFS2_MAX_META_HEIGHT + 1];
712 u32 sd_max_dents_per_leaf; /* Max number of dirents in a leaf block */
714 struct gfs2_args sd_args; /* Mount arguments */
715 struct gfs2_tune sd_tune; /* Filesystem tuning structure */
719 struct lm_lockstruct sd_lockstruct;
720 struct gfs2_holder sd_live_gh;
721 struct gfs2_glock *sd_rename_gl;
722 struct gfs2_glock *sd_freeze_gl;
723 struct work_struct sd_freeze_work;
724 wait_queue_head_t sd_glock_wait;
725 wait_queue_head_t sd_async_glock_wait;
726 atomic_t sd_glock_disposal;
727 struct completion sd_locking_init;
728 struct completion sd_wdack;
729 struct delayed_work sd_control_work;
733 struct dentry *sd_master_dir;
734 struct dentry *sd_root_dir;
736 struct inode *sd_jindex;
737 struct inode *sd_statfs_inode;
738 struct inode *sd_sc_inode;
739 struct list_head sd_sc_inodes_list;
740 struct inode *sd_qc_inode;
741 struct inode *sd_rindex;
742 struct inode *sd_quota_inode;
746 spinlock_t sd_statfs_spin;
747 struct gfs2_statfs_change_host sd_statfs_master;
748 struct gfs2_statfs_change_host sd_statfs_local;
749 int sd_statfs_force_sync;
753 int sd_rindex_uptodate;
754 spinlock_t sd_rindex_spin;
755 struct rb_root sd_rindex_tree;
756 unsigned int sd_rgrps;
757 unsigned int sd_max_rg_data;
761 struct list_head sd_jindex_list;
762 spinlock_t sd_jindex_spin;
763 struct mutex sd_jindex_mutex;
764 unsigned int sd_journals;
766 struct gfs2_jdesc *sd_jdesc;
767 struct gfs2_holder sd_journal_gh;
768 struct gfs2_holder sd_jinode_gh;
769 struct gfs2_glock *sd_jinode_gl;
771 struct gfs2_holder sd_sc_gh;
772 struct buffer_head *sd_sc_bh;
773 struct gfs2_holder sd_qc_gh;
775 struct completion sd_journal_ready;
779 struct workqueue_struct *sd_delete_wq;
783 struct task_struct *sd_logd_process;
784 struct task_struct *sd_quotad_process;
788 struct list_head sd_quota_list;
789 atomic_t sd_quota_count;
790 struct mutex sd_quota_mutex;
791 struct mutex sd_quota_sync_mutex;
792 wait_queue_head_t sd_quota_wait;
794 unsigned int sd_quota_slots;
795 unsigned long *sd_quota_bitmap;
796 spinlock_t sd_bitmap_lock;
798 u64 sd_quota_sync_gen;
802 struct address_space sd_aspace;
804 spinlock_t sd_log_lock;
806 struct gfs2_trans *sd_log_tr;
807 unsigned int sd_log_blks_reserved;
809 atomic_t sd_log_pinned;
810 unsigned int sd_log_num_revoke;
812 struct list_head sd_log_revokes;
813 struct list_head sd_log_ordered;
814 spinlock_t sd_ordered_lock;
816 atomic_t sd_log_thresh1;
817 atomic_t sd_log_thresh2;
818 atomic_t sd_log_blks_free;
819 atomic_t sd_log_blks_needed;
820 atomic_t sd_log_revokes_available;
821 wait_queue_head_t sd_log_waitq;
822 wait_queue_head_t sd_logd_waitq;
824 u64 sd_log_sequence;
825 int sd_log_idle;
827 struct rw_semaphore sd_log_flush_lock;
828 atomic_t sd_log_in_flight;
829 wait_queue_head_t sd_log_flush_wait;
830 int sd_log_error; /* First log error */
831 wait_queue_head_t sd_withdraw_wait;
833 unsigned int sd_log_tail;
834 unsigned int sd_log_flush_tail;
835 unsigned int sd_log_head;
836 unsigned int sd_log_flush_head;
838 spinlock_t sd_ail_lock;
839 struct list_head sd_ail1_list;
840 struct list_head sd_ail2_list;
865 const struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; in gfs2_sbstats_inc() argument