blob: 5e9653c4d8867ab2994d54044db6120b2da469d3 [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/pagemap.h>
Steven Whitehousefd88de562006-05-05 16:59:11 -040016#include <linux/pagevec.h>
Steven Whitehouse9b124fb2006-01-30 11:55:32 +000017#include <linux/mpage.h>
Steven Whitehoused1665e42006-02-14 11:54:42 +000018#include <linux/fs.h>
Steven Whitehousea8d638e2007-01-15 13:52:17 +000019#include <linux/writeback.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include <linux/gfs2_ondisk.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020021#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000022
23#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050024#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "bmap.h"
26#include "glock.h"
27#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000028#include "log.h"
29#include "meta_io.h"
30#include "ops_address.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000031#include "quota.h"
32#include "trans.h"
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000033#include "rgrp.h"
Steven Whitehouse61a30dc2006-02-15 10:15:18 +000034#include "ops_file.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050035#include "util.h"
Steven Whitehouse4340fe62006-07-11 09:46:33 -040036#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000037
Steven Whitehouseba7f7292006-07-26 11:27:10 -040038
39static void gfs2_page_add_databufs(struct gfs2_inode *ip, struct page *page,
40 unsigned int from, unsigned int to)
41{
42 struct buffer_head *head = page_buffers(page);
43 unsigned int bsize = head->b_size;
44 struct buffer_head *bh;
45 unsigned int start, end;
46
47 for (bh = head, start = 0; bh != head || !start;
48 bh = bh->b_this_page, start = end) {
49 end = start + bsize;
50 if (end <= from || start >= to)
51 continue;
52 gfs2_trans_add_bh(ip->i_gl, bh, 0);
53 }
54}
55
David Teiglandb3b94fa2006-01-16 16:50:04 +000056/**
Steven Whitehouse4ff14672006-01-30 09:39:10 +000057 * gfs2_get_block - Fills in a buffer head with details about a block
David Teiglandb3b94fa2006-01-16 16:50:04 +000058 * @inode: The inode
59 * @lblock: The block number to look up
60 * @bh_result: The buffer head to return the result in
61 * @create: Non-zero if we may add block to the file
62 *
63 * Returns: errno
64 */
65
Steven Whitehouse4ff14672006-01-30 09:39:10 +000066int gfs2_get_block(struct inode *inode, sector_t lblock,
67 struct buffer_head *bh_result, int create)
David Teiglandb3b94fa2006-01-16 16:50:04 +000068{
Steven Whitehouse23591252006-10-13 17:25:45 -040069 return gfs2_block_map(inode, lblock, create, bh_result);
David Teiglandb3b94fa2006-01-16 16:50:04 +000070}
71
72/**
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040073 * gfs2_get_block_noalloc - Fills in a buffer head with details about a block
David Teiglandb3b94fa2006-01-16 16:50:04 +000074 * @inode: The inode
75 * @lblock: The block number to look up
76 * @bh_result: The buffer head to return the result in
77 * @create: Non-zero if we may add block to the file
78 *
79 * Returns: errno
80 */
81
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040082static int gfs2_get_block_noalloc(struct inode *inode, sector_t lblock,
83 struct buffer_head *bh_result, int create)
David Teiglandb3b94fa2006-01-16 16:50:04 +000084{
David Teiglandb3b94fa2006-01-16 16:50:04 +000085 int error;
86
Steven Whitehouse23591252006-10-13 17:25:45 -040087 error = gfs2_block_map(inode, lblock, 0, bh_result);
David Teiglandb3b94fa2006-01-16 16:50:04 +000088 if (error)
89 return error;
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040090 if (bh_result->b_blocknr == 0)
91 return -EIO;
Steven Whitehouse623d9352006-08-31 12:14:44 -040092 return 0;
93}
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040094
95static int gfs2_get_block_direct(struct inode *inode, sector_t lblock,
96 struct buffer_head *bh_result, int create)
97{
Steven Whitehouse23591252006-10-13 17:25:45 -040098 return gfs2_block_map(inode, lblock, 0, bh_result);
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040099}
100
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101/**
102 * gfs2_writepage - Write complete page
103 * @page: Page to write
104 *
105 * Returns: errno
106 *
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000107 * Some of this is copied from block_write_full_page() although we still
108 * call it to do most of the work.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109 */
110
111static int gfs2_writepage(struct page *page, struct writeback_control *wbc)
112{
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000113 struct inode *inode = page->mapping->host;
Steven Whitehousef4387142006-08-08 13:23:19 -0400114 struct gfs2_inode *ip = GFS2_I(inode);
115 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000116 loff_t i_size = i_size_read(inode);
117 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
118 unsigned offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119 int error;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000120 int done_trans = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000121
David Teiglandb3b94fa2006-01-16 16:50:04 +0000122 if (gfs2_assert_withdraw(sdp, gfs2_glock_is_held_excl(ip->i_gl))) {
123 unlock_page(page);
124 return -EIO;
125 }
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500126 if (current->journal_info)
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000127 goto out_ignore;
128
129 /* Is the page fully outside i_size? (truncate in progress) */
130 offset = i_size & (PAGE_CACHE_SIZE-1);
Steven Whitehoused2d7b8a2006-05-02 12:09:42 -0400131 if (page->index > end_index || (page->index == end_index && !offset)) {
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000132 page->mapping->a_ops->invalidatepage(page, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000133 unlock_page(page);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000134 return 0; /* don't care */
135 }
136
137 if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED || gfs2_is_jdata(ip)) {
138 error = gfs2_trans_begin(sdp, RES_DINODE + 1, 0);
139 if (error)
140 goto out_ignore;
Steven Whitehousef4387142006-08-08 13:23:19 -0400141 if (!page_has_buffers(page)) {
142 create_empty_buffers(page, inode->i_sb->s_blocksize,
143 (1 << BH_Dirty)|(1 << BH_Uptodate));
144 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000145 gfs2_page_add_databufs(ip, page, 0, sdp->sd_vfs->s_blocksize-1);
146 done_trans = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147 }
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400148 error = block_write_full_page(page, gfs2_get_block_noalloc, wbc);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000149 if (done_trans)
150 gfs2_trans_end(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000151 gfs2_meta_cache_flush(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000152 return error;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000153
154out_ignore:
155 redirty_page_for_writepage(wbc, page);
156 unlock_page(page);
157 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000158}
159
160/**
Steven Whitehousea8d638e2007-01-15 13:52:17 +0000161 * gfs2_writepages - Write a bunch of dirty pages back to disk
162 * @mapping: The mapping to write
163 * @wbc: Write-back control
164 *
165 * For journaled files and/or ordered writes this just falls back to the
166 * kernel's default writepages path for now. We will probably want to change
167 * that eventually (i.e. when we look at allocate on flush).
168 *
169 * For the data=writeback case though we can already ignore buffer heads
170 * and write whole extents at once. This is a big reduction in the
171 * number of I/O requests we send and the bmap calls we make in this case.
172 */
173int gfs2_writepages(struct address_space *mapping, struct writeback_control *wbc)
174{
175 struct inode *inode = mapping->host;
176 struct gfs2_inode *ip = GFS2_I(inode);
177 struct gfs2_sbd *sdp = GFS2_SB(inode);
178
179 if (sdp->sd_args.ar_data == GFS2_DATA_WRITEBACK && !gfs2_is_jdata(ip))
180 return mpage_writepages(mapping, wbc, gfs2_get_block_noalloc);
181
182 return generic_writepages(mapping, wbc);
183}
184
185/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186 * stuffed_readpage - Fill in a Linux page with stuffed file data
187 * @ip: the inode
188 * @page: the page
189 *
190 * Returns: errno
191 */
192
193static int stuffed_readpage(struct gfs2_inode *ip, struct page *page)
194{
195 struct buffer_head *dibh;
196 void *kaddr;
197 int error;
198
Russell Cattelan61057c62006-11-09 11:42:33 -0500199 BUG_ON(page->index);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400200
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201 error = gfs2_meta_inode_buffer(ip, &dibh);
202 if (error)
203 return error;
204
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000205 kaddr = kmap_atomic(page, KM_USER0);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400206 memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode),
David Teiglandb3b94fa2006-01-16 16:50:04 +0000207 ip->i_di.di_size);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400208 memset(kaddr + ip->i_di.di_size, 0, PAGE_CACHE_SIZE - ip->i_di.di_size);
Russell Cattelanc312c4f2006-10-12 09:23:41 -0400209 kunmap_atomic(kaddr, KM_USER0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000210
211 brelse(dibh);
212
213 SetPageUptodate(page);
214
215 return 0;
216}
217
David Teiglandb3b94fa2006-01-16 16:50:04 +0000218
219/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000220 * gfs2_readpage - readpage with locking
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000221 * @file: The file to read a page for. N.B. This may be NULL if we are
222 * reading an internal file.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000223 * @page: The page to read
224 *
225 * Returns: errno
226 */
227
228static int gfs2_readpage(struct file *file, struct page *page)
229{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400230 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
231 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
Russell Cattelandc41aee2006-09-18 17:26:48 -0400232 struct gfs2_file *gf = NULL;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000233 struct gfs2_holder gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000234 int error;
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400235 int do_unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000236
Steven Whitehousedd538c82006-09-04 14:53:30 -0400237 if (likely(file != &gfs2_internal_file_sentinel)) {
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400238 if (file) {
Russell Cattelandc41aee2006-09-18 17:26:48 -0400239 gf = file->private_data;
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400240 if (test_bit(GFF_EXLOCK, &gf->f_flags))
Russell Cattelandc41aee2006-09-18 17:26:48 -0400241 /* gfs2_sharewrite_nopage has grabbed the ip->i_gl already */
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400242 goto skip_lock;
243 }
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500244 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME|LM_FLAG_TRY_1CB, &gh);
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400245 do_unlock = 1;
Steven Whitehousedcd24792006-11-16 11:08:16 -0500246 error = gfs2_glock_nq_atime(&gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400247 if (unlikely(error))
Steven Whitehouse61a30dc2006-02-15 10:15:18 +0000248 goto out_unlock;
249 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000250
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400251skip_lock:
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000252 if (gfs2_is_stuffed(ip)) {
Steven Whitehousefd88de562006-05-05 16:59:11 -0400253 error = stuffed_readpage(ip, page);
254 unlock_page(page);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000255 } else
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000256 error = mpage_readpage(page, gfs2_get_block);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000257
258 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
259 error = -EIO;
260
Steven Whitehouse07903c02006-09-18 17:30:05 -0400261 if (do_unlock) {
Steven Whitehouse61a30dc2006-02-15 10:15:18 +0000262 gfs2_glock_dq_m(1, &gh);
263 gfs2_holder_uninit(&gh);
264 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000265out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266 return error;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000267out_unlock:
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500268 if (error == GLR_TRYFAILED)
269 error = AOP_TRUNCATED_PAGE;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000270 unlock_page(page);
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400271 if (do_unlock)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400272 gfs2_holder_uninit(&gh);
273 goto out;
274}
275
Steven Whitehousefd88de562006-05-05 16:59:11 -0400276/**
277 * gfs2_readpages - Read a bunch of pages at once
278 *
279 * Some notes:
280 * 1. This is only for readahead, so we can simply ignore any things
281 * which are slightly inconvenient (such as locking conflicts between
282 * the page lock and the glock) and return having done no I/O. Its
283 * obviously not something we'd want to do on too regular a basis.
284 * Any I/O we ignore at this time will be done via readpage later.
Steven Whitehousee1d5b182006-12-15 16:49:51 -0500285 * 2. We don't handle stuffed files here we let readpage do the honours.
Steven Whitehousefd88de562006-05-05 16:59:11 -0400286 * 3. mpage_readpages() does most of the heavy lifting in the common case.
287 * 4. gfs2_get_block() is relied upon to set BH_Boundary in the right places.
288 * 5. We use LM_FLAG_TRY_1CB here, effectively we then have lock-ahead as
289 * well as read-ahead.
290 */
291static int gfs2_readpages(struct file *file, struct address_space *mapping,
292 struct list_head *pages, unsigned nr_pages)
293{
294 struct inode *inode = mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400295 struct gfs2_inode *ip = GFS2_I(inode);
296 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400297 struct gfs2_holder gh;
Steven Whitehousee1d5b182006-12-15 16:49:51 -0500298 int ret = 0;
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400299 int do_unlock = 0;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400300
Steven Whitehousedd538c82006-09-04 14:53:30 -0400301 if (likely(file != &gfs2_internal_file_sentinel)) {
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400302 if (file) {
303 struct gfs2_file *gf = file->private_data;
304 if (test_bit(GFF_EXLOCK, &gf->f_flags))
305 goto skip_lock;
306 }
Steven Whitehousefd88de562006-05-05 16:59:11 -0400307 gfs2_holder_init(ip->i_gl, LM_ST_SHARED,
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500308 LM_FLAG_TRY_1CB|GL_ATIME, &gh);
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400309 do_unlock = 1;
Steven Whitehousedcd24792006-11-16 11:08:16 -0500310 ret = gfs2_glock_nq_atime(&gh);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400311 if (ret == GLR_TRYFAILED)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400312 goto out_noerror;
313 if (unlikely(ret))
314 goto out_unlock;
315 }
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400316skip_lock:
Steven Whitehousee1d5b182006-12-15 16:49:51 -0500317 if (!gfs2_is_stuffed(ip))
Steven Whitehousefd88de562006-05-05 16:59:11 -0400318 ret = mpage_readpages(mapping, pages, nr_pages, gfs2_get_block);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400319
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400320 if (do_unlock) {
Steven Whitehousefd88de562006-05-05 16:59:11 -0400321 gfs2_glock_dq_m(1, &gh);
322 gfs2_holder_uninit(&gh);
323 }
324out:
325 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
326 ret = -EIO;
327 return ret;
328out_noerror:
329 ret = 0;
330out_unlock:
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400331 if (do_unlock)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400332 gfs2_holder_uninit(&gh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000333 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000334}
335
336/**
337 * gfs2_prepare_write - Prepare to write a page to a file
338 * @file: The file to write to
339 * @page: The page which is to be prepared for writing
340 * @from: From (byte range within page)
341 * @to: To (byte range within page)
342 *
343 * Returns: errno
344 */
345
346static int gfs2_prepare_write(struct file *file, struct page *page,
347 unsigned from, unsigned to)
348{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400349 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
350 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000351 unsigned int data_blocks, ind_blocks, rblocks;
352 int alloc_required;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000353 int error = 0;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000354 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + from;
355 loff_t end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
356 struct gfs2_alloc *al;
Russell Cattelan52ae7b72006-10-09 12:11:54 -0500357 unsigned int write_len = to - from;
358
David Teiglandb3b94fa2006-01-16 16:50:04 +0000359
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500360 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_ATIME|LM_FLAG_TRY_1CB, &ip->i_gh);
Steven Whitehousedcd24792006-11-16 11:08:16 -0500361 error = gfs2_glock_nq_atime(&ip->i_gh);
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500362 if (unlikely(error)) {
Steven Whitehouse2d72e712007-02-07 10:25:59 -0500363 if (error == GLR_TRYFAILED) {
364 unlock_page(page);
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500365 error = AOP_TRUNCATED_PAGE;
Steven Whitehouse2d72e712007-02-07 10:25:59 -0500366 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000367 goto out_uninit;
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500368 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000369
Russell Cattelan52ae7b72006-10-09 12:11:54 -0500370 gfs2_write_calc_reserv(ip, write_len, &data_blocks, &ind_blocks);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000371
Russell Cattelan52ae7b72006-10-09 12:11:54 -0500372 error = gfs2_write_alloc_required(ip, pos, write_len, &alloc_required);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000373 if (error)
374 goto out_unlock;
375
376
Steven Whitehousef5c54802006-10-10 13:45:15 -0400377 ip->i_alloc.al_requested = 0;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000378 if (alloc_required) {
379 al = gfs2_alloc_get(ip);
380
381 error = gfs2_quota_lock(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
382 if (error)
383 goto out_alloc_put;
384
Steven Whitehouse2933f922006-11-01 13:23:29 -0500385 error = gfs2_quota_check(ip, ip->i_inode.i_uid, ip->i_inode.i_gid);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000386 if (error)
387 goto out_qunlock;
388
389 al->al_requested = data_blocks + ind_blocks;
390 error = gfs2_inplace_reserve(ip);
391 if (error)
392 goto out_qunlock;
393 }
394
395 rblocks = RES_DINODE + ind_blocks;
396 if (gfs2_is_jdata(ip))
397 rblocks += data_blocks ? data_blocks : 1;
398 if (ind_blocks || data_blocks)
399 rblocks += RES_STATFS + RES_QUOTA;
400
401 error = gfs2_trans_begin(sdp, rblocks, 0);
402 if (error)
403 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404
405 if (gfs2_is_stuffed(ip)) {
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000406 if (end > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400407 error = gfs2_unstuff_dinode(ip, page);
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000408 if (error == 0)
409 goto prepare_write;
410 } else if (!PageUptodate(page))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000411 error = stuffed_readpage(ip, page);
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000412 goto out;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000413 }
414
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000415prepare_write:
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000416 error = block_prepare_write(page, from, to, gfs2_get_block);
417
418out:
419 if (error) {
420 gfs2_trans_end(sdp);
421 if (alloc_required) {
422 gfs2_inplace_release(ip);
423out_qunlock:
424 gfs2_quota_unlock(ip);
425out_alloc_put:
426 gfs2_alloc_put(ip);
427 }
428out_unlock:
429 gfs2_glock_dq_m(1, &ip->i_gh);
430out_uninit:
431 gfs2_holder_uninit(&ip->i_gh);
432 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000433
434 return error;
435}
436
437/**
438 * gfs2_commit_write - Commit write to a file
439 * @file: The file to write to
440 * @page: The page containing the data
441 * @from: From (byte range within page)
442 * @to: To (byte range within page)
443 *
444 * Returns: errno
445 */
446
447static int gfs2_commit_write(struct file *file, struct page *page,
448 unsigned from, unsigned to)
449{
450 struct inode *inode = page->mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400451 struct gfs2_inode *ip = GFS2_I(inode);
452 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000453 int error = -EOPNOTSUPP;
454 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400455 struct gfs2_alloc *al = &ip->i_alloc;
456 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000458 if (gfs2_assert_withdraw(sdp, gfs2_glock_is_locked_by_me(ip->i_gl)))
459 goto fail_nounlock;
460
461 error = gfs2_meta_inode_buffer(ip, &dibh);
462 if (error)
463 goto fail_endtrans;
464
465 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400466 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000467
David Teiglandb3b94fa2006-01-16 16:50:04 +0000468 if (gfs2_is_stuffed(ip)) {
Steven Whitehousecd915492006-09-04 12:49:07 -0400469 u64 file_size;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470 void *kaddr;
471
Steven Whitehousecd915492006-09-04 12:49:07 -0400472 file_size = ((u64)page->index << PAGE_CACHE_SHIFT) + to;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000473
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000474 kaddr = kmap_atomic(page, KM_USER0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475 memcpy(dibh->b_data + sizeof(struct gfs2_dinode) + from,
Steven Whitehouse0bd59962006-09-04 14:59:35 -0400476 kaddr + from, to - from);
Russell Cattelanc312c4f2006-10-12 09:23:41 -0400477 kunmap_atomic(kaddr, KM_USER0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000478
479 SetPageUptodate(page);
480
Steven Whitehouseae619322006-11-22 11:28:47 -0500481 if (inode->i_size < file_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000482 i_size_write(inode, file_size);
Steven Whitehouseae619322006-11-22 11:28:47 -0500483 mark_inode_dirty(inode);
484 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000485 } else {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500486 if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED ||
487 gfs2_is_jdata(ip))
Steven Whitehouse257f9b42006-01-31 10:00:25 +0000488 gfs2_page_add_databufs(ip, page, from, to);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489 error = generic_commit_write(file, page, from, to);
490 if (error)
491 goto fail;
492 }
493
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400494 if (ip->i_di.di_size < inode->i_size) {
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000495 ip->i_di.di_size = inode->i_size;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400496 di->di_size = cpu_to_be64(inode->i_size);
497 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000498
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000499 brelse(dibh);
500 gfs2_trans_end(sdp);
501 if (al->al_requested) {
502 gfs2_inplace_release(ip);
503 gfs2_quota_unlock(ip);
504 gfs2_alloc_put(ip);
505 }
506 gfs2_glock_dq_m(1, &ip->i_gh);
507 gfs2_holder_uninit(&ip->i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000508 return 0;
509
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000510fail:
511 brelse(dibh);
512fail_endtrans:
513 gfs2_trans_end(sdp);
514 if (al->al_requested) {
515 gfs2_inplace_release(ip);
516 gfs2_quota_unlock(ip);
517 gfs2_alloc_put(ip);
518 }
519 gfs2_glock_dq_m(1, &ip->i_gh);
520 gfs2_holder_uninit(&ip->i_gh);
521fail_nounlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000522 ClearPageUptodate(page);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523 return error;
524}
525
526/**
527 * gfs2_bmap - Block map function
528 * @mapping: Address space info
529 * @lblock: The block to map
530 *
531 * Returns: The disk address for the block or 0 on hole or error
532 */
533
534static sector_t gfs2_bmap(struct address_space *mapping, sector_t lblock)
535{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400536 struct gfs2_inode *ip = GFS2_I(mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537 struct gfs2_holder i_gh;
538 sector_t dblock = 0;
539 int error;
540
David Teiglandb3b94fa2006-01-16 16:50:04 +0000541 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
542 if (error)
543 return 0;
544
545 if (!gfs2_is_stuffed(ip))
Steven Whitehouse4ff14672006-01-30 09:39:10 +0000546 dblock = generic_block_bmap(mapping, lblock, gfs2_get_block);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000547
548 gfs2_glock_dq_uninit(&i_gh);
549
550 return dblock;
551}
552
553static void discard_buffer(struct gfs2_sbd *sdp, struct buffer_head *bh)
554{
Steven Whitehouse64fb4eb2006-01-18 13:14:40 +0000555 struct gfs2_bufdata *bd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556
557 gfs2_log_lock(sdp);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500558 bd = bh->b_private;
Steven Whitehouse64fb4eb2006-01-18 13:14:40 +0000559 if (bd) {
560 bd->bd_bh = NULL;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500561 bh->b_private = NULL;
Steven Whitehouse15d00c02006-08-18 15:51:09 -0400562 }
563 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564
565 lock_buffer(bh);
566 clear_buffer_dirty(bh);
567 bh->b_bdev = NULL;
568 clear_buffer_mapped(bh);
569 clear_buffer_req(bh);
570 clear_buffer_new(bh);
571 clear_buffer_delay(bh);
572 unlock_buffer(bh);
573}
574
Steven Whitehouse8628de02006-03-31 16:48:41 -0500575static void gfs2_invalidatepage(struct page *page, unsigned long offset)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000576{
Steven Whitehouse15d00c02006-08-18 15:51:09 -0400577 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578 struct buffer_head *head, *bh, *next;
579 unsigned int curr_off = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580
581 BUG_ON(!PageLocked(page));
582 if (!page_has_buffers(page))
Steven Whitehouse8628de02006-03-31 16:48:41 -0500583 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000584
585 bh = head = page_buffers(page);
586 do {
587 unsigned int next_off = curr_off + bh->b_size;
588 next = bh->b_this_page;
589
590 if (offset <= curr_off)
591 discard_buffer(sdp, bh);
592
593 curr_off = next_off;
594 bh = next;
595 } while (bh != head);
596
597 if (!offset)
Steven Whitehouse8628de02006-03-31 16:48:41 -0500598 try_to_release_page(page, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599
Steven Whitehouse8628de02006-03-31 16:48:41 -0500600 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601}
602
Steven Whitehousec7b33832006-12-14 18:24:26 +0000603/**
604 * gfs2_ok_for_dio - check that dio is valid on this file
605 * @ip: The inode
606 * @rw: READ or WRITE
607 * @offset: The offset at which we are reading or writing
608 *
609 * Returns: 0 (to ignore the i/o request and thus fall back to buffered i/o)
610 * 1 (to accept the i/o request)
611 */
612static int gfs2_ok_for_dio(struct gfs2_inode *ip, int rw, loff_t offset)
613{
614 /*
615 * Should we return an error here? I can't see that O_DIRECT for
616 * a journaled file makes any sense. For now we'll silently fall
617 * back to buffered I/O, likewise we do the same for stuffed
618 * files since they are (a) small and (b) unaligned.
619 */
620 if (gfs2_is_jdata(ip))
621 return 0;
622
623 if (gfs2_is_stuffed(ip))
624 return 0;
625
626 if (offset > i_size_read(&ip->i_inode))
627 return 0;
628 return 1;
629}
630
631
632
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400633static ssize_t gfs2_direct_IO(int rw, struct kiocb *iocb,
634 const struct iovec *iov, loff_t offset,
635 unsigned long nr_segs)
Steven Whitehoused1665e42006-02-14 11:54:42 +0000636{
637 struct file *file = iocb->ki_filp;
638 struct inode *inode = file->f_mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400639 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000640 struct gfs2_holder gh;
641 int rv;
642
643 /*
Steven Whitehousec7b33832006-12-14 18:24:26 +0000644 * Deferred lock, even if its a write, since we do no allocation
645 * on this path. All we need change is atime, and this lock mode
646 * ensures that other nodes have flushed their buffered read caches
647 * (i.e. their page cache entries for this inode). We do not,
648 * unfortunately have the option of only flushing a range like
649 * the VFS does.
Steven Whitehoused1665e42006-02-14 11:54:42 +0000650 */
Steven Whitehousec7b33832006-12-14 18:24:26 +0000651 gfs2_holder_init(ip->i_gl, LM_ST_DEFERRED, GL_ATIME, &gh);
Steven Whitehousedcd24792006-11-16 11:08:16 -0500652 rv = gfs2_glock_nq_atime(&gh);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000653 if (rv)
Steven Whitehousec7b33832006-12-14 18:24:26 +0000654 return rv;
655 rv = gfs2_ok_for_dio(ip, rw, offset);
656 if (rv != 1)
657 goto out; /* dio not valid, fall back to buffered i/o */
Steven Whitehoused1665e42006-02-14 11:54:42 +0000658
Steven Whitehousec7b33832006-12-14 18:24:26 +0000659 rv = blockdev_direct_IO_no_locking(rw, iocb, inode, inode->i_sb->s_bdev,
660 iov, offset, nr_segs,
661 gfs2_get_block_direct, NULL);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000662out:
663 gfs2_glock_dq_m(1, &gh);
664 gfs2_holder_uninit(&gh);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000665 return rv;
666}
667
668/**
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400669 * stuck_releasepage - We're stuck in gfs2_releasepage(). Print stuff out.
670 * @bh: the buffer we're stuck on
671 *
672 */
673
674static void stuck_releasepage(struct buffer_head *bh)
675{
676 struct inode *inode = bh->b_page->mapping->host;
677 struct gfs2_sbd *sdp = inode->i_sb->s_fs_info;
678 struct gfs2_bufdata *bd = bh->b_private;
679 struct gfs2_glock *gl;
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400680static unsigned limit = 0;
681
Steven Whitehouse0bd59962006-09-04 14:59:35 -0400682 if (limit > 3)
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400683 return;
Steven Whitehouse0bd59962006-09-04 14:59:35 -0400684 limit++;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400685
686 fs_warn(sdp, "stuck in gfs2_releasepage() %p\n", inode);
687 fs_warn(sdp, "blkno = %llu, bh->b_count = %d\n",
688 (unsigned long long)bh->b_blocknr, atomic_read(&bh->b_count));
689 fs_warn(sdp, "pinned = %u\n", buffer_pinned(bh));
690 fs_warn(sdp, "bh->b_private = %s\n", (bd) ? "!NULL" : "NULL");
691
692 if (!bd)
693 return;
694
695 gl = bd->bd_gl;
696
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400697 fs_warn(sdp, "gl = (%u, %llu)\n",
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400698 gl->gl_name.ln_type, (unsigned long long)gl->gl_name.ln_number);
699
700 fs_warn(sdp, "bd_list_tr = %s, bd_le.le_list = %s\n",
701 (list_empty(&bd->bd_list_tr)) ? "no" : "yes",
702 (list_empty(&bd->bd_le.le_list)) ? "no" : "yes");
703
704 if (gl->gl_ops == &gfs2_inode_glops) {
705 struct gfs2_inode *ip = gl->gl_object;
706 unsigned int x;
707
708 if (!ip)
709 return;
710
711 fs_warn(sdp, "ip = %llu %llu\n",
712 (unsigned long long)ip->i_num.no_formal_ino,
713 (unsigned long long)ip->i_num.no_addr);
714
715 for (x = 0; x < GFS2_MAX_META_HEIGHT; x++)
716 fs_warn(sdp, "ip->i_cache[%u] = %s\n",
717 x, (ip->i_cache[x]) ? "!NULL" : "NULL");
718 }
719}
720
721/**
Steven Whitehouse623d9352006-08-31 12:14:44 -0400722 * gfs2_releasepage - free the metadata associated with a page
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400723 * @page: the page that's being released
724 * @gfp_mask: passed from Linux VFS, ignored by us
725 *
726 * Call try_to_free_buffers() if the buffers in this page can be
727 * released.
728 *
729 * Returns: 0
730 */
731
732int gfs2_releasepage(struct page *page, gfp_t gfp_mask)
733{
734 struct inode *aspace = page->mapping->host;
735 struct gfs2_sbd *sdp = aspace->i_sb->s_fs_info;
736 struct buffer_head *bh, *head;
737 struct gfs2_bufdata *bd;
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400738 unsigned long t = jiffies + gfs2_tune_get(sdp, gt_stall_secs) * HZ;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400739
740 if (!page_has_buffers(page))
741 goto out;
742
743 head = bh = page_buffers(page);
744 do {
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400745 while (atomic_read(&bh->b_count)) {
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400746 if (!atomic_read(&aspace->i_writecount))
747 return 0;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400748
Russell Cattelan61057c62006-11-09 11:42:33 -0500749 if (!(gfp_mask & __GFP_WAIT))
750 return 0;
751
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400752 if (time_after_eq(jiffies, t)) {
753 stuck_releasepage(bh);
754 /* should we withdraw here? */
755 return 0;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400756 }
757
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400758 yield();
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400759 }
760
761 gfs2_assert_warn(sdp, !buffer_pinned(bh));
Steven Whitehouse623d9352006-08-31 12:14:44 -0400762 gfs2_assert_warn(sdp, !buffer_dirty(bh));
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400763
Steven Whitehouse623d9352006-08-31 12:14:44 -0400764 gfs2_log_lock(sdp);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400765 bd = bh->b_private;
766 if (bd) {
767 gfs2_assert_warn(sdp, bd->bd_bh == bh);
768 gfs2_assert_warn(sdp, list_empty(&bd->bd_list_tr));
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400769 gfs2_assert_warn(sdp, !bd->bd_ail);
Steven Whitehouse623d9352006-08-31 12:14:44 -0400770 bd->bd_bh = NULL;
771 if (!list_empty(&bd->bd_le.le_list))
772 bd = NULL;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400773 bh->b_private = NULL;
774 }
Steven Whitehouse623d9352006-08-31 12:14:44 -0400775 gfs2_log_unlock(sdp);
776 if (bd)
777 kmem_cache_free(gfs2_bufdata_cachep, bd);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400778
779 bh = bh->b_this_page;
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400780 } while (bh != head);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400781
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400782out:
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400783 return try_to_free_buffers(page);
784}
785
Steven Whitehouse66de0452006-07-03 13:37:30 -0400786const struct address_space_operations gfs2_file_aops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000787 .writepage = gfs2_writepage,
Steven Whitehousea8d638e2007-01-15 13:52:17 +0000788 .writepages = gfs2_writepages,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000789 .readpage = gfs2_readpage,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400790 .readpages = gfs2_readpages,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000791 .sync_page = block_sync_page,
792 .prepare_write = gfs2_prepare_write,
793 .commit_write = gfs2_commit_write,
794 .bmap = gfs2_bmap,
795 .invalidatepage = gfs2_invalidatepage,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400796 .releasepage = gfs2_releasepage,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797 .direct_IO = gfs2_direct_IO,
798};
799