blob: 28645f0640f735b7f168b14258cc22c110bc0f1d [file] [log] [blame]
Boaz Harroshe8062712008-10-27 18:37:02 +02001/*
2 * Copyright (C) 2005, 2006
Boaz Harrosh27d2e142009-06-14 17:23:09 +03003 * Avishay Traeger (avishay@gmail.com)
Boaz Harroshe8062712008-10-27 18:37:02 +02004 * Copyright (C) 2008, 2009
Boaz Harroshaa281ac2014-10-19 19:38:58 +03005 * Boaz Harrosh <ooo@electrozaur.com>
Boaz Harroshe8062712008-10-27 18:37:02 +02006 *
7 * Copyrights for code taken from ext2:
8 * Copyright (C) 1992, 1993, 1994, 1995
9 * Remy Card (card@masi.ibp.fr)
10 * Laboratoire MASI - Institut Blaise Pascal
11 * Universite Pierre et Marie Curie (Paris VI)
12 * from
13 * linux/fs/minix/inode.c
14 * Copyright (C) 1991, 1992 Linus Torvalds
15 *
16 * This file is part of exofs.
17 *
18 * exofs is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation. Since it is based on ext2, and the only
21 * valid version of GPL for the Linux kernel is version 2, the only valid
22 * version of GPL for exofs is version 2.
23 *
24 * exofs is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with exofs; if not, write to the Free Software
31 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
32 */
Boaz Harroshe8062712008-10-27 18:37:02 +020033#include "exofs.h"
34
35static int exofs_release_file(struct inode *inode, struct file *filp)
36{
37 return 0;
38}
39
Boaz Harroshb2848342010-05-31 18:02:39 +030040/* exofs_file_fsync - flush the inode to disk
41 *
42 * Note, in exofs all metadata is written as part of inode, regardless.
43 * The writeout is synchronous
44 */
Josef Bacik02c24a82011-07-16 20:44:56 -040045static int exofs_file_fsync(struct file *filp, loff_t start, loff_t end,
46 int datasync)
Boaz Harroshe8062712008-10-27 18:37:02 +020047{
Josef Bacik02c24a82011-07-16 20:44:56 -040048 struct inode *inode = filp->f_mapping->host;
Boaz Harroshe8062712008-10-27 18:37:02 +020049 int ret;
Boaz Harroshe8062712008-10-27 18:37:02 +020050
Josef Bacik02c24a82011-07-16 20:44:56 -040051 ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
52 if (ret)
53 return ret;
54
Al Viro59551022016-01-22 15:40:57 -050055 inode_lock(inode);
Boaz Harrosh1cea3122011-02-03 17:53:25 +020056 ret = sync_inode_metadata(filp->f_mapping->host, 1);
Al Viro59551022016-01-22 15:40:57 -050057 inode_unlock(inode);
Boaz Harroshbaaf94c2009-06-14 16:52:10 +030058 return ret;
Boaz Harroshe8062712008-10-27 18:37:02 +020059}
60
61static int exofs_flush(struct file *file, fl_owner_t id)
62{
Boaz Harroshb2848342010-05-31 18:02:39 +030063 int ret = vfs_fsync(file, 0);
Boaz Harroshe8062712008-10-27 18:37:02 +020064 /* TODO: Flush the OSD target */
Boaz Harroshb2848342010-05-31 18:02:39 +030065 return ret;
Boaz Harroshe8062712008-10-27 18:37:02 +020066}
67
68const struct file_operations exofs_file_operations = {
69 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -040070 .read_iter = generic_file_read_iter,
Al Viro81742022014-04-03 03:17:43 -040071 .write_iter = generic_file_write_iter,
Boaz Harroshe8062712008-10-27 18:37:02 +020072 .mmap = generic_file_mmap,
73 .open = generic_file_open,
74 .release = exofs_release_file,
75 .fsync = exofs_file_fsync,
76 .flush = exofs_flush,
77 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -040078 .splice_write = iter_file_splice_write,
Boaz Harroshe8062712008-10-27 18:37:02 +020079};
80
81const struct inode_operations exofs_file_inode_operations = {
Boaz Harroshe8062712008-10-27 18:37:02 +020082 .setattr = exofs_setattr,
83};