blob: aa0dbd2aac1bd31bdd3cb4ebf8265fe9b874d47d [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
14#include <linux/mm.h>
15#include <linux/pagemap.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050016#include <linux/gfs2_ondisk.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020017#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000018
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "bmap.h"
22#include "glock.h"
23#include "inode.h"
24#include "ops_vm.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "quota.h"
26#include "rgrp.h"
27#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050028#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029
David Teiglandb3b94fa2006-01-16 16:50:04 +000030static struct page *gfs2_private_nopage(struct vm_area_struct *area,
31 unsigned long address, int *type)
32{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040033 struct gfs2_inode *ip = GFS2_I(area->vm_file->f_mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +000034
35 set_bit(GIF_PAGED, &ip->i_flags);
Steven Whitehousee5dab552007-01-18 17:44:20 +000036 return filemap_nopage(area, address, type);
David Teiglandb3b94fa2006-01-16 16:50:04 +000037}
38
39static int alloc_page_backing(struct gfs2_inode *ip, struct page *page)
40{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040041 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000042 unsigned long index = page->index;
Steven Whitehousecd915492006-09-04 12:49:07 -040043 u64 lblock = index << (PAGE_CACHE_SHIFT -
Steven Whitehouse568f4c92006-02-27 12:00:42 -050044 sdp->sd_sb.sb_bsize_shift);
David Teiglandb3b94fa2006-01-16 16:50:04 +000045 unsigned int blocks = PAGE_CACHE_SIZE >> sdp->sd_sb.sb_bsize_shift;
46 struct gfs2_alloc *al;
47 unsigned int data_blocks, ind_blocks;
48 unsigned int x;
49 int error;
50
51 al = gfs2_alloc_get(ip);
52
53 error = gfs2_quota_lock(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
54 if (error)
55 goto out;
56
Steven Whitehouse2933f922006-11-01 13:23:29 -050057 error = gfs2_quota_check(ip, ip->i_inode.i_uid, ip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +000058 if (error)
59 goto out_gunlock_q;
60
Steven Whitehousefd88de562006-05-05 16:59:11 -040061 gfs2_write_calc_reserv(ip, PAGE_CACHE_SIZE, &data_blocks, &ind_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +000062
63 al->al_requested = data_blocks + ind_blocks;
64
65 error = gfs2_inplace_reserve(ip);
66 if (error)
67 goto out_gunlock_q;
68
Steven Whitehousefd88de562006-05-05 16:59:11 -040069 error = gfs2_trans_begin(sdp, al->al_rgd->rd_ri.ri_length +
David Teiglandb3b94fa2006-01-16 16:50:04 +000070 ind_blocks + RES_DINODE +
71 RES_STATFS + RES_QUOTA, 0);
72 if (error)
73 goto out_ipres;
74
75 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040076 error = gfs2_unstuff_dinode(ip, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +000077 if (error)
78 goto out_trans;
79 }
80
81 for (x = 0; x < blocks; ) {
Steven Whitehousecd915492006-09-04 12:49:07 -040082 u64 dblock;
David Teiglandb3b94fa2006-01-16 16:50:04 +000083 unsigned int extlen;
84 int new = 1;
85
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040086 error = gfs2_extent_map(&ip->i_inode, lblock, &new, &dblock, &extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +000087 if (error)
88 goto out_trans;
89
90 lblock += extlen;
91 x += extlen;
92 }
93
94 gfs2_assert_warn(sdp, al->al_alloced);
95
Steven Whitehousea91ea692006-09-04 12:04:26 -040096out_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +000097 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -040098out_ipres:
David Teiglandb3b94fa2006-01-16 16:50:04 +000099 gfs2_inplace_release(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400100out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101 gfs2_quota_unlock(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400102out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000103 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104 return error;
105}
106
107static struct page *gfs2_sharewrite_nopage(struct vm_area_struct *area,
108 unsigned long address, int *type)
109{
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400110 struct file *file = area->vm_file;
111 struct gfs2_file *gf = file->private_data;
112 struct gfs2_inode *ip = GFS2_I(file->f_mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113 struct gfs2_holder i_gh;
114 struct page *result = NULL;
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500115 unsigned long index = ((address - area->vm_start) >> PAGE_CACHE_SHIFT) +
116 area->vm_pgoff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117 int alloc_required;
118 int error;
119
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
121 if (error)
122 return NULL;
123
David Teiglandb3b94fa2006-01-16 16:50:04 +0000124 set_bit(GIF_PAGED, &ip->i_flags);
125 set_bit(GIF_SW_PAGED, &ip->i_flags);
126
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400127 error = gfs2_write_alloc_required(ip, (u64)index << PAGE_CACHE_SHIFT,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000128 PAGE_CACHE_SIZE, &alloc_required);
129 if (error)
130 goto out;
131
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400132 set_bit(GFF_EXLOCK, &gf->f_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000133 result = filemap_nopage(area, address, type);
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400134 clear_bit(GFF_EXLOCK, &gf->f_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000135 if (!result || result == NOPAGE_OOM)
136 goto out;
137
138 if (alloc_required) {
139 error = alloc_page_backing(ip, result);
140 if (error) {
141 page_cache_release(result);
142 result = NULL;
143 goto out;
144 }
145 set_page_dirty(result);
146 }
147
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400148out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000149 gfs2_glock_dq_uninit(&i_gh);
150
151 return result;
152}
153
154struct vm_operations_struct gfs2_vm_ops_private = {
155 .nopage = gfs2_private_nopage,
156};
157
158struct vm_operations_struct gfs2_vm_ops_sharewrite = {
159 .nopage = gfs2_sharewrite_nopage,
160};
161