]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - fs/ocfs2/file.c
ocfs2: Make high level btree extend code generic
[linux-2.6-omap-h63xx.git] / fs / ocfs2 / file.c
1 /* -*- mode: c; c-basic-offset: 8; -*-
2  * vim: noexpandtab sw=8 ts=8 sts=0:
3  *
4  * file.c
5  *
6  * File open, close, extend, truncate
7  *
8  * Copyright (C) 2002, 2004 Oracle.  All rights reserved.
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public
21  * License along with this program; if not, write to the
22  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23  * Boston, MA 021110-1307, USA.
24  */
25
26 #include <linux/capability.h>
27 #include <linux/fs.h>
28 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/highmem.h>
31 #include <linux/pagemap.h>
32 #include <linux/uio.h>
33 #include <linux/sched.h>
34 #include <linux/splice.h>
35 #include <linux/mount.h>
36 #include <linux/writeback.h>
37 #include <linux/falloc.h>
38
39 #define MLOG_MASK_PREFIX ML_INODE
40 #include <cluster/masklog.h>
41
42 #include "ocfs2.h"
43
44 #include "alloc.h"
45 #include "aops.h"
46 #include "dir.h"
47 #include "dlmglue.h"
48 #include "extent_map.h"
49 #include "file.h"
50 #include "sysfile.h"
51 #include "inode.h"
52 #include "ioctl.h"
53 #include "journal.h"
54 #include "locks.h"
55 #include "mmap.h"
56 #include "suballoc.h"
57 #include "super.h"
58
59 #include "buffer_head_io.h"
60
61 static int ocfs2_sync_inode(struct inode *inode)
62 {
63         filemap_fdatawrite(inode->i_mapping);
64         return sync_mapping_buffers(inode->i_mapping);
65 }
66
67 static int ocfs2_init_file_private(struct inode *inode, struct file *file)
68 {
69         struct ocfs2_file_private *fp;
70
71         fp = kzalloc(sizeof(struct ocfs2_file_private), GFP_KERNEL);
72         if (!fp)
73                 return -ENOMEM;
74
75         fp->fp_file = file;
76         mutex_init(&fp->fp_mutex);
77         ocfs2_file_lock_res_init(&fp->fp_flock, fp);
78         file->private_data = fp;
79
80         return 0;
81 }
82
83 static void ocfs2_free_file_private(struct inode *inode, struct file *file)
84 {
85         struct ocfs2_file_private *fp = file->private_data;
86         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
87
88         if (fp) {
89                 ocfs2_simple_drop_lockres(osb, &fp->fp_flock);
90                 ocfs2_lock_res_free(&fp->fp_flock);
91                 kfree(fp);
92                 file->private_data = NULL;
93         }
94 }
95
96 static int ocfs2_file_open(struct inode *inode, struct file *file)
97 {
98         int status;
99         int mode = file->f_flags;
100         struct ocfs2_inode_info *oi = OCFS2_I(inode);
101
102         mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
103                    file->f_path.dentry->d_name.len, file->f_path.dentry->d_name.name);
104
105         spin_lock(&oi->ip_lock);
106
107         /* Check that the inode hasn't been wiped from disk by another
108          * node. If it hasn't then we're safe as long as we hold the
109          * spin lock until our increment of open count. */
110         if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
111                 spin_unlock(&oi->ip_lock);
112
113                 status = -ENOENT;
114                 goto leave;
115         }
116
117         if (mode & O_DIRECT)
118                 oi->ip_flags |= OCFS2_INODE_OPEN_DIRECT;
119
120         oi->ip_open_count++;
121         spin_unlock(&oi->ip_lock);
122
123         status = ocfs2_init_file_private(inode, file);
124         if (status) {
125                 /*
126                  * We want to set open count back if we're failing the
127                  * open.
128                  */
129                 spin_lock(&oi->ip_lock);
130                 oi->ip_open_count--;
131                 spin_unlock(&oi->ip_lock);
132         }
133
134 leave:
135         mlog_exit(status);
136         return status;
137 }
138
139 static int ocfs2_file_release(struct inode *inode, struct file *file)
140 {
141         struct ocfs2_inode_info *oi = OCFS2_I(inode);
142
143         mlog_entry("(0x%p, 0x%p, '%.*s')\n", inode, file,
144                        file->f_path.dentry->d_name.len,
145                        file->f_path.dentry->d_name.name);
146
147         spin_lock(&oi->ip_lock);
148         if (!--oi->ip_open_count)
149                 oi->ip_flags &= ~OCFS2_INODE_OPEN_DIRECT;
150         spin_unlock(&oi->ip_lock);
151
152         ocfs2_free_file_private(inode, file);
153
154         mlog_exit(0);
155
156         return 0;
157 }
158
159 static int ocfs2_dir_open(struct inode *inode, struct file *file)
160 {
161         return ocfs2_init_file_private(inode, file);
162 }
163
164 static int ocfs2_dir_release(struct inode *inode, struct file *file)
165 {
166         ocfs2_free_file_private(inode, file);
167         return 0;
168 }
169
170 static int ocfs2_sync_file(struct file *file,
171                            struct dentry *dentry,
172                            int datasync)
173 {
174         int err = 0;
175         journal_t *journal;
176         struct inode *inode = dentry->d_inode;
177         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
178
179         mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync,
180                    dentry->d_name.len, dentry->d_name.name);
181
182         err = ocfs2_sync_inode(dentry->d_inode);
183         if (err)
184                 goto bail;
185
186         journal = osb->journal->j_journal;
187         err = journal_force_commit(journal);
188
189 bail:
190         mlog_exit(err);
191
192         return (err < 0) ? -EIO : 0;
193 }
194
195 int ocfs2_should_update_atime(struct inode *inode,
196                               struct vfsmount *vfsmnt)
197 {
198         struct timespec now;
199         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
200
201         if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
202                 return 0;
203
204         if ((inode->i_flags & S_NOATIME) ||
205             ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode)))
206                 return 0;
207
208         /*
209          * We can be called with no vfsmnt structure - NFSD will
210          * sometimes do this.
211          *
212          * Note that our action here is different than touch_atime() -
213          * if we can't tell whether this is a noatime mount, then we
214          * don't know whether to trust the value of s_atime_quantum.
215          */
216         if (vfsmnt == NULL)
217                 return 0;
218
219         if ((vfsmnt->mnt_flags & MNT_NOATIME) ||
220             ((vfsmnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
221                 return 0;
222
223         if (vfsmnt->mnt_flags & MNT_RELATIME) {
224                 if ((timespec_compare(&inode->i_atime, &inode->i_mtime) <= 0) ||
225                     (timespec_compare(&inode->i_atime, &inode->i_ctime) <= 0))
226                         return 1;
227
228                 return 0;
229         }
230
231         now = CURRENT_TIME;
232         if ((now.tv_sec - inode->i_atime.tv_sec <= osb->s_atime_quantum))
233                 return 0;
234         else
235                 return 1;
236 }
237
238 int ocfs2_update_inode_atime(struct inode *inode,
239                              struct buffer_head *bh)
240 {
241         int ret;
242         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
243         handle_t *handle;
244         struct ocfs2_dinode *di = (struct ocfs2_dinode *) bh->b_data;
245
246         mlog_entry_void();
247
248         handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
249         if (handle == NULL) {
250                 ret = -ENOMEM;
251                 mlog_errno(ret);
252                 goto out;
253         }
254
255         ret = ocfs2_journal_access(handle, inode, bh,
256                                    OCFS2_JOURNAL_ACCESS_WRITE);
257         if (ret) {
258                 mlog_errno(ret);
259                 goto out_commit;
260         }
261
262         /*
263          * Don't use ocfs2_mark_inode_dirty() here as we don't always
264          * have i_mutex to guard against concurrent changes to other
265          * inode fields.
266          */
267         inode->i_atime = CURRENT_TIME;
268         di->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
269         di->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
270
271         ret = ocfs2_journal_dirty(handle, bh);
272         if (ret < 0)
273                 mlog_errno(ret);
274
275 out_commit:
276         ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
277 out:
278         mlog_exit(ret);
279         return ret;
280 }
281
282 static int ocfs2_set_inode_size(handle_t *handle,
283                                 struct inode *inode,
284                                 struct buffer_head *fe_bh,
285                                 u64 new_i_size)
286 {
287         int status;
288
289         mlog_entry_void();
290         i_size_write(inode, new_i_size);
291         inode->i_blocks = ocfs2_inode_sector_count(inode);
292         inode->i_ctime = inode->i_mtime = CURRENT_TIME;
293
294         status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
295         if (status < 0) {
296                 mlog_errno(status);
297                 goto bail;
298         }
299
300 bail:
301         mlog_exit(status);
302         return status;
303 }
304
305 static int ocfs2_simple_size_update(struct inode *inode,
306                                     struct buffer_head *di_bh,
307                                     u64 new_i_size)
308 {
309         int ret;
310         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
311         handle_t *handle = NULL;
312
313         handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
314         if (handle == NULL) {
315                 ret = -ENOMEM;
316                 mlog_errno(ret);
317                 goto out;
318         }
319
320         ret = ocfs2_set_inode_size(handle, inode, di_bh,
321                                    new_i_size);
322         if (ret < 0)
323                 mlog_errno(ret);
324
325         ocfs2_commit_trans(osb, handle);
326 out:
327         return ret;
328 }
329
330 static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb,
331                                      struct inode *inode,
332                                      struct buffer_head *fe_bh,
333                                      u64 new_i_size)
334 {
335         int status;
336         handle_t *handle;
337         struct ocfs2_dinode *di;
338         u64 cluster_bytes;
339
340         mlog_entry_void();
341
342         /* TODO: This needs to actually orphan the inode in this
343          * transaction. */
344
345         handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
346         if (IS_ERR(handle)) {
347                 status = PTR_ERR(handle);
348                 mlog_errno(status);
349                 goto out;
350         }
351
352         status = ocfs2_journal_access(handle, inode, fe_bh,
353                                       OCFS2_JOURNAL_ACCESS_WRITE);
354         if (status < 0) {
355                 mlog_errno(status);
356                 goto out_commit;
357         }
358
359         /*
360          * Do this before setting i_size.
361          */
362         cluster_bytes = ocfs2_align_bytes_to_clusters(inode->i_sb, new_i_size);
363         status = ocfs2_zero_range_for_truncate(inode, handle, new_i_size,
364                                                cluster_bytes);
365         if (status) {
366                 mlog_errno(status);
367                 goto out_commit;
368         }
369
370         i_size_write(inode, new_i_size);
371         inode->i_ctime = inode->i_mtime = CURRENT_TIME;
372
373         di = (struct ocfs2_dinode *) fe_bh->b_data;
374         di->i_size = cpu_to_le64(new_i_size);
375         di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
376         di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
377
378         status = ocfs2_journal_dirty(handle, fe_bh);
379         if (status < 0)
380                 mlog_errno(status);
381
382 out_commit:
383         ocfs2_commit_trans(osb, handle);
384 out:
385
386         mlog_exit(status);
387         return status;
388 }
389
390 static int ocfs2_truncate_file(struct inode *inode,
391                                struct buffer_head *di_bh,
392                                u64 new_i_size)
393 {
394         int status = 0;
395         struct ocfs2_dinode *fe = NULL;
396         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
397         struct ocfs2_truncate_context *tc = NULL;
398
399         mlog_entry("(inode = %llu, new_i_size = %llu\n",
400                    (unsigned long long)OCFS2_I(inode)->ip_blkno,
401                    (unsigned long long)new_i_size);
402
403         fe = (struct ocfs2_dinode *) di_bh->b_data;
404         if (!OCFS2_IS_VALID_DINODE(fe)) {
405                 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe);
406                 status = -EIO;
407                 goto bail;
408         }
409
410         mlog_bug_on_msg(le64_to_cpu(fe->i_size) != i_size_read(inode),
411                         "Inode %llu, inode i_size = %lld != di "
412                         "i_size = %llu, i_flags = 0x%x\n",
413                         (unsigned long long)OCFS2_I(inode)->ip_blkno,
414                         i_size_read(inode),
415                         (unsigned long long)le64_to_cpu(fe->i_size),
416                         le32_to_cpu(fe->i_flags));
417
418         if (new_i_size > le64_to_cpu(fe->i_size)) {
419                 mlog(0, "asked to truncate file with size (%llu) to size (%llu)!\n",
420                      (unsigned long long)le64_to_cpu(fe->i_size),
421                      (unsigned long long)new_i_size);
422                 status = -EINVAL;
423                 mlog_errno(status);
424                 goto bail;
425         }
426
427         mlog(0, "inode %llu, i_size = %llu, new_i_size = %llu\n",
428              (unsigned long long)le64_to_cpu(fe->i_blkno),
429              (unsigned long long)le64_to_cpu(fe->i_size),
430              (unsigned long long)new_i_size);
431
432         /* lets handle the simple truncate cases before doing any more
433          * cluster locking. */
434         if (new_i_size == le64_to_cpu(fe->i_size))
435                 goto bail;
436
437         down_write(&OCFS2_I(inode)->ip_alloc_sem);
438
439         /*
440          * The inode lock forced other nodes to sync and drop their
441          * pages, which (correctly) happens even if we have a truncate
442          * without allocation change - ocfs2 cluster sizes can be much
443          * greater than page size, so we have to truncate them
444          * anyway.
445          */
446         unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1);
447         truncate_inode_pages(inode->i_mapping, new_i_size);
448
449         if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
450                 status = ocfs2_truncate_inline(inode, di_bh, new_i_size,
451                                                i_size_read(inode), 1);
452                 if (status)
453                         mlog_errno(status);
454
455                 goto bail_unlock_sem;
456         }
457
458         /* alright, we're going to need to do a full blown alloc size
459          * change. Orphan the inode so that recovery can complete the
460          * truncate if necessary. This does the task of marking
461          * i_size. */
462         status = ocfs2_orphan_for_truncate(osb, inode, di_bh, new_i_size);
463         if (status < 0) {
464                 mlog_errno(status);
465                 goto bail_unlock_sem;
466         }
467
468         status = ocfs2_prepare_truncate(osb, inode, di_bh, &tc);
469         if (status < 0) {
470                 mlog_errno(status);
471                 goto bail_unlock_sem;
472         }
473
474         status = ocfs2_commit_truncate(osb, inode, di_bh, tc);
475         if (status < 0) {
476                 mlog_errno(status);
477                 goto bail_unlock_sem;
478         }
479
480         /* TODO: orphan dir cleanup here. */
481 bail_unlock_sem:
482         up_write(&OCFS2_I(inode)->ip_alloc_sem);
483
484 bail:
485
486         mlog_exit(status);
487         return status;
488 }
489
490 /*
491  * extend file allocation only here.
492  * we'll update all the disk stuff, and oip->alloc_size
493  *
494  * expect stuff to be locked, a transaction started and enough data /
495  * metadata reservations in the contexts.
496  *
497  * Will return -EAGAIN, and a reason if a restart is needed.
498  * If passed in, *reason will always be set, even in error.
499  */
500 int ocfs2_add_inode_data(struct ocfs2_super *osb,
501                          struct inode *inode,
502                          u32 *logical_offset,
503                          u32 clusters_to_add,
504                          int mark_unwritten,
505                          struct buffer_head *fe_bh,
506                          handle_t *handle,
507                          struct ocfs2_alloc_context *data_ac,
508                          struct ocfs2_alloc_context *meta_ac,
509                          enum ocfs2_alloc_restarted *reason_ret)
510 {
511         struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data;
512         struct ocfs2_extent_list *el = &fe->id2.i_list;
513
514         return ocfs2_add_clusters_in_btree(osb, inode, logical_offset,
515                                            clusters_to_add, mark_unwritten,
516                                            fe_bh, el, handle,
517                                            data_ac, meta_ac, reason_ret,
518                                            OCFS2_DINODE_EXTENT);
519 }
520
521 static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
522                                      u32 clusters_to_add, int mark_unwritten)
523 {
524         int status = 0;
525         int restart_func = 0;
526         int credits;
527         u32 prev_clusters;
528         struct buffer_head *bh = NULL;
529         struct ocfs2_dinode *fe = NULL;
530         handle_t *handle = NULL;
531         struct ocfs2_alloc_context *data_ac = NULL;
532         struct ocfs2_alloc_context *meta_ac = NULL;
533         enum ocfs2_alloc_restarted why;
534         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
535
536         mlog_entry("(clusters_to_add = %u)\n", clusters_to_add);
537
538         /*
539          * This function only exists for file systems which don't
540          * support holes.
541          */
542         BUG_ON(mark_unwritten && !ocfs2_sparse_alloc(osb));
543
544         status = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno, &bh,
545                                   OCFS2_BH_CACHED, inode);
546         if (status < 0) {
547                 mlog_errno(status);
548                 goto leave;
549         }
550
551         fe = (struct ocfs2_dinode *) bh->b_data;
552         if (!OCFS2_IS_VALID_DINODE(fe)) {
553                 OCFS2_RO_ON_INVALID_DINODE(inode->i_sb, fe);
554                 status = -EIO;
555                 goto leave;
556         }
557
558 restart_all:
559         BUG_ON(le32_to_cpu(fe->i_clusters) != OCFS2_I(inode)->ip_clusters);
560
561         mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u, "
562              "clusters_to_add = %u\n",
563              (unsigned long long)OCFS2_I(inode)->ip_blkno,
564              (long long)i_size_read(inode), le32_to_cpu(fe->i_clusters),
565              clusters_to_add);
566         status = ocfs2_lock_allocators(inode, bh, &fe->id2.i_list,
567                                        clusters_to_add, 0, &data_ac,
568                                        &meta_ac);
569         if (status) {
570                 mlog_errno(status);
571                 goto leave;
572         }
573
574         credits = ocfs2_calc_extend_credits(osb->sb, &fe->id2.i_list,
575                                             clusters_to_add);
576         handle = ocfs2_start_trans(osb, credits);
577         if (IS_ERR(handle)) {
578                 status = PTR_ERR(handle);
579                 handle = NULL;
580                 mlog_errno(status);
581                 goto leave;
582         }
583
584 restarted_transaction:
585         /* reserve a write to the file entry early on - that we if we
586          * run out of credits in the allocation path, we can still
587          * update i_size. */
588         status = ocfs2_journal_access(handle, inode, bh,
589                                       OCFS2_JOURNAL_ACCESS_WRITE);
590         if (status < 0) {
591                 mlog_errno(status);
592                 goto leave;
593         }
594
595         prev_clusters = OCFS2_I(inode)->ip_clusters;
596
597         status = ocfs2_add_inode_data(osb,
598                                       inode,
599                                       &logical_start,
600                                       clusters_to_add,
601                                       mark_unwritten,
602                                       bh,
603                                       handle,
604                                       data_ac,
605                                       meta_ac,
606                                       &why);
607         if ((status < 0) && (status != -EAGAIN)) {
608                 if (status != -ENOSPC)
609                         mlog_errno(status);
610                 goto leave;
611         }
612
613         status = ocfs2_journal_dirty(handle, bh);
614         if (status < 0) {
615                 mlog_errno(status);
616                 goto leave;
617         }
618
619         spin_lock(&OCFS2_I(inode)->ip_lock);
620         clusters_to_add -= (OCFS2_I(inode)->ip_clusters - prev_clusters);
621         spin_unlock(&OCFS2_I(inode)->ip_lock);
622
623         if (why != RESTART_NONE && clusters_to_add) {
624                 if (why == RESTART_META) {
625                         mlog(0, "restarting function.\n");
626                         restart_func = 1;
627                 } else {
628                         BUG_ON(why != RESTART_TRANS);
629
630                         mlog(0, "restarting transaction.\n");
631                         /* TODO: This can be more intelligent. */
632                         credits = ocfs2_calc_extend_credits(osb->sb,
633                                                             &fe->id2.i_list,
634                                                             clusters_to_add);
635                         status = ocfs2_extend_trans(handle, credits);
636                         if (status < 0) {
637                                 /* handle still has to be committed at
638                                  * this point. */
639                                 status = -ENOMEM;
640                                 mlog_errno(status);
641                                 goto leave;
642                         }
643                         goto restarted_transaction;
644                 }
645         }
646
647         mlog(0, "fe: i_clusters = %u, i_size=%llu\n",
648              le32_to_cpu(fe->i_clusters),
649              (unsigned long long)le64_to_cpu(fe->i_size));
650         mlog(0, "inode: ip_clusters=%u, i_size=%lld\n",
651              OCFS2_I(inode)->ip_clusters, (long long)i_size_read(inode));
652
653 leave:
654         if (handle) {
655                 ocfs2_commit_trans(osb, handle);
656                 handle = NULL;
657         }
658         if (data_ac) {
659                 ocfs2_free_alloc_context(data_ac);
660                 data_ac = NULL;
661         }
662         if (meta_ac) {
663                 ocfs2_free_alloc_context(meta_ac);
664                 meta_ac = NULL;
665         }
666         if ((!status) && restart_func) {
667                 restart_func = 0;
668                 goto restart_all;
669         }
670         if (bh) {
671                 brelse(bh);
672                 bh = NULL;
673         }
674
675         mlog_exit(status);
676         return status;
677 }
678
679 /* Some parts of this taken from generic_cont_expand, which turned out
680  * to be too fragile to do exactly what we need without us having to
681  * worry about recursive locking in ->prepare_write() and
682  * ->commit_write(). */
683 static int ocfs2_write_zero_page(struct inode *inode,
684                                  u64 size)
685 {
686         struct address_space *mapping = inode->i_mapping;
687         struct page *page;
688         unsigned long index;
689         unsigned int offset;
690         handle_t *handle = NULL;
691         int ret;
692
693         offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */
694         /* ugh.  in prepare/commit_write, if from==to==start of block, we 
695         ** skip the prepare.  make sure we never send an offset for the start
696         ** of a block
697         */
698         if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
699                 offset++;
700         }
701         index = size >> PAGE_CACHE_SHIFT;
702
703         page = grab_cache_page(mapping, index);
704         if (!page) {
705                 ret = -ENOMEM;
706                 mlog_errno(ret);
707                 goto out;
708         }
709
710         ret = ocfs2_prepare_write_nolock(inode, page, offset, offset);
711         if (ret < 0) {
712                 mlog_errno(ret);
713                 goto out_unlock;
714         }
715
716         if (ocfs2_should_order_data(inode)) {
717                 handle = ocfs2_start_walk_page_trans(inode, page, offset,
718                                                      offset);
719                 if (IS_ERR(handle)) {
720                         ret = PTR_ERR(handle);
721                         handle = NULL;
722                         goto out_unlock;
723                 }
724         }
725
726         /* must not update i_size! */
727         ret = block_commit_write(page, offset, offset);
728         if (ret < 0)
729                 mlog_errno(ret);
730         else
731                 ret = 0;
732
733         if (handle)
734                 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
735 out_unlock:
736         unlock_page(page);
737         page_cache_release(page);
738 out:
739         return ret;
740 }
741
742 static int ocfs2_zero_extend(struct inode *inode,
743                              u64 zero_to_size)
744 {
745         int ret = 0;
746         u64 start_off;
747         struct super_block *sb = inode->i_sb;
748
749         start_off = ocfs2_align_bytes_to_blocks(sb, i_size_read(inode));
750         while (start_off < zero_to_size) {
751                 ret = ocfs2_write_zero_page(inode, start_off);
752                 if (ret < 0) {
753                         mlog_errno(ret);
754                         goto out;
755                 }
756
757                 start_off += sb->s_blocksize;
758
759                 /*
760                  * Very large extends have the potential to lock up
761                  * the cpu for extended periods of time.
762                  */
763                 cond_resched();
764         }
765
766 out:
767         return ret;
768 }
769
770 int ocfs2_extend_no_holes(struct inode *inode, u64 new_i_size, u64 zero_to)
771 {
772         int ret;
773         u32 clusters_to_add;
774         struct ocfs2_inode_info *oi = OCFS2_I(inode);
775
776         clusters_to_add = ocfs2_clusters_for_bytes(inode->i_sb, new_i_size);
777         if (clusters_to_add < oi->ip_clusters)
778                 clusters_to_add = 0;
779         else
780                 clusters_to_add -= oi->ip_clusters;
781
782         if (clusters_to_add) {
783                 ret = __ocfs2_extend_allocation(inode, oi->ip_clusters,
784                                                 clusters_to_add, 0);
785                 if (ret) {
786                         mlog_errno(ret);
787                         goto out;
788                 }
789         }
790
791         /*
792          * Call this even if we don't add any clusters to the tree. We
793          * still need to zero the area between the old i_size and the
794          * new i_size.
795          */
796         ret = ocfs2_zero_extend(inode, zero_to);
797         if (ret < 0)
798                 mlog_errno(ret);
799
800 out:
801         return ret;
802 }
803
804 static int ocfs2_extend_file(struct inode *inode,
805                              struct buffer_head *di_bh,
806                              u64 new_i_size)
807 {
808         int ret = 0;
809         struct ocfs2_inode_info *oi = OCFS2_I(inode);
810
811         BUG_ON(!di_bh);
812
813         /* setattr sometimes calls us like this. */
814         if (new_i_size == 0)
815                 goto out;
816
817         if (i_size_read(inode) == new_i_size)
818                 goto out;
819         BUG_ON(new_i_size < i_size_read(inode));
820
821         /*
822          * Fall through for converting inline data, even if the fs
823          * supports sparse files.
824          *
825          * The check for inline data here is legal - nobody can add
826          * the feature since we have i_mutex. We must check it again
827          * after acquiring ip_alloc_sem though, as paths like mmap
828          * might have raced us to converting the inode to extents.
829          */
830         if (!(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
831             && ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
832                 goto out_update_size;
833
834         /*
835          * The alloc sem blocks people in read/write from reading our
836          * allocation until we're done changing it. We depend on
837          * i_mutex to block other extend/truncate calls while we're
838          * here.
839          */
840         down_write(&oi->ip_alloc_sem);
841
842         if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
843                 /*
844                  * We can optimize small extends by keeping the inodes
845                  * inline data.
846                  */
847                 if (ocfs2_size_fits_inline_data(di_bh, new_i_size)) {
848                         up_write(&oi->ip_alloc_sem);
849                         goto out_update_size;
850                 }
851
852                 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
853                 if (ret) {
854                         up_write(&oi->ip_alloc_sem);
855
856                         mlog_errno(ret);
857                         goto out;
858                 }
859         }
860
861         if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
862                 ret = ocfs2_extend_no_holes(inode, new_i_size, new_i_size);
863
864         up_write(&oi->ip_alloc_sem);
865
866         if (ret < 0) {
867                 mlog_errno(ret);
868                 goto out;
869         }
870
871 out_update_size:
872         ret = ocfs2_simple_size_update(inode, di_bh, new_i_size);
873         if (ret < 0)
874                 mlog_errno(ret);
875
876 out:
877         return ret;
878 }
879
880 int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
881 {
882         int status = 0, size_change;
883         struct inode *inode = dentry->d_inode;
884         struct super_block *sb = inode->i_sb;
885         struct ocfs2_super *osb = OCFS2_SB(sb);
886         struct buffer_head *bh = NULL;
887         handle_t *handle = NULL;
888
889         mlog_entry("(0x%p, '%.*s')\n", dentry,
890                    dentry->d_name.len, dentry->d_name.name);
891
892         /* ensuring we don't even attempt to truncate a symlink */
893         if (S_ISLNK(inode->i_mode))
894                 attr->ia_valid &= ~ATTR_SIZE;
895
896         if (attr->ia_valid & ATTR_MODE)
897                 mlog(0, "mode change: %d\n", attr->ia_mode);
898         if (attr->ia_valid & ATTR_UID)
899                 mlog(0, "uid change: %d\n", attr->ia_uid);
900         if (attr->ia_valid & ATTR_GID)
901                 mlog(0, "gid change: %d\n", attr->ia_gid);
902         if (attr->ia_valid & ATTR_SIZE)
903                 mlog(0, "size change...\n");
904         if (attr->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME))
905                 mlog(0, "time change...\n");
906
907 #define OCFS2_VALID_ATTRS (ATTR_ATIME | ATTR_MTIME | ATTR_CTIME | ATTR_SIZE \
908                            | ATTR_GID | ATTR_UID | ATTR_MODE)
909         if (!(attr->ia_valid & OCFS2_VALID_ATTRS)) {
910                 mlog(0, "can't handle attrs: 0x%x\n", attr->ia_valid);
911                 return 0;
912         }
913
914         status = inode_change_ok(inode, attr);
915         if (status)
916                 return status;
917
918         size_change = S_ISREG(inode->i_mode) && attr->ia_valid & ATTR_SIZE;
919         if (size_change) {
920                 status = ocfs2_rw_lock(inode, 1);
921                 if (status < 0) {
922                         mlog_errno(status);
923                         goto bail;
924                 }
925         }
926
927         status = ocfs2_inode_lock(inode, &bh, 1);
928         if (status < 0) {
929                 if (status != -ENOENT)
930                         mlog_errno(status);
931                 goto bail_unlock_rw;
932         }
933
934         if (size_change && attr->ia_size != i_size_read(inode)) {
935                 if (attr->ia_size > sb->s_maxbytes) {
936                         status = -EFBIG;
937                         goto bail_unlock;
938                 }
939
940                 if (i_size_read(inode) > attr->ia_size)
941                         status = ocfs2_truncate_file(inode, bh, attr->ia_size);
942                 else
943                         status = ocfs2_extend_file(inode, bh, attr->ia_size);
944                 if (status < 0) {
945                         if (status != -ENOSPC)
946                                 mlog_errno(status);
947                         status = -ENOSPC;
948                         goto bail_unlock;
949                 }
950         }
951
952         handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
953         if (IS_ERR(handle)) {
954                 status = PTR_ERR(handle);
955                 mlog_errno(status);
956                 goto bail_unlock;
957         }
958
959         /*
960          * This will intentionally not wind up calling vmtruncate(),
961          * since all the work for a size change has been done above.
962          * Otherwise, we could get into problems with truncate as
963          * ip_alloc_sem is used there to protect against i_size
964          * changes.
965          */
966         status = inode_setattr(inode, attr);
967         if (status < 0) {
968                 mlog_errno(status);
969                 goto bail_commit;
970         }
971
972         status = ocfs2_mark_inode_dirty(handle, inode, bh);
973         if (status < 0)
974                 mlog_errno(status);
975
976 bail_commit:
977         ocfs2_commit_trans(osb, handle);
978 bail_unlock:
979         ocfs2_inode_unlock(inode, 1);
980 bail_unlock_rw:
981         if (size_change)
982                 ocfs2_rw_unlock(inode, 1);
983 bail:
984         if (bh)
985                 brelse(bh);
986
987         mlog_exit(status);
988         return status;
989 }
990
991 int ocfs2_getattr(struct vfsmount *mnt,
992                   struct dentry *dentry,
993                   struct kstat *stat)
994 {
995         struct inode *inode = dentry->d_inode;
996         struct super_block *sb = dentry->d_inode->i_sb;
997         struct ocfs2_super *osb = sb->s_fs_info;
998         int err;
999
1000         mlog_entry_void();
1001
1002         err = ocfs2_inode_revalidate(dentry);
1003         if (err) {
1004                 if (err != -ENOENT)
1005                         mlog_errno(err);
1006                 goto bail;
1007         }
1008
1009         generic_fillattr(inode, stat);
1010
1011         /* We set the blksize from the cluster size for performance */
1012         stat->blksize = osb->s_clustersize;
1013
1014 bail:
1015         mlog_exit(err);
1016
1017         return err;
1018 }
1019
1020 int ocfs2_permission(struct inode *inode, int mask)
1021 {
1022         int ret;
1023
1024         mlog_entry_void();
1025
1026         ret = ocfs2_inode_lock(inode, NULL, 0);
1027         if (ret) {
1028                 if (ret != -ENOENT)
1029                         mlog_errno(ret);
1030                 goto out;
1031         }
1032
1033         ret = generic_permission(inode, mask, NULL);
1034
1035         ocfs2_inode_unlock(inode, 0);
1036 out:
1037         mlog_exit(ret);
1038         return ret;
1039 }
1040
1041 static int __ocfs2_write_remove_suid(struct inode *inode,
1042                                      struct buffer_head *bh)
1043 {
1044         int ret;
1045         handle_t *handle;
1046         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1047         struct ocfs2_dinode *di;
1048
1049         mlog_entry("(Inode %llu, mode 0%o)\n",
1050                    (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_mode);
1051
1052         handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1053         if (handle == NULL) {
1054                 ret = -ENOMEM;
1055                 mlog_errno(ret);
1056                 goto out;
1057         }
1058
1059         ret = ocfs2_journal_access(handle, inode, bh,
1060                                    OCFS2_JOURNAL_ACCESS_WRITE);
1061         if (ret < 0) {
1062                 mlog_errno(ret);
1063                 goto out_trans;
1064         }
1065
1066         inode->i_mode &= ~S_ISUID;
1067         if ((inode->i_mode & S_ISGID) && (inode->i_mode & S_IXGRP))
1068                 inode->i_mode &= ~S_ISGID;
1069
1070         di = (struct ocfs2_dinode *) bh->b_data;
1071         di->i_mode = cpu_to_le16(inode->i_mode);
1072
1073         ret = ocfs2_journal_dirty(handle, bh);
1074         if (ret < 0)
1075                 mlog_errno(ret);
1076
1077 out_trans:
1078         ocfs2_commit_trans(osb, handle);
1079 out:
1080         mlog_exit(ret);
1081         return ret;
1082 }
1083
1084 /*
1085  * Will look for holes and unwritten extents in the range starting at
1086  * pos for count bytes (inclusive).
1087  */
1088 static int ocfs2_check_range_for_holes(struct inode *inode, loff_t pos,
1089                                        size_t count)
1090 {
1091         int ret = 0;
1092         unsigned int extent_flags;
1093         u32 cpos, clusters, extent_len, phys_cpos;
1094         struct super_block *sb = inode->i_sb;
1095
1096         cpos = pos >> OCFS2_SB(sb)->s_clustersize_bits;
1097         clusters = ocfs2_clusters_for_bytes(sb, pos + count) - cpos;
1098
1099         while (clusters) {
1100                 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos, &extent_len,
1101                                          &extent_flags);
1102                 if (ret < 0) {
1103                         mlog_errno(ret);
1104                         goto out;
1105                 }
1106
1107                 if (phys_cpos == 0 || (extent_flags & OCFS2_EXT_UNWRITTEN)) {
1108                         ret = 1;
1109                         break;
1110                 }
1111
1112                 if (extent_len > clusters)
1113                         extent_len = clusters;
1114
1115                 clusters -= extent_len;
1116                 cpos += extent_len;
1117         }
1118 out:
1119         return ret;
1120 }
1121
1122 static int ocfs2_write_remove_suid(struct inode *inode)
1123 {
1124         int ret;
1125         struct buffer_head *bh = NULL;
1126         struct ocfs2_inode_info *oi = OCFS2_I(inode);
1127
1128         ret = ocfs2_read_block(OCFS2_SB(inode->i_sb),
1129                                oi->ip_blkno, &bh, OCFS2_BH_CACHED, inode);
1130         if (ret < 0) {
1131                 mlog_errno(ret);
1132                 goto out;
1133         }
1134
1135         ret =  __ocfs2_write_remove_suid(inode, bh);
1136 out:
1137         brelse(bh);
1138         return ret;
1139 }
1140
1141 /*
1142  * Allocate enough extents to cover the region starting at byte offset
1143  * start for len bytes. Existing extents are skipped, any extents
1144  * added are marked as "unwritten".
1145  */
1146 static int ocfs2_allocate_unwritten_extents(struct inode *inode,
1147                                             u64 start, u64 len)
1148 {
1149         int ret;
1150         u32 cpos, phys_cpos, clusters, alloc_size;
1151         u64 end = start + len;
1152         struct buffer_head *di_bh = NULL;
1153
1154         if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1155                 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb),
1156                                        OCFS2_I(inode)->ip_blkno, &di_bh,
1157                                        OCFS2_BH_CACHED, inode);
1158                 if (ret) {
1159                         mlog_errno(ret);
1160                         goto out;
1161                 }
1162
1163                 /*
1164                  * Nothing to do if the requested reservation range
1165                  * fits within the inode.
1166                  */
1167                 if (ocfs2_size_fits_inline_data(di_bh, end))
1168                         goto out;
1169
1170                 ret = ocfs2_convert_inline_data_to_extents(inode, di_bh);
1171                 if (ret) {
1172                         mlog_errno(ret);
1173                         goto out;
1174                 }
1175         }
1176
1177         /*
1178          * We consider both start and len to be inclusive.
1179          */
1180         cpos = start >> OCFS2_SB(inode->i_sb)->s_clustersize_bits;
1181         clusters = ocfs2_clusters_for_bytes(inode->i_sb, start + len);
1182         clusters -= cpos;
1183
1184         while (clusters) {
1185                 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1186                                          &alloc_size, NULL);
1187                 if (ret) {
1188                         mlog_errno(ret);
1189                         goto out;
1190                 }
1191
1192                 /*
1193                  * Hole or existing extent len can be arbitrary, so
1194                  * cap it to our own allocation request.
1195                  */
1196                 if (alloc_size > clusters)
1197                         alloc_size = clusters;
1198
1199                 if (phys_cpos) {
1200                         /*
1201                          * We already have an allocation at this
1202                          * region so we can safely skip it.
1203                          */
1204                         goto next;
1205                 }
1206
1207                 ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
1208                 if (ret) {
1209                         if (ret != -ENOSPC)
1210                                 mlog_errno(ret);
1211                         goto out;
1212                 }
1213
1214 next:
1215                 cpos += alloc_size;
1216                 clusters -= alloc_size;
1217         }
1218
1219         ret = 0;
1220 out:
1221
1222         brelse(di_bh);
1223         return ret;
1224 }
1225
1226 static int __ocfs2_remove_inode_range(struct inode *inode,
1227                                       struct buffer_head *di_bh,
1228                                       u32 cpos, u32 phys_cpos, u32 len,
1229                                       struct ocfs2_cached_dealloc_ctxt *dealloc)
1230 {
1231         int ret;
1232         u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
1233         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1234         struct inode *tl_inode = osb->osb_tl_inode;
1235         handle_t *handle;
1236         struct ocfs2_alloc_context *meta_ac = NULL;
1237         struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1238
1239         ret = ocfs2_lock_allocators(inode, di_bh, &di->id2.i_list,
1240                                     0, 1, NULL, &meta_ac);
1241         if (ret) {
1242                 mlog_errno(ret);
1243                 return ret;
1244         }
1245
1246         mutex_lock(&tl_inode->i_mutex);
1247
1248         if (ocfs2_truncate_log_needs_flush(osb)) {
1249                 ret = __ocfs2_flush_truncate_log(osb);
1250                 if (ret < 0) {
1251                         mlog_errno(ret);
1252                         goto out;
1253                 }
1254         }
1255
1256         handle = ocfs2_start_trans(osb, OCFS2_REMOVE_EXTENT_CREDITS);
1257         if (handle == NULL) {
1258                 ret = -ENOMEM;
1259                 mlog_errno(ret);
1260                 goto out;
1261         }
1262
1263         ret = ocfs2_journal_access(handle, inode, di_bh,
1264                                    OCFS2_JOURNAL_ACCESS_WRITE);
1265         if (ret) {
1266                 mlog_errno(ret);
1267                 goto out;
1268         }
1269
1270         ret = ocfs2_remove_extent(inode, di_bh, cpos, len, handle, meta_ac,
1271                                   dealloc, OCFS2_DINODE_EXTENT);
1272         if (ret) {
1273                 mlog_errno(ret);
1274                 goto out_commit;
1275         }
1276
1277         OCFS2_I(inode)->ip_clusters -= len;
1278         di->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters);
1279
1280         ret = ocfs2_journal_dirty(handle, di_bh);
1281         if (ret) {
1282                 mlog_errno(ret);
1283                 goto out_commit;
1284         }
1285
1286         ret = ocfs2_truncate_log_append(osb, handle, phys_blkno, len);
1287         if (ret)
1288                 mlog_errno(ret);
1289
1290 out_commit:
1291         ocfs2_commit_trans(osb, handle);
1292 out:
1293         mutex_unlock(&tl_inode->i_mutex);
1294
1295         if (meta_ac)
1296                 ocfs2_free_alloc_context(meta_ac);
1297
1298         return ret;
1299 }
1300
1301 /*
1302  * Truncate a byte range, avoiding pages within partial clusters. This
1303  * preserves those pages for the zeroing code to write to.
1304  */
1305 static void ocfs2_truncate_cluster_pages(struct inode *inode, u64 byte_start,
1306                                          u64 byte_len)
1307 {
1308         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1309         loff_t start, end;
1310         struct address_space *mapping = inode->i_mapping;
1311
1312         start = (loff_t)ocfs2_align_bytes_to_clusters(inode->i_sb, byte_start);
1313         end = byte_start + byte_len;
1314         end = end & ~(osb->s_clustersize - 1);
1315
1316         if (start < end) {
1317                 unmap_mapping_range(mapping, start, end - start, 0);
1318                 truncate_inode_pages_range(mapping, start, end - 1);
1319         }
1320 }
1321
1322 static int ocfs2_zero_partial_clusters(struct inode *inode,
1323                                        u64 start, u64 len)
1324 {
1325         int ret = 0;
1326         u64 tmpend, end = start + len;
1327         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1328         unsigned int csize = osb->s_clustersize;
1329         handle_t *handle;
1330
1331         /*
1332          * The "start" and "end" values are NOT necessarily part of
1333          * the range whose allocation is being deleted. Rather, this
1334          * is what the user passed in with the request. We must zero
1335          * partial clusters here. There's no need to worry about
1336          * physical allocation - the zeroing code knows to skip holes.
1337          */
1338         mlog(0, "byte start: %llu, end: %llu\n",
1339              (unsigned long long)start, (unsigned long long)end);
1340
1341         /*
1342          * If both edges are on a cluster boundary then there's no
1343          * zeroing required as the region is part of the allocation to
1344          * be truncated.
1345          */
1346         if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0)
1347                 goto out;
1348
1349         handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1350         if (handle == NULL) {
1351                 ret = -ENOMEM;
1352                 mlog_errno(ret);
1353                 goto out;
1354         }
1355
1356         /*
1357          * We want to get the byte offset of the end of the 1st cluster.
1358          */
1359         tmpend = (u64)osb->s_clustersize + (start & ~(osb->s_clustersize - 1));
1360         if (tmpend > end)
1361                 tmpend = end;
1362
1363         mlog(0, "1st range: start: %llu, tmpend: %llu\n",
1364              (unsigned long long)start, (unsigned long long)tmpend);
1365
1366         ret = ocfs2_zero_range_for_truncate(inode, handle, start, tmpend);
1367         if (ret)
1368                 mlog_errno(ret);
1369
1370         if (tmpend < end) {
1371                 /*
1372                  * This may make start and end equal, but the zeroing
1373                  * code will skip any work in that case so there's no
1374                  * need to catch it up here.
1375                  */
1376                 start = end & ~(osb->s_clustersize - 1);
1377
1378                 mlog(0, "2nd range: start: %llu, end: %llu\n",
1379                      (unsigned long long)start, (unsigned long long)end);
1380
1381                 ret = ocfs2_zero_range_for_truncate(inode, handle, start, end);
1382                 if (ret)
1383                         mlog_errno(ret);
1384         }
1385
1386         ocfs2_commit_trans(osb, handle);
1387 out:
1388         return ret;
1389 }
1390
1391 static int ocfs2_remove_inode_range(struct inode *inode,
1392                                     struct buffer_head *di_bh, u64 byte_start,
1393                                     u64 byte_len)
1394 {
1395         int ret = 0;
1396         u32 trunc_start, trunc_len, cpos, phys_cpos, alloc_size;
1397         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1398         struct ocfs2_cached_dealloc_ctxt dealloc;
1399         struct address_space *mapping = inode->i_mapping;
1400
1401         ocfs2_init_dealloc_ctxt(&dealloc);
1402
1403         if (byte_len == 0)
1404                 return 0;
1405
1406         if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1407                 ret = ocfs2_truncate_inline(inode, di_bh, byte_start,
1408                                             byte_start + byte_len, 0);
1409                 if (ret) {
1410                         mlog_errno(ret);
1411                         goto out;
1412                 }
1413                 /*
1414                  * There's no need to get fancy with the page cache
1415                  * truncate of an inline-data inode. We're talking
1416                  * about less than a page here, which will be cached
1417                  * in the dinode buffer anyway.
1418                  */
1419                 unmap_mapping_range(mapping, 0, 0, 0);
1420                 truncate_inode_pages(mapping, 0);
1421                 goto out;
1422         }
1423
1424         trunc_start = ocfs2_clusters_for_bytes(osb->sb, byte_start);
1425         trunc_len = (byte_start + byte_len) >> osb->s_clustersize_bits;
1426         if (trunc_len >= trunc_start)
1427                 trunc_len -= trunc_start;
1428         else
1429                 trunc_len = 0;
1430
1431         mlog(0, "Inode: %llu, start: %llu, len: %llu, cstart: %u, clen: %u\n",
1432              (unsigned long long)OCFS2_I(inode)->ip_blkno,
1433              (unsigned long long)byte_start,
1434              (unsigned long long)byte_len, trunc_start, trunc_len);
1435
1436         ret = ocfs2_zero_partial_clusters(inode, byte_start, byte_len);
1437         if (ret) {
1438                 mlog_errno(ret);
1439                 goto out;
1440         }
1441
1442         cpos = trunc_start;
1443         while (trunc_len) {
1444                 ret = ocfs2_get_clusters(inode, cpos, &phys_cpos,
1445                                          &alloc_size, NULL);
1446                 if (ret) {
1447                         mlog_errno(ret);
1448                         goto out;
1449                 }
1450
1451                 if (alloc_size > trunc_len)
1452                         alloc_size = trunc_len;
1453
1454                 /* Only do work for non-holes */
1455                 if (phys_cpos != 0) {
1456                         ret = __ocfs2_remove_inode_range(inode, di_bh, cpos,
1457                                                          phys_cpos, alloc_size,
1458                                                          &dealloc);
1459                         if (ret) {
1460                                 mlog_errno(ret);
1461                                 goto out;
1462                         }
1463                 }
1464
1465                 cpos += alloc_size;
1466                 trunc_len -= alloc_size;
1467         }
1468
1469         ocfs2_truncate_cluster_pages(inode, byte_start, byte_len);
1470
1471 out:
1472         ocfs2_schedule_truncate_log_flush(osb, 1);
1473         ocfs2_run_deallocs(osb, &dealloc);
1474
1475         return ret;
1476 }
1477
1478 /*
1479  * Parts of this function taken from xfs_change_file_space()
1480  */
1481 static int __ocfs2_change_file_space(struct file *file, struct inode *inode,
1482                                      loff_t f_pos, unsigned int cmd,
1483                                      struct ocfs2_space_resv *sr,
1484                                      int change_size)
1485 {
1486         int ret;
1487         s64 llen;
1488         loff_t size;
1489         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1490         struct buffer_head *di_bh = NULL;
1491         handle_t *handle;
1492         unsigned long long max_off = inode->i_sb->s_maxbytes;
1493
1494         if (ocfs2_is_hard_readonly(osb) || ocfs2_is_soft_readonly(osb))
1495                 return -EROFS;
1496
1497         mutex_lock(&inode->i_mutex);
1498
1499         /*
1500          * This prevents concurrent writes on other nodes
1501          */
1502         ret = ocfs2_rw_lock(inode, 1);
1503         if (ret) {
1504                 mlog_errno(ret);
1505                 goto out;
1506         }
1507
1508         ret = ocfs2_inode_lock(inode, &di_bh, 1);
1509         if (ret) {
1510                 mlog_errno(ret);
1511                 goto out_rw_unlock;
1512         }
1513
1514         if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) {
1515                 ret = -EPERM;
1516                 goto out_inode_unlock;
1517         }
1518
1519         switch (sr->l_whence) {
1520         case 0: /*SEEK_SET*/
1521                 break;
1522         case 1: /*SEEK_CUR*/
1523                 sr->l_start += f_pos;
1524                 break;
1525         case 2: /*SEEK_END*/
1526                 sr->l_start += i_size_read(inode);
1527                 break;
1528         default:
1529                 ret = -EINVAL;
1530                 goto out_inode_unlock;
1531         }
1532         sr->l_whence = 0;
1533
1534         llen = sr->l_len > 0 ? sr->l_len - 1 : sr->l_len;
1535
1536         if (sr->l_start < 0
1537             || sr->l_start > max_off
1538             || (sr->l_start + llen) < 0
1539             || (sr->l_start + llen) > max_off) {
1540                 ret = -EINVAL;
1541                 goto out_inode_unlock;
1542         }
1543         size = sr->l_start + sr->l_len;
1544
1545         if (cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) {
1546                 if (sr->l_len <= 0) {
1547                         ret = -EINVAL;
1548                         goto out_inode_unlock;
1549                 }
1550         }
1551
1552         if (file && should_remove_suid(file->f_path.dentry)) {
1553                 ret = __ocfs2_write_remove_suid(inode, di_bh);
1554                 if (ret) {
1555                         mlog_errno(ret);
1556                         goto out_inode_unlock;
1557                 }
1558         }
1559
1560         down_write(&OCFS2_I(inode)->ip_alloc_sem);
1561         switch (cmd) {
1562         case OCFS2_IOC_RESVSP:
1563         case OCFS2_IOC_RESVSP64:
1564                 /*
1565                  * This takes unsigned offsets, but the signed ones we
1566                  * pass have been checked against overflow above.
1567                  */
1568                 ret = ocfs2_allocate_unwritten_extents(inode, sr->l_start,
1569                                                        sr->l_len);
1570                 break;
1571         case OCFS2_IOC_UNRESVSP:
1572         case OCFS2_IOC_UNRESVSP64:
1573                 ret = ocfs2_remove_inode_range(inode, di_bh, sr->l_start,
1574                                                sr->l_len);
1575                 break;
1576         default:
1577                 ret = -EINVAL;
1578         }
1579         up_write(&OCFS2_I(inode)->ip_alloc_sem);
1580         if (ret) {
1581                 mlog_errno(ret);
1582                 goto out_inode_unlock;
1583         }
1584
1585         /*
1586          * We update c/mtime for these changes
1587          */
1588         handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1589         if (IS_ERR(handle)) {
1590                 ret = PTR_ERR(handle);
1591                 mlog_errno(ret);
1592                 goto out_inode_unlock;
1593         }
1594
1595         if (change_size && i_size_read(inode) < size)
1596                 i_size_write(inode, size);
1597
1598         inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1599         ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
1600         if (ret < 0)
1601                 mlog_errno(ret);
1602
1603         ocfs2_commit_trans(osb, handle);
1604
1605 out_inode_unlock:
1606         brelse(di_bh);
1607         ocfs2_inode_unlock(inode, 1);
1608 out_rw_unlock:
1609         ocfs2_rw_unlock(inode, 1);
1610
1611 out:
1612         mutex_unlock(&inode->i_mutex);
1613         return ret;
1614 }
1615
1616 int ocfs2_change_file_space(struct file *file, unsigned int cmd,
1617                             struct ocfs2_space_resv *sr)
1618 {
1619         struct inode *inode = file->f_path.dentry->d_inode;
1620         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);;
1621
1622         if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) &&
1623             !ocfs2_writes_unwritten_extents(osb))
1624                 return -ENOTTY;
1625         else if ((cmd == OCFS2_IOC_UNRESVSP || cmd == OCFS2_IOC_UNRESVSP64) &&
1626                  !ocfs2_sparse_alloc(osb))
1627                 return -ENOTTY;
1628
1629         if (!S_ISREG(inode->i_mode))
1630                 return -EINVAL;
1631
1632         if (!(file->f_mode & FMODE_WRITE))
1633                 return -EBADF;
1634
1635         return __ocfs2_change_file_space(file, inode, file->f_pos, cmd, sr, 0);
1636 }
1637
1638 static long ocfs2_fallocate(struct inode *inode, int mode, loff_t offset,
1639                             loff_t len)
1640 {
1641         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1642         struct ocfs2_space_resv sr;
1643         int change_size = 1;
1644
1645         if (!ocfs2_writes_unwritten_extents(osb))
1646                 return -EOPNOTSUPP;
1647
1648         if (S_ISDIR(inode->i_mode))
1649                 return -ENODEV;
1650
1651         if (mode & FALLOC_FL_KEEP_SIZE)
1652                 change_size = 0;
1653
1654         sr.l_whence = 0;
1655         sr.l_start = (s64)offset;
1656         sr.l_len = (s64)len;
1657
1658         return __ocfs2_change_file_space(NULL, inode, offset,
1659                                          OCFS2_IOC_RESVSP64, &sr, change_size);
1660 }
1661
1662 static int ocfs2_prepare_inode_for_write(struct dentry *dentry,
1663                                          loff_t *ppos,
1664                                          size_t count,
1665                                          int appending,
1666                                          int *direct_io)
1667 {
1668         int ret = 0, meta_level = 0;
1669         struct inode *inode = dentry->d_inode;
1670         loff_t saved_pos, end;
1671
1672         /* 
1673          * We start with a read level meta lock and only jump to an ex
1674          * if we need to make modifications here.
1675          */
1676         for(;;) {
1677                 ret = ocfs2_inode_lock(inode, NULL, meta_level);
1678                 if (ret < 0) {
1679                         meta_level = -1;
1680                         mlog_errno(ret);
1681                         goto out;
1682                 }
1683
1684                 /* Clear suid / sgid if necessary. We do this here
1685                  * instead of later in the write path because
1686                  * remove_suid() calls ->setattr without any hint that
1687                  * we may have already done our cluster locking. Since
1688                  * ocfs2_setattr() *must* take cluster locks to
1689                  * proceeed, this will lead us to recursively lock the
1690                  * inode. There's also the dinode i_size state which
1691                  * can be lost via setattr during extending writes (we
1692                  * set inode->i_size at the end of a write. */
1693                 if (should_remove_suid(dentry)) {
1694                         if (meta_level == 0) {
1695                                 ocfs2_inode_unlock(inode, meta_level);
1696                                 meta_level = 1;
1697                                 continue;
1698                         }
1699
1700                         ret = ocfs2_write_remove_suid(inode);
1701                         if (ret < 0) {
1702                                 mlog_errno(ret);
1703                                 goto out_unlock;
1704                         }
1705                 }
1706
1707                 /* work on a copy of ppos until we're sure that we won't have
1708                  * to recalculate it due to relocking. */
1709                 if (appending) {
1710                         saved_pos = i_size_read(inode);
1711                         mlog(0, "O_APPEND: inode->i_size=%llu\n", saved_pos);
1712                 } else {
1713                         saved_pos = *ppos;
1714                 }
1715
1716                 end = saved_pos + count;
1717
1718                 /*
1719                  * Skip the O_DIRECT checks if we don't need
1720                  * them.
1721                  */
1722                 if (!direct_io || !(*direct_io))
1723                         break;
1724
1725                 /*
1726                  * There's no sane way to do direct writes to an inode
1727                  * with inline data.
1728                  */
1729                 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1730                         *direct_io = 0;
1731                         break;
1732                 }
1733
1734                 /*
1735                  * Allowing concurrent direct writes means
1736                  * i_size changes wouldn't be synchronized, so
1737                  * one node could wind up truncating another
1738                  * nodes writes.
1739                  */
1740                 if (end > i_size_read(inode)) {
1741                         *direct_io = 0;
1742                         break;
1743                 }
1744
1745                 /*
1746                  * We don't fill holes during direct io, so
1747                  * check for them here. If any are found, the
1748                  * caller will have to retake some cluster
1749                  * locks and initiate the io as buffered.
1750                  */
1751                 ret = ocfs2_check_range_for_holes(inode, saved_pos, count);
1752                 if (ret == 1) {
1753                         *direct_io = 0;
1754                         ret = 0;
1755                 } else if (ret < 0)
1756                         mlog_errno(ret);
1757                 break;
1758         }
1759
1760         if (appending)
1761                 *ppos = saved_pos;
1762
1763 out_unlock:
1764         ocfs2_inode_unlock(inode, meta_level);
1765
1766 out:
1767         return ret;
1768 }
1769
1770 static ssize_t ocfs2_file_aio_write(struct kiocb *iocb,
1771                                     const struct iovec *iov,
1772                                     unsigned long nr_segs,
1773                                     loff_t pos)
1774 {
1775         int ret, direct_io, appending, rw_level, have_alloc_sem  = 0;
1776         int can_do_direct;
1777         ssize_t written = 0;
1778         size_t ocount;          /* original count */
1779         size_t count;           /* after file limit checks */
1780         loff_t old_size, *ppos = &iocb->ki_pos;
1781         u32 old_clusters;
1782         struct file *file = iocb->ki_filp;
1783         struct inode *inode = file->f_path.dentry->d_inode;
1784         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1785
1786         mlog_entry("(0x%p, %u, '%.*s')\n", file,
1787                    (unsigned int)nr_segs,
1788                    file->f_path.dentry->d_name.len,
1789                    file->f_path.dentry->d_name.name);
1790
1791         if (iocb->ki_left == 0)
1792                 return 0;
1793
1794         vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1795
1796         appending = file->f_flags & O_APPEND ? 1 : 0;
1797         direct_io = file->f_flags & O_DIRECT ? 1 : 0;
1798
1799         mutex_lock(&inode->i_mutex);
1800
1801 relock:
1802         /* to match setattr's i_mutex -> i_alloc_sem -> rw_lock ordering */
1803         if (direct_io) {
1804                 down_read(&inode->i_alloc_sem);
1805                 have_alloc_sem = 1;
1806         }
1807
1808         /* concurrent O_DIRECT writes are allowed */
1809         rw_level = !direct_io;
1810         ret = ocfs2_rw_lock(inode, rw_level);
1811         if (ret < 0) {
1812                 mlog_errno(ret);
1813                 goto out_sems;
1814         }
1815
1816         can_do_direct = direct_io;
1817         ret = ocfs2_prepare_inode_for_write(file->f_path.dentry, ppos,
1818                                             iocb->ki_left, appending,
1819                                             &can_do_direct);
1820         if (ret < 0) {
1821                 mlog_errno(ret);
1822                 goto out;
1823         }
1824
1825         /*
1826          * We can't complete the direct I/O as requested, fall back to
1827          * buffered I/O.
1828          */
1829         if (direct_io && !can_do_direct) {
1830                 ocfs2_rw_unlock(inode, rw_level);
1831                 up_read(&inode->i_alloc_sem);
1832
1833                 have_alloc_sem = 0;
1834                 rw_level = -1;
1835
1836                 direct_io = 0;
1837                 goto relock;
1838         }
1839
1840         /*
1841          * To later detect whether a journal commit for sync writes is
1842          * necessary, we sample i_size, and cluster count here.
1843          */
1844         old_size = i_size_read(inode);
1845         old_clusters = OCFS2_I(inode)->ip_clusters;
1846
1847         /* communicate with ocfs2_dio_end_io */
1848         ocfs2_iocb_set_rw_locked(iocb, rw_level);
1849
1850         if (direct_io) {
1851                 ret = generic_segment_checks(iov, &nr_segs, &ocount,
1852                                              VERIFY_READ);
1853                 if (ret)
1854                         goto out_dio;
1855
1856                 ret = generic_write_checks(file, ppos, &count,
1857                                            S_ISBLK(inode->i_mode));
1858                 if (ret)
1859                         goto out_dio;
1860
1861                 written = generic_file_direct_write(iocb, iov, &nr_segs, *ppos,
1862                                                     ppos, count, ocount);
1863                 if (written < 0) {
1864                         ret = written;
1865                         goto out_dio;
1866                 }
1867         } else {
1868                 written = generic_file_aio_write_nolock(iocb, iov, nr_segs,
1869                                                         *ppos);
1870         }
1871
1872 out_dio:
1873         /* buffered aio wouldn't have proper lock coverage today */
1874         BUG_ON(ret == -EIOCBQUEUED && !(file->f_flags & O_DIRECT));
1875
1876         if ((file->f_flags & O_SYNC && !direct_io) || IS_SYNC(inode)) {
1877                 /*
1878                  * The generic write paths have handled getting data
1879                  * to disk, but since we don't make use of the dirty
1880                  * inode list, a manual journal commit is necessary
1881                  * here.
1882                  */
1883                 if (old_size != i_size_read(inode) ||
1884                     old_clusters != OCFS2_I(inode)->ip_clusters) {
1885                         ret = journal_force_commit(osb->journal->j_journal);
1886                         if (ret < 0)
1887                                 written = ret;
1888                 }
1889         }
1890
1891         /* 
1892          * deep in g_f_a_w_n()->ocfs2_direct_IO we pass in a ocfs2_dio_end_io
1893          * function pointer which is called when o_direct io completes so that
1894          * it can unlock our rw lock.  (it's the clustered equivalent of
1895          * i_alloc_sem; protects truncate from racing with pending ios).
1896          * Unfortunately there are error cases which call end_io and others
1897          * that don't.  so we don't have to unlock the rw_lock if either an
1898          * async dio is going to do it in the future or an end_io after an
1899          * error has already done it.
1900          */
1901         if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
1902                 rw_level = -1;
1903                 have_alloc_sem = 0;
1904         }
1905
1906 out:
1907         if (rw_level != -1)
1908                 ocfs2_rw_unlock(inode, rw_level);
1909
1910 out_sems:
1911         if (have_alloc_sem)
1912                 up_read(&inode->i_alloc_sem);
1913
1914         mutex_unlock(&inode->i_mutex);
1915
1916         mlog_exit(ret);
1917         return written ? written : ret;
1918 }
1919
1920 static ssize_t ocfs2_file_splice_write(struct pipe_inode_info *pipe,
1921                                        struct file *out,
1922                                        loff_t *ppos,
1923                                        size_t len,
1924                                        unsigned int flags)
1925 {
1926         int ret;
1927         struct inode *inode = out->f_path.dentry->d_inode;
1928
1929         mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", out, pipe,
1930                    (unsigned int)len,
1931                    out->f_path.dentry->d_name.len,
1932                    out->f_path.dentry->d_name.name);
1933
1934         inode_double_lock(inode, pipe->inode);
1935
1936         ret = ocfs2_rw_lock(inode, 1);
1937         if (ret < 0) {
1938                 mlog_errno(ret);
1939                 goto out;
1940         }
1941
1942         ret = ocfs2_prepare_inode_for_write(out->f_path.dentry, ppos, len, 0,
1943                                             NULL);
1944         if (ret < 0) {
1945                 mlog_errno(ret);
1946                 goto out_unlock;
1947         }
1948
1949         ret = generic_file_splice_write_nolock(pipe, out, ppos, len, flags);
1950
1951 out_unlock:
1952         ocfs2_rw_unlock(inode, 1);
1953 out:
1954         inode_double_unlock(inode, pipe->inode);
1955
1956         mlog_exit(ret);
1957         return ret;
1958 }
1959
1960 static ssize_t ocfs2_file_splice_read(struct file *in,
1961                                       loff_t *ppos,
1962                                       struct pipe_inode_info *pipe,
1963                                       size_t len,
1964                                       unsigned int flags)
1965 {
1966         int ret = 0;
1967         struct inode *inode = in->f_path.dentry->d_inode;
1968
1969         mlog_entry("(0x%p, 0x%p, %u, '%.*s')\n", in, pipe,
1970                    (unsigned int)len,
1971                    in->f_path.dentry->d_name.len,
1972                    in->f_path.dentry->d_name.name);
1973
1974         /*
1975          * See the comment in ocfs2_file_aio_read()
1976          */
1977         ret = ocfs2_inode_lock(inode, NULL, 0);
1978         if (ret < 0) {
1979                 mlog_errno(ret);
1980                 goto bail;
1981         }
1982         ocfs2_inode_unlock(inode, 0);
1983
1984         ret = generic_file_splice_read(in, ppos, pipe, len, flags);
1985
1986 bail:
1987         mlog_exit(ret);
1988         return ret;
1989 }
1990
1991 static ssize_t ocfs2_file_aio_read(struct kiocb *iocb,
1992                                    const struct iovec *iov,
1993                                    unsigned long nr_segs,
1994                                    loff_t pos)
1995 {
1996         int ret = 0, rw_level = -1, have_alloc_sem = 0, lock_level = 0;
1997         struct file *filp = iocb->ki_filp;
1998         struct inode *inode = filp->f_path.dentry->d_inode;
1999
2000         mlog_entry("(0x%p, %u, '%.*s')\n", filp,
2001                    (unsigned int)nr_segs,
2002                    filp->f_path.dentry->d_name.len,
2003                    filp->f_path.dentry->d_name.name);
2004
2005         if (!inode) {
2006                 ret = -EINVAL;
2007                 mlog_errno(ret);
2008                 goto bail;
2009         }
2010
2011         /* 
2012          * buffered reads protect themselves in ->readpage().  O_DIRECT reads
2013          * need locks to protect pending reads from racing with truncate.
2014          */
2015         if (filp->f_flags & O_DIRECT) {
2016                 down_read(&inode->i_alloc_sem);
2017                 have_alloc_sem = 1;
2018
2019                 ret = ocfs2_rw_lock(inode, 0);
2020                 if (ret < 0) {
2021                         mlog_errno(ret);
2022                         goto bail;
2023                 }
2024                 rw_level = 0;
2025                 /* communicate with ocfs2_dio_end_io */
2026                 ocfs2_iocb_set_rw_locked(iocb, rw_level);
2027         }
2028
2029         /*
2030          * We're fine letting folks race truncates and extending
2031          * writes with read across the cluster, just like they can
2032          * locally. Hence no rw_lock during read.
2033          * 
2034          * Take and drop the meta data lock to update inode fields
2035          * like i_size. This allows the checks down below
2036          * generic_file_aio_read() a chance of actually working. 
2037          */
2038         ret = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level);
2039         if (ret < 0) {
2040                 mlog_errno(ret);
2041                 goto bail;
2042         }
2043         ocfs2_inode_unlock(inode, lock_level);
2044
2045         ret = generic_file_aio_read(iocb, iov, nr_segs, iocb->ki_pos);
2046         if (ret == -EINVAL)
2047                 mlog(0, "generic_file_aio_read returned -EINVAL\n");
2048
2049         /* buffered aio wouldn't have proper lock coverage today */
2050         BUG_ON(ret == -EIOCBQUEUED && !(filp->f_flags & O_DIRECT));
2051
2052         /* see ocfs2_file_aio_write */
2053         if (ret == -EIOCBQUEUED || !ocfs2_iocb_is_rw_locked(iocb)) {
2054                 rw_level = -1;
2055                 have_alloc_sem = 0;
2056         }
2057
2058 bail:
2059         if (have_alloc_sem)
2060                 up_read(&inode->i_alloc_sem);
2061         if (rw_level != -1) 
2062                 ocfs2_rw_unlock(inode, rw_level);
2063         mlog_exit(ret);
2064
2065         return ret;
2066 }
2067
2068 const struct inode_operations ocfs2_file_iops = {
2069         .setattr        = ocfs2_setattr,
2070         .getattr        = ocfs2_getattr,
2071         .permission     = ocfs2_permission,
2072         .fallocate      = ocfs2_fallocate,
2073         .fiemap         = ocfs2_fiemap,
2074 };
2075
2076 const struct inode_operations ocfs2_special_file_iops = {
2077         .setattr        = ocfs2_setattr,
2078         .getattr        = ocfs2_getattr,
2079         .permission     = ocfs2_permission,
2080 };
2081
2082 /*
2083  * Other than ->lock, keep ocfs2_fops and ocfs2_dops in sync with
2084  * ocfs2_fops_no_plocks and ocfs2_dops_no_plocks!
2085  */
2086 const struct file_operations ocfs2_fops = {
2087         .llseek         = generic_file_llseek,
2088         .read           = do_sync_read,
2089         .write          = do_sync_write,
2090         .mmap           = ocfs2_mmap,
2091         .fsync          = ocfs2_sync_file,
2092         .release        = ocfs2_file_release,
2093         .open           = ocfs2_file_open,
2094         .aio_read       = ocfs2_file_aio_read,
2095         .aio_write      = ocfs2_file_aio_write,
2096         .unlocked_ioctl = ocfs2_ioctl,
2097 #ifdef CONFIG_COMPAT
2098         .compat_ioctl   = ocfs2_compat_ioctl,
2099 #endif
2100         .lock           = ocfs2_lock,
2101         .flock          = ocfs2_flock,
2102         .splice_read    = ocfs2_file_splice_read,
2103         .splice_write   = ocfs2_file_splice_write,
2104 };
2105
2106 const struct file_operations ocfs2_dops = {
2107         .llseek         = generic_file_llseek,
2108         .read           = generic_read_dir,
2109         .readdir        = ocfs2_readdir,
2110         .fsync          = ocfs2_sync_file,
2111         .release        = ocfs2_dir_release,
2112         .open           = ocfs2_dir_open,
2113         .unlocked_ioctl = ocfs2_ioctl,
2114 #ifdef CONFIG_COMPAT
2115         .compat_ioctl   = ocfs2_compat_ioctl,
2116 #endif
2117         .lock           = ocfs2_lock,
2118         .flock          = ocfs2_flock,
2119 };
2120
2121 /*
2122  * POSIX-lockless variants of our file_operations.
2123  *
2124  * These will be used if the underlying cluster stack does not support
2125  * posix file locking, if the user passes the "localflocks" mount
2126  * option, or if we have a local-only fs.
2127  *
2128  * ocfs2_flock is in here because all stacks handle UNIX file locks,
2129  * so we still want it in the case of no stack support for
2130  * plocks. Internally, it will do the right thing when asked to ignore
2131  * the cluster.
2132  */
2133 const struct file_operations ocfs2_fops_no_plocks = {
2134         .llseek         = generic_file_llseek,
2135         .read           = do_sync_read,
2136         .write          = do_sync_write,
2137         .mmap           = ocfs2_mmap,
2138         .fsync          = ocfs2_sync_file,
2139         .release        = ocfs2_file_release,
2140         .open           = ocfs2_file_open,
2141         .aio_read       = ocfs2_file_aio_read,
2142         .aio_write      = ocfs2_file_aio_write,
2143         .unlocked_ioctl = ocfs2_ioctl,
2144 #ifdef CONFIG_COMPAT
2145         .compat_ioctl   = ocfs2_compat_ioctl,
2146 #endif
2147         .flock          = ocfs2_flock,
2148         .splice_read    = ocfs2_file_splice_read,
2149         .splice_write   = ocfs2_file_splice_write,
2150 };
2151
2152 const struct file_operations ocfs2_dops_no_plocks = {
2153         .llseek         = generic_file_llseek,
2154         .read           = generic_read_dir,
2155         .readdir        = ocfs2_readdir,
2156         .fsync          = ocfs2_sync_file,
2157         .release        = ocfs2_dir_release,
2158         .open           = ocfs2_dir_open,
2159         .unlocked_ioctl = ocfs2_ioctl,
2160 #ifdef CONFIG_COMPAT
2161         .compat_ioctl   = ocfs2_compat_ioctl,
2162 #endif
2163         .flock          = ocfs2_flock,
2164 };