diff options
author | Jan Kara <jack@suse.cz> | 2008-07-25 04:46:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-25 13:53:35 -0400 |
commit | 03b063436ca1076301de58d9d628f610ab5404ad (patch) | |
tree | c0c21837706d6c462cef3183f5e514405d1af993 /include/linux/quota.h | |
parent | 74abb9890dafb12a50dc140de215ed477beb1b88 (diff) |
quota: convert macros to inline functions
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/quota.h')
-rw-r--r-- | include/linux/quota.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/quota.h b/include/linux/quota.h index f9983ea0ff88..4e004fef8134 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
@@ -223,7 +223,10 @@ struct super_block; | |||
223 | #define DQF_INFO_DIRTY (1 << DQF_INFO_DIRTY_B) /* Is info dirty? */ | 223 | #define DQF_INFO_DIRTY (1 << DQF_INFO_DIRTY_B) /* Is info dirty? */ |
224 | 224 | ||
225 | extern void mark_info_dirty(struct super_block *sb, int type); | 225 | extern void mark_info_dirty(struct super_block *sb, int type); |
226 | #define info_dirty(info) test_bit(DQF_INFO_DIRTY_B, &(info)->dqi_flags) | 226 | static inline int info_dirty(struct mem_dqinfo *info) |
227 | { | ||
228 | return test_bit(DQF_INFO_DIRTY_B, &info->dqi_flags); | ||
229 | } | ||
227 | 230 | ||
228 | struct dqstats { | 231 | struct dqstats { |
229 | int lookups; | 232 | int lookups; |