added a lot of printk output to ease writing of emulator
[linux-2.4.21-pre4.git] / fs / ext3 / file.c
1 /*
2  *  linux/fs/ext3/file.c
3  *
4  * Copyright (C) 1992, 1993, 1994, 1995
5  * Remy Card (card@masi.ibp.fr)
6  * Laboratoire MASI - Institut Blaise Pascal
7  * Universite Pierre et Marie Curie (Paris VI)
8  *
9  *  from
10  *
11  *  linux/fs/minix/file.c
12  *
13  *  Copyright (C) 1991, 1992  Linus Torvalds
14  *
15  *  ext3 fs regular file handling primitives
16  *
17  *  64-bit file support on 64-bit platforms by Jakub Jelinek
18  *      (jj@sunsite.ms.mff.cuni.cz)
19  */
20
21 #include <linux/sched.h>
22 #include <linux/fs.h>
23 #include <linux/locks.h>
24 #include <linux/jbd.h>
25 #include <linux/ext3_fs.h>
26 #include <linux/ext3_jbd.h>
27 #include <linux/smp_lock.h>
28
29 /*
30  * Called when an inode is released. Note that this is different
31  * from ext3_file_open: open gets called at every open, but release
32  * gets called only when /all/ the files are closed.
33  */
34 static int ext3_release_file (struct inode * inode, struct file * filp)
35 {
36         if (filp->f_mode & FMODE_WRITE)
37                 ext3_discard_prealloc (inode);
38         return 0;
39 }
40
41 /*
42  * Called when an inode is about to be opened.
43  * We use this to disallow opening RW large files on 32bit systems if
44  * the caller didn't specify O_LARGEFILE.  On 64bit systems we force
45  * on this flag in sys_open.
46  */
47 static int ext3_open_file (struct inode * inode, struct file * filp)
48 {
49         if (!(filp->f_flags & O_LARGEFILE) &&
50             inode->i_size > 0x7FFFFFFFLL)
51                 return -EFBIG;
52         return 0;
53 }
54
55 /*
56  * ext3_file_write().
57  *
58  * Most things are done in ext3_prepare_write() and ext3_commit_write().
59  */
60
61 static ssize_t
62 ext3_file_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
63 {
64         int ret, err;
65         struct inode *inode = file->f_dentry->d_inode;
66
67         ret = generic_file_write(file, buf, count, ppos);
68
69         /* Skip file flushing code if there was an error, or if nothing
70            was written. */
71         if (ret <= 0)
72                 return ret;
73         
74         /* If the inode is IS_SYNC, or is O_SYNC and we are doing
75            data-journaling, then we need to make sure that we force the
76            transaction to disk to keep all metadata uptodate
77            synchronously. */
78
79         if (file->f_flags & O_SYNC) {
80                 /* If we are non-data-journaled, then the dirty data has
81                    already been flushed to backing store by
82                    generic_osync_inode, and the inode has been flushed
83                    too if there have been any modifications other than
84                    mere timestamp updates.
85                    
86                    Open question --- do we care about flushing
87                    timestamps too if the inode is IS_SYNC? */
88                 if (!ext3_should_journal_data(inode))
89                         return ret;
90
91                 goto force_commit;
92         }
93
94         /* So we know that there has been no forced data flush.  If the
95            inode is marked IS_SYNC, we need to force one ourselves. */
96         if (!IS_SYNC(inode))
97                 return ret;
98         
99         /* Open question #2 --- should we force data to disk here too?
100            If we don't, the only impact is that data=writeback
101            filesystems won't flush data to disk automatically on
102            IS_SYNC, only metadata (but historically, that is what ext2
103            has done.) */
104         
105 force_commit:
106         err = ext3_force_commit(inode->i_sb);
107         if (err) 
108                 return err;
109         return ret;
110 }
111
112 struct file_operations ext3_file_operations = {
113         llseek:         generic_file_llseek,    /* BKL held */
114         read:           generic_file_read,      /* BKL not held.  Don't need */
115         write:          ext3_file_write,        /* BKL not held.  Don't need */
116         ioctl:          ext3_ioctl,             /* BKL held */
117         mmap:           generic_file_mmap,
118         open:           ext3_open_file,         /* BKL not held.  Don't need */
119         release:        ext3_release_file,      /* BKL not held.  Don't need */
120         fsync:          ext3_sync_file,         /* BKL held */
121 };
122
123 struct inode_operations ext3_file_inode_operations = {
124         truncate:       ext3_truncate,          /* BKL held */
125         setattr:        ext3_setattr,           /* BKL held */
126 };
127