diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-05 16:20:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-05 16:20:53 -0500 |
commit | e213e26ab3988c516c06eba4dcd030ac052f6dc9 (patch) | |
tree | 6e26fbdbb842b387697d73daf6e70cf718269a77 /include/linux/jbd2.h | |
parent | c812a51d11bbe983f4c24e32b59b265705ddd3c2 (diff) | |
parent | efd8f0e6f6c1faa041f228d7113bd3a9db802d49 (diff) |
Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs-2.6
* 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs-2.6: (33 commits)
quota: stop using QUOTA_OK / NO_QUOTA
dquot: cleanup dquot initialize routine
dquot: move dquot initialization responsibility into the filesystem
dquot: cleanup dquot drop routine
dquot: move dquot drop responsibility into the filesystem
dquot: cleanup dquot transfer routine
dquot: move dquot transfer responsibility into the filesystem
dquot: cleanup inode allocation / freeing routines
dquot: cleanup space allocation / freeing routines
ext3: add writepage sanity checks
ext3: Truncate allocated blocks if direct IO write fails to update i_size
quota: Properly invalidate caches even for filesystems with blocksize < pagesize
quota: generalize quota transfer interface
quota: sb_quota state flags cleanup
jbd: Delay discarding buffers in journal_unmap_buffer
ext3: quota_write cross block boundary behaviour
quota: drop permission checks from xfs_fs_set_xstate/xfs_fs_set_xquota
quota: split out compat_sys_quotactl support from quota.c
quota: split out netlink notification support from quota.c
quota: remove invalid optimization from quota_sync_all
...
Fixed trivial conflicts in fs/namei.c and fs/ufs/inode.c
Diffstat (limited to 'include/linux/jbd2.h')
-rw-r--r-- | include/linux/jbd2.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index 8ada2a129d08..1ec876358180 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h | |||
@@ -277,19 +277,8 @@ typedef struct journal_superblock_s | |||
277 | 277 | ||
278 | #define J_ASSERT(assert) BUG_ON(!(assert)) | 278 | #define J_ASSERT(assert) BUG_ON(!(assert)) |
279 | 279 | ||
280 | #if defined(CONFIG_BUFFER_DEBUG) | ||
281 | void buffer_assertion_failure(struct buffer_head *bh); | ||
282 | #define J_ASSERT_BH(bh, expr) \ | ||
283 | do { \ | ||
284 | if (!(expr)) \ | ||
285 | buffer_assertion_failure(bh); \ | ||
286 | J_ASSERT(expr); \ | ||
287 | } while (0) | ||
288 | #define J_ASSERT_JH(jh, expr) J_ASSERT_BH(jh2bh(jh), expr) | ||
289 | #else | ||
290 | #define J_ASSERT_BH(bh, expr) J_ASSERT(expr) | 280 | #define J_ASSERT_BH(bh, expr) J_ASSERT(expr) |
291 | #define J_ASSERT_JH(jh, expr) J_ASSERT(expr) | 281 | #define J_ASSERT_JH(jh, expr) J_ASSERT(expr) |
292 | #endif | ||
293 | 282 | ||
294 | #if defined(JBD2_PARANOID_IOFAIL) | 283 | #if defined(JBD2_PARANOID_IOFAIL) |
295 | #define J_EXPECT(expr, why...) J_ASSERT(expr) | 284 | #define J_EXPECT(expr, why...) J_ASSERT(expr) |