mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
exfat: fix implicit declaration of brelse()
exfat_cluster_walk() calls brelse(bh) without including the header that
declares the function, causing the following build error:
fs/exfat/exfat_fs.h:542:9: error: implicit declaration of function ‘brelse’ [-Werror=implicit-function-declaration]
Fix this by adding the missing buffer_head.h in exfat_fs.h.
Acked-by: Christoph Hellwig <hch@lst.de>
Acked-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
This commit is contained in:
parent
3b9450beeb
commit
f0d1b2e1e0
|
|
@ -12,6 +12,7 @@
|
|||
#include <linux/blkdev.h>
|
||||
#include <linux/backing-dev.h>
|
||||
#include <uapi/linux/exfat.h>
|
||||
#include <linux/buffer_head.h>
|
||||
|
||||
#define EXFAT_ROOT_INO 1
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user