fs/block_dev.c:1644:5: sparse: symbol 'blkdev_mmap' was not declared
blkdev_mmap() isn't used outside of fs/block_dev.c, mark it as static. Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
62ac665ff9
commit
3eab7315c8
@ -1648,7 +1648,7 @@ ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov,
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(blkdev_aio_write);
|
EXPORT_SYMBOL_GPL(blkdev_aio_write);
|
||||||
|
|
||||||
int blkdev_mmap(struct file *file, struct vm_area_struct *vma)
|
static int blkdev_mmap(struct file *file, struct vm_area_struct *vma)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
struct block_device *bdev = I_BDEV(file->f_mapping->host);
|
struct block_device *bdev = I_BDEV(file->f_mapping->host);
|
||||||
|
Loading…
Reference in New Issue
Block a user