aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/hppfs/hppfs.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/hppfs/hppfs.c b/fs/hppfs/hppfs.c
index 8ef57793c923..cd3e38972c86 100644
--- a/fs/hppfs/hppfs.c
+++ b/fs/hppfs/hppfs.c
@@ -580,17 +580,10 @@ static int hppfs_readdir(struct file *file, void *ent, filldir_t filldir)
580 return err; 580 return err;
581} 581}
582 582
583static int hppfs_fsync(struct file *file, loff_t start, loff_t end,
584 int datasync)
585{
586 return filemap_write_and_wait_range(file->f_mapping, start, end);
587}
588
589static const struct file_operations hppfs_dir_fops = { 583static const struct file_operations hppfs_dir_fops = {
590 .owner = NULL, 584 .owner = NULL,
591 .readdir = hppfs_readdir, 585 .readdir = hppfs_readdir,
592 .open = hppfs_dir_open, 586 .open = hppfs_dir_open,
593 .fsync = hppfs_fsync,
594 .llseek = default_llseek, 587 .llseek = default_llseek,
595 .release = hppfs_release, 588 .release = hppfs_release,
596}; 589};