| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2005, 2006 | 
| Boaz Harrosh | 27d2e14 | 2009-06-14 17:23:09 +0300 | [diff] [blame] | 3 | * Avishay Traeger (avishay@gmail.com) | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 4 | * Copyright (C) 2008, 2009 | 
|  | 5 | * Boaz Harrosh <bharrosh@panasas.com> | 
|  | 6 | * | 
|  | 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 Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 33 | #include "exofs.h" | 
|  | 34 |  | 
|  | 35 | static int exofs_release_file(struct inode *inode, struct file *filp) | 
|  | 36 | { | 
|  | 37 | return 0; | 
|  | 38 | } | 
|  | 39 |  | 
| Boaz Harrosh | b284834 | 2010-05-31 18:02:39 +0300 | [diff] [blame] | 40 | /* 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 | */ | 
| Christoph Hellwig | 7ea8085 | 2010-05-26 17:53:25 +0200 | [diff] [blame] | 45 | static int exofs_file_fsync(struct file *filp, int datasync) | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 46 | { | 
|  | 47 | int ret; | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 48 |  | 
| Boaz Harrosh | 1cea312 | 2011-02-03 17:53:25 +0200 | [diff] [blame] | 49 | ret = sync_inode_metadata(filp->f_mapping->host, 1); | 
| Boaz Harrosh | baaf94c | 2009-06-14 16:52:10 +0300 | [diff] [blame] | 50 | return ret; | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 51 | } | 
|  | 52 |  | 
|  | 53 | static int exofs_flush(struct file *file, fl_owner_t id) | 
|  | 54 | { | 
| Boaz Harrosh | b284834 | 2010-05-31 18:02:39 +0300 | [diff] [blame] | 55 | int ret = vfs_fsync(file, 0); | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 56 | /* TODO: Flush the OSD target */ | 
| Boaz Harrosh | b284834 | 2010-05-31 18:02:39 +0300 | [diff] [blame] | 57 | return ret; | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 58 | } | 
|  | 59 |  | 
|  | 60 | const struct file_operations exofs_file_operations = { | 
|  | 61 | .llseek		= generic_file_llseek, | 
|  | 62 | .read		= do_sync_read, | 
|  | 63 | .write		= do_sync_write, | 
|  | 64 | .aio_read	= generic_file_aio_read, | 
|  | 65 | .aio_write	= generic_file_aio_write, | 
|  | 66 | .mmap		= generic_file_mmap, | 
|  | 67 | .open		= generic_file_open, | 
|  | 68 | .release	= exofs_release_file, | 
|  | 69 | .fsync		= exofs_file_fsync, | 
|  | 70 | .flush		= exofs_flush, | 
|  | 71 | .splice_read	= generic_file_splice_read, | 
|  | 72 | .splice_write	= generic_file_splice_write, | 
|  | 73 | }; | 
|  | 74 |  | 
|  | 75 | const struct inode_operations exofs_file_inode_operations = { | 
| Boaz Harrosh | e806271 | 2008-10-27 18:37:02 +0200 | [diff] [blame] | 76 | .setattr	= exofs_setattr, | 
|  | 77 | }; |