blob: 5453d2947ab3a40d7743925834349575f733536a [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
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/mm.h>
16#include <linux/pagemap.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include <linux/gfs2_ondisk.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020018#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000019
20#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050021#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "bmap.h"
23#include "glock.h"
24#include "inode.h"
25#include "ops_vm.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000026#include "quota.h"
27#include "rgrp.h"
28#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050029#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000030
31static void pfault_be_greedy(struct gfs2_inode *ip)
32{
33 unsigned int time;
34
35 spin_lock(&ip->i_spin);
36 time = ip->i_greedy;
37 ip->i_last_pfault = jiffies;
38 spin_unlock(&ip->i_spin);
39
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040040 igrab(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000041 if (gfs2_glock_be_greedy(ip->i_gl, time))
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040042 iput(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000043}
44
45static struct page *gfs2_private_nopage(struct vm_area_struct *area,
46 unsigned long address, int *type)
47{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040048 struct gfs2_inode *ip = GFS2_I(area->vm_file->f_mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +000049 struct page *result;
David Teiglandb3b94fa2006-01-16 16:50:04 +000050
51 set_bit(GIF_PAGED, &ip->i_flags);
52
53 result = filemap_nopage(area, address, type);
54
55 if (result && result != NOPAGE_OOM)
56 pfault_be_greedy(ip);
57
David Teiglandb3b94fa2006-01-16 16:50:04 +000058 return result;
59}
60
61static int alloc_page_backing(struct gfs2_inode *ip, struct page *page)
62{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040063 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000064 unsigned long index = page->index;
Steven Whitehousecd915492006-09-04 12:49:07 -040065 u64 lblock = index << (PAGE_CACHE_SHIFT -
Steven Whitehouse568f4c92006-02-27 12:00:42 -050066 sdp->sd_sb.sb_bsize_shift);
David Teiglandb3b94fa2006-01-16 16:50:04 +000067 unsigned int blocks = PAGE_CACHE_SIZE >> sdp->sd_sb.sb_bsize_shift;
68 struct gfs2_alloc *al;
69 unsigned int data_blocks, ind_blocks;
70 unsigned int x;
71 int error;
72
73 al = gfs2_alloc_get(ip);
74
75 error = gfs2_quota_lock(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
76 if (error)
77 goto out;
78
79 error = gfs2_quota_check(ip, ip->i_di.di_uid, ip->i_di.di_gid);
80 if (error)
81 goto out_gunlock_q;
82
Steven Whitehousefd88de562006-05-05 16:59:11 -040083 gfs2_write_calc_reserv(ip, PAGE_CACHE_SIZE, &data_blocks, &ind_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +000084
85 al->al_requested = data_blocks + ind_blocks;
86
87 error = gfs2_inplace_reserve(ip);
88 if (error)
89 goto out_gunlock_q;
90
Steven Whitehousefd88de562006-05-05 16:59:11 -040091 error = gfs2_trans_begin(sdp, al->al_rgd->rd_ri.ri_length +
David Teiglandb3b94fa2006-01-16 16:50:04 +000092 ind_blocks + RES_DINODE +
93 RES_STATFS + RES_QUOTA, 0);
94 if (error)
95 goto out_ipres;
96
97 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040098 error = gfs2_unstuff_dinode(ip, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +000099 if (error)
100 goto out_trans;
101 }
102
103 for (x = 0; x < blocks; ) {
Steven Whitehousecd915492006-09-04 12:49:07 -0400104 u64 dblock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105 unsigned int extlen;
106 int new = 1;
107
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400108 error = gfs2_extent_map(&ip->i_inode, lblock, &new, &dblock, &extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109 if (error)
110 goto out_trans;
111
112 lblock += extlen;
113 x += extlen;
114 }
115
116 gfs2_assert_warn(sdp, al->al_alloced);
117
Steven Whitehousea91ea692006-09-04 12:04:26 -0400118out_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400120out_ipres:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000121 gfs2_inplace_release(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400122out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000123 gfs2_quota_unlock(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400124out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000126 return error;
127}
128
129static struct page *gfs2_sharewrite_nopage(struct vm_area_struct *area,
130 unsigned long address, int *type)
131{
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400132 struct file *file = area->vm_file;
133 struct gfs2_file *gf = file->private_data;
134 struct gfs2_inode *ip = GFS2_I(file->f_mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000135 struct gfs2_holder i_gh;
136 struct page *result = NULL;
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500137 unsigned long index = ((address - area->vm_start) >> PAGE_CACHE_SHIFT) +
138 area->vm_pgoff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139 int alloc_required;
140 int error;
141
David Teiglandb3b94fa2006-01-16 16:50:04 +0000142 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
143 if (error)
144 return NULL;
145
David Teiglandb3b94fa2006-01-16 16:50:04 +0000146 set_bit(GIF_PAGED, &ip->i_flags);
147 set_bit(GIF_SW_PAGED, &ip->i_flags);
148
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400149 error = gfs2_write_alloc_required(ip, (u64)index << PAGE_CACHE_SHIFT,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150 PAGE_CACHE_SIZE, &alloc_required);
151 if (error)
152 goto out;
153
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400154 set_bit(GFF_EXLOCK, &gf->f_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155 result = filemap_nopage(area, address, type);
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400156 clear_bit(GFF_EXLOCK, &gf->f_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157 if (!result || result == NOPAGE_OOM)
158 goto out;
159
160 if (alloc_required) {
161 error = alloc_page_backing(ip, result);
162 if (error) {
163 page_cache_release(result);
164 result = NULL;
165 goto out;
166 }
167 set_page_dirty(result);
168 }
169
170 pfault_be_greedy(ip);
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400171out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000172 gfs2_glock_dq_uninit(&i_gh);
173
174 return result;
175}
176
177struct vm_operations_struct gfs2_vm_ops_private = {
178 .nopage = gfs2_private_nopage,
179};
180
181struct vm_operations_struct gfs2_vm_ops_sharewrite = {
182 .nopage = gfs2_sharewrite_nopage,
183};
184