[ALSA] hda-codec - Add support for Evesham Voyager C530RD laptops
[linux-2.6/btrfs-unstable.git] / fs / udf / fsync.c
blob5887d78cde431cb05bfb3289b547195ae52421b1
1 /*
2 * fsync.c
4 * PURPOSE
5 * Fsync handling routines for the OSTA-UDF(tm) filesystem.
7 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
13 * (C) 1999-2001 Ben Fennema
14 * (C) 1999-2000 Stelias Computing Inc
16 * HISTORY
18 * 05/22/99 blf Created.
21 #include "udfdecl.h"
23 #include <linux/fs.h>
24 #include <linux/smp_lock.h>
26 static int udf_fsync_inode(struct inode *, int);
29 * File may be NULL when we are called. Perhaps we shouldn't
30 * even pass file to fsync ?
33 int udf_fsync_file(struct file * file, struct dentry *dentry, int datasync)
35 struct inode *inode = dentry->d_inode;
36 return udf_fsync_inode(inode, datasync);
39 static int udf_fsync_inode(struct inode *inode, int datasync)
41 int err;
43 err = sync_mapping_buffers(inode->i_mapping);
44 if (!(inode->i_state & I_DIRTY))
45 return err;
46 if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
47 return err;
49 err |= udf_sync_inode (inode);
50 return err ? -EIO : 0;