diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-10-11 01:22:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 11:14:23 -0700 |
commit | 2ecd05ae68a903761e736e9e0aca40d6ace4319e (patch) | |
tree | 4bb0a178362e954191a6e6cee351745cd2dbe685 /fs/ocfs2/super.c | |
parent | fbab41ccc479b6b0ba15c137af9e0b1c100bff24 (diff) | |
download | op-kernel-dev-2ecd05ae68a903761e736e9e0aca40d6ace4319e.zip op-kernel-dev-2ecd05ae68a903761e736e9e0aca40d6ace4319e.tar.gz |
[PATCH] fs/*: use BUILD_BUG_ON
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: David Howells <dhowells@redhat.com>
Cc: Mark Fasheh <mark.fasheh@oracle.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ocfs2/super.c')
-rw-r--r-- | fs/ocfs2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c index 4c29cd7..76b46eb 100644 --- a/fs/ocfs2/super.c +++ b/fs/ocfs2/super.c @@ -339,7 +339,7 @@ static unsigned long long ocfs2_max_file_offset(unsigned int blockshift) #if BITS_PER_LONG == 32 # if defined(CONFIG_LBD) - BUG_ON(sizeof(sector_t) != 8); + BUILD_BUG_ON(sizeof(sector_t) != 8); pagefactor = PAGE_CACHE_SIZE; bitshift = BITS_PER_LONG; # else |