diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-10 20:42:53 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-10 20:42:53 -0500 |
commit | 506c10f26c481b7f8ef27c1c79290f68989b2e9e (patch) | |
tree | 03de82e812f00957aa6276dac2fe51c3358e88d7 /fs/ext4/ext4_sb.h | |
parent | e1df957670aef74ffd9a4ad93e6d2c90bf6b4845 (diff) | |
parent | c59765042f53a79a7a65585042ff463b69cb248c (diff) |
Merge commit 'v2.6.29-rc1' into perfcounters/core
Conflicts:
include/linux/kernel_stat.h
Diffstat (limited to 'fs/ext4/ext4_sb.h')
-rw-r--r-- | fs/ext4/ext4_sb.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/fs/ext4/ext4_sb.h b/fs/ext4/ext4_sb.h index 445fde603df8..039b6ea1a042 100644 --- a/fs/ext4/ext4_sb.h +++ b/fs/ext4/ext4_sb.h | |||
@@ -57,6 +57,7 @@ struct ext4_sb_info { | |||
57 | u32 s_next_generation; | 57 | u32 s_next_generation; |
58 | u32 s_hash_seed[4]; | 58 | u32 s_hash_seed[4]; |
59 | int s_def_hash_version; | 59 | int s_def_hash_version; |
60 | int s_hash_unsigned; /* 3 if hash should be signed, 0 if not */ | ||
60 | struct percpu_counter s_freeblocks_counter; | 61 | struct percpu_counter s_freeblocks_counter; |
61 | struct percpu_counter s_freeinodes_counter; | 62 | struct percpu_counter s_freeinodes_counter; |
62 | struct percpu_counter s_dirs_counter; | 63 | struct percpu_counter s_dirs_counter; |
@@ -73,6 +74,8 @@ struct ext4_sb_info { | |||
73 | struct journal_s *s_journal; | 74 | struct journal_s *s_journal; |
74 | struct list_head s_orphan; | 75 | struct list_head s_orphan; |
75 | unsigned long s_commit_interval; | 76 | unsigned long s_commit_interval; |
77 | u32 s_max_batch_time; | ||
78 | u32 s_min_batch_time; | ||
76 | struct block_device *journal_bdev; | 79 | struct block_device *journal_bdev; |
77 | #ifdef CONFIG_JBD2_DEBUG | 80 | #ifdef CONFIG_JBD2_DEBUG |
78 | struct timer_list turn_ro_timer; /* For turning read-only (crash simulation) */ | 81 | struct timer_list turn_ro_timer; /* For turning read-only (crash simulation) */ |
@@ -101,7 +104,8 @@ struct ext4_sb_info { | |||
101 | spinlock_t s_reserve_lock; | 104 | spinlock_t s_reserve_lock; |
102 | spinlock_t s_md_lock; | 105 | spinlock_t s_md_lock; |
103 | tid_t s_last_transaction; | 106 | tid_t s_last_transaction; |
104 | unsigned short *s_mb_offsets, *s_mb_maxs; | 107 | unsigned short *s_mb_offsets; |
108 | unsigned int *s_mb_maxs; | ||
105 | 109 | ||
106 | /* tunables */ | 110 | /* tunables */ |
107 | unsigned long s_stripe; | 111 | unsigned long s_stripe; |
@@ -146,4 +150,10 @@ struct ext4_sb_info { | |||
146 | struct flex_groups *s_flex_groups; | 150 | struct flex_groups *s_flex_groups; |
147 | }; | 151 | }; |
148 | 152 | ||
153 | static inline spinlock_t * | ||
154 | sb_bgl_lock(struct ext4_sb_info *sbi, unsigned int block_group) | ||
155 | { | ||
156 | return bgl_lock_ptr(&sbi->s_blockgroup_lock, block_group); | ||
157 | } | ||
158 | |||
149 | #endif /* _EXT4_SB */ | 159 | #endif /* _EXT4_SB */ |