aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/block_dev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/block_dev.c b/fs/block_dev.c
index 8db62b2b6df8..2a6d0193f139 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -404,7 +404,7 @@ static loff_t block_llseek(struct file *file, loff_t offset, int origin)
404 * NULL first argument is nfsd_sync_dir() and that's not a directory. 404 * NULL first argument is nfsd_sync_dir() and that's not a directory.
405 */ 405 */
406 406
407int block_fsync(struct file *filp, struct dentry *dentry, int datasync) 407int blkdev_fsync(struct file *filp, struct dentry *dentry, int datasync)
408{ 408{
409 struct block_device *bdev = I_BDEV(filp->f_mapping->host); 409 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
410 int error; 410 int error;
@@ -418,7 +418,7 @@ int block_fsync(struct file *filp, struct dentry *dentry, int datasync)
418 error = 0; 418 error = 0;
419 return error; 419 return error;
420} 420}
421EXPORT_SYMBOL(block_fsync); 421EXPORT_SYMBOL(blkdev_fsync);
422 422
423/* 423/*
424 * pseudo-fs 424 * pseudo-fs
@@ -1482,7 +1482,7 @@ const struct file_operations def_blk_fops = {
1482 .aio_read = generic_file_aio_read, 1482 .aio_read = generic_file_aio_read,
1483 .aio_write = blkdev_aio_write, 1483 .aio_write = blkdev_aio_write,
1484 .mmap = generic_file_mmap, 1484 .mmap = generic_file_mmap,
1485 .fsync = block_fsync, 1485 .fsync = blkdev_fsync,
1486 .unlocked_ioctl = block_ioctl, 1486 .unlocked_ioctl = block_ioctl,
1487#ifdef CONFIG_COMPAT 1487#ifdef CONFIG_COMPAT
1488 .compat_ioctl = compat_blkdev_ioctl, 1488 .compat_ioctl = compat_blkdev_ioctl,