diff options
-rw-r--r-- | include/linux/buffer_head.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 1b9ba193b789..2ce51fac7d3d 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h | |||
@@ -314,15 +314,10 @@ map_bh(struct buffer_head *bh, struct super_block *sb, sector_t block) | |||
314 | bh->b_size = sb->s_blocksize; | 314 | bh->b_size = sb->s_blocksize; |
315 | } | 315 | } |
316 | 316 | ||
317 | /* | ||
318 | * Calling wait_on_buffer() for a zero-ref buffer is illegal, so we call into | ||
319 | * __wait_on_buffer() just to trip a debug check. Because debug code in inline | ||
320 | * functions is bloaty. | ||
321 | */ | ||
322 | static inline void wait_on_buffer(struct buffer_head *bh) | 317 | static inline void wait_on_buffer(struct buffer_head *bh) |
323 | { | 318 | { |
324 | might_sleep(); | 319 | might_sleep(); |
325 | if (buffer_locked(bh) || atomic_read(&bh->b_count) == 0) | 320 | if (buffer_locked(bh)) |
326 | __wait_on_buffer(bh); | 321 | __wait_on_buffer(bh); |
327 | } | 322 | } |
328 | 323 | ||