diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2010-04-06 17:35:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-04-07 11:38:04 -0400 |
commit | b1dd3b2843b3b73b7fc2ee47d96310cd1c051371 (patch) | |
tree | ab7d13e076d255dd2c598a3c819e114a854ae85f /drivers/char/raw.c | |
parent | 55ab3a1ff843e3f0e24d2da44e71bffa5d853010 (diff) |
vfs: rename block_fsync() to blkdev_fsync()
Requested by hch, for consistency now it is exported.
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Anton Blanchard <anton@samba.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Jan Kara <jack@suse.cz>
Cc: Jeff Moyer <jmoyer@redhat.com>
Cc: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/raw.c')
-rw-r--r-- | drivers/char/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/raw.c b/drivers/char/raw.c index f5a32317b751..8756ab0daa8b 100644 --- a/drivers/char/raw.c +++ b/drivers/char/raw.c | |||
@@ -248,7 +248,7 @@ static const struct file_operations raw_fops = { | |||
248 | .aio_read = generic_file_aio_read, | 248 | .aio_read = generic_file_aio_read, |
249 | .write = do_sync_write, | 249 | .write = do_sync_write, |
250 | .aio_write = blkdev_aio_write, | 250 | .aio_write = blkdev_aio_write, |
251 | .fsync = block_fsync, | 251 | .fsync = blkdev_fsync, |
252 | .open = raw_open, | 252 | .open = raw_open, |
253 | .release= raw_release, | 253 | .release= raw_release, |
254 | .ioctl = raw_ioctl, | 254 | .ioctl = raw_ioctl, |