ops_address.c 16.2 KB
Newer Older
D
David Teigland 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
 * Copyright (C) 2004-2005 Red Hat, Inc.  All rights reserved.
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU General Public License v.2.
 */

#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/completion.h>
#include <linux/buffer_head.h>
#include <linux/pagemap.h>
S
Steven Whitehouse 已提交
16
#include <linux/pagevec.h>
17
#include <linux/mpage.h>
18
#include <linux/fs.h>
19
#include <linux/gfs2_ondisk.h>
D
David Teigland 已提交
20 21

#include "gfs2.h"
22 23
#include "lm_interface.h"
#include "incore.h"
D
David Teigland 已提交
24 25 26 27 28 29 30 31 32
#include "bmap.h"
#include "glock.h"
#include "inode.h"
#include "log.h"
#include "meta_io.h"
#include "ops_address.h"
#include "page.h"
#include "quota.h"
#include "trans.h"
33
#include "rgrp.h"
34
#include "ops_file.h"
35
#include "util.h"
D
David Teigland 已提交
36 37

/**
38
 * gfs2_get_block - Fills in a buffer head with details about a block
D
David Teigland 已提交
39 40 41 42 43 44 45 46
 * @inode: The inode
 * @lblock: The block number to look up
 * @bh_result: The buffer head to return the result in
 * @create: Non-zero if we may add block to the file
 *
 * Returns: errno
 */

47 48
int gfs2_get_block(struct inode *inode, sector_t lblock,
	           struct buffer_head *bh_result, int create)
D
David Teigland 已提交
49 50 51 52
{
	int new = create;
	uint64_t dblock;
	int error;
S
Steven Whitehouse 已提交
53
	int boundary;
D
David Teigland 已提交
54

S
Steven Whitehouse 已提交
55
	error = gfs2_block_map(inode, lblock, &new, &dblock, &boundary);
D
David Teigland 已提交
56 57 58 59 60 61 62 63 64
	if (error)
		return error;

	if (!dblock)
		return 0;

	map_bh(bh_result, inode->i_sb, dblock);
	if (new)
		set_buffer_new(bh_result);
S
Steven Whitehouse 已提交
65 66
	if (boundary)
		set_buffer_boundary(bh_result);
D
David Teigland 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83

	return 0;
}

/**
 * get_block_noalloc - Fills in a buffer head with details about a block
 * @inode: The inode
 * @lblock: The block number to look up
 * @bh_result: The buffer head to return the result in
 * @create: Non-zero if we may add block to the file
 *
 * Returns: errno
 */

static int get_block_noalloc(struct inode *inode, sector_t lblock,
			     struct buffer_head *bh_result, int create)
{
84
	struct gfs2_inode *ip = inode->u.generic_ip;
D
David Teigland 已提交
85 86 87
	int new = 0;
	uint64_t dblock;
	int error;
S
Steven Whitehouse 已提交
88
	int boundary;
D
David Teigland 已提交
89

S
Steven Whitehouse 已提交
90
	error = gfs2_block_map(inode, lblock, &new, &dblock, &boundary);
D
David Teigland 已提交
91 92 93 94 95 96 97
	if (error)
		return error;

	if (dblock)
		map_bh(bh_result, inode->i_sb, dblock);
	else if (gfs2_assert_withdraw(ip->i_sbd, !create))
		error = -EIO;
S
Steven Whitehouse 已提交
98 99
	if (boundary)
		set_buffer_boundary(bh_result);
D
David Teigland 已提交
100 101 102 103 104 105 106 107 108 109

	return error;
}

/**
 * gfs2_writepage - Write complete page
 * @page: Page to write
 *
 * Returns: errno
 *
110 111
 * Some of this is copied from block_write_full_page() although we still
 * call it to do most of the work.
D
David Teigland 已提交
112 113 114 115
 */

static int gfs2_writepage(struct page *page, struct writeback_control *wbc)
{
116
	struct inode *inode = page->mapping->host;
117
	struct gfs2_inode *ip = page->mapping->host->u.generic_ip;
D
David Teigland 已提交
118
	struct gfs2_sbd *sdp = ip->i_sbd;
119 120 121
	loff_t i_size = i_size_read(inode);
	pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
	unsigned offset;
D
David Teigland 已提交
122
	int error;
123
	int done_trans = 0;
D
David Teigland 已提交
124 125 126 127 128

	if (gfs2_assert_withdraw(sdp, gfs2_glock_is_held_excl(ip->i_gl))) {
		unlock_page(page);
		return -EIO;
	}
129
	if (current->journal_info)
130 131 132 133
		goto out_ignore;

	/* Is the page fully outside i_size? (truncate in progress) */
        offset = i_size & (PAGE_CACHE_SIZE-1);
134
	if (page->index > end_index || (page->index == end_index && !offset)) {
135
		page->mapping->a_ops->invalidatepage(page, 0);
D
David Teigland 已提交
136
		unlock_page(page);
137
		return 0; /* don't care */
D
David Teigland 已提交
138 139
	}

140 141 142 143 144 145 146 147 148 149
	if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED || gfs2_is_jdata(ip)) {
		error = gfs2_trans_begin(sdp, RES_DINODE + 1, 0);
		if (error)
			goto out_ignore;
		gfs2_page_add_databufs(ip, page, 0, sdp->sd_vfs->s_blocksize-1);
		done_trans = 1;
	}
	error = block_write_full_page(page, get_block_noalloc, wbc);
	if (done_trans)
		gfs2_trans_end(sdp);
D
David Teigland 已提交
150 151
	gfs2_meta_cache_flush(ip);
	return error;
152 153 154 155 156

out_ignore:
	redirty_page_for_writepage(wbc, page);
	unlock_page(page);
	return 0;
D
David Teigland 已提交
157 158
}

S
Steven Whitehouse 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171
static int zero_readpage(struct page *page)
{
	void *kaddr;

	kaddr = kmap_atomic(page, KM_USER0);
	memset(kaddr, 0, PAGE_CACHE_SIZE);
	kunmap_atomic(page, KM_USER0);

	SetPageUptodate(page);

	return 0;
}

D
David Teigland 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185
/**
 * stuffed_readpage - Fill in a Linux page with stuffed file data
 * @ip: the inode
 * @page: the page
 *
 * Returns: errno
 */

static int stuffed_readpage(struct gfs2_inode *ip, struct page *page)
{
	struct buffer_head *dibh;
	void *kaddr;
	int error;

S
Steven Whitehouse 已提交
186 187 188 189
	/* Only the first page of a stuffed file might contain data */
	if (unlikely(page->index))
		return zero_readpage(page);

D
David Teigland 已提交
190 191 192 193
	error = gfs2_meta_inode_buffer(ip, &dibh);
	if (error)
		return error;

194
	kaddr = kmap_atomic(page, KM_USER0);
S
Steven Whitehouse 已提交
195
	memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode),
D
David Teigland 已提交
196
	       ip->i_di.di_size);
S
Steven Whitehouse 已提交
197
	memset(kaddr + ip->i_di.di_size, 0, PAGE_CACHE_SIZE - ip->i_di.di_size);
198
	kunmap_atomic(page, KM_USER0);
D
David Teigland 已提交
199 200 201 202 203 204 205 206 207 208 209

	brelse(dibh);

	SetPageUptodate(page);

	return 0;
}


/**
 * gfs2_readpage - readpage with locking
210 211
 * @file: The file to read a page for. N.B. This may be NULL if we are
 * reading an internal file.
D
David Teigland 已提交
212 213 214 215 216 217 218
 * @page: The page to read
 *
 * Returns: errno
 */

static int gfs2_readpage(struct file *file, struct page *page)
{
219
	struct gfs2_inode *ip = page->mapping->host->u.generic_ip;
D
David Teigland 已提交
220
	struct gfs2_sbd *sdp = ip->i_sbd;
221
	struct gfs2_holder gh;
D
David Teigland 已提交
222 223
	int error;

S
Steven Whitehouse 已提交
224
	if (likely(file != &gfs2_internal_file_sentinal)) {
225
		gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME|GL_AOP, &gh);
226
		error = gfs2_glock_nq_m_atime(1, &gh);
S
Steven Whitehouse 已提交
227
		if (unlikely(error))
228 229
			goto out_unlock;
	}
D
David Teigland 已提交
230

231
	if (gfs2_is_stuffed(ip)) {
S
Steven Whitehouse 已提交
232 233
		error = stuffed_readpage(ip, page);
		unlock_page(page);
D
David Teigland 已提交
234
	} else
235
		error = mpage_readpage(page, gfs2_get_block);
D
David Teigland 已提交
236 237 238 239

	if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
		error = -EIO;

240 241 242 243
	if (file != &gfs2_internal_file_sentinal) {
		gfs2_glock_dq_m(1, &gh);
		gfs2_holder_uninit(&gh);
	}
244
out:
D
David Teigland 已提交
245
	return error;
246 247
out_unlock:
	unlock_page(page);
S
Steven Whitehouse 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
	if (file != &gfs2_internal_file_sentinal)
		gfs2_holder_uninit(&gh);
	goto out;
}

#define list_to_page(head) (list_entry((head)->prev, struct page, lru))

/**
 * gfs2_readpages - Read a bunch of pages at once
 *
 * Some notes:
 * 1. This is only for readahead, so we can simply ignore any things
 *    which are slightly inconvenient (such as locking conflicts between
 *    the page lock and the glock) and return having done no I/O. Its
 *    obviously not something we'd want to do on too regular a basis.
 *    Any I/O we ignore at this time will be done via readpage later.
 * 2. We have to handle stuffed files here too.
 * 3. mpage_readpages() does most of the heavy lifting in the common case.
 * 4. gfs2_get_block() is relied upon to set BH_Boundary in the right places.
 * 5. We use LM_FLAG_TRY_1CB here, effectively we then have lock-ahead as
 *    well as read-ahead.
 */
static int gfs2_readpages(struct file *file, struct address_space *mapping,
			  struct list_head *pages, unsigned nr_pages)
{
	struct inode *inode = mapping->host;
	struct gfs2_inode *ip = inode->u.generic_ip;
	struct gfs2_sbd *sdp = ip->i_sbd;
	struct gfs2_holder gh;
	unsigned page_idx;
	int ret;

	if (likely(file != &gfs2_internal_file_sentinal)) {
		gfs2_holder_init(ip->i_gl, LM_ST_SHARED,
				 LM_FLAG_TRY_1CB|GL_ATIME|GL_AOP, &gh);
		ret = gfs2_glock_nq_m_atime(1, &gh);
		if (ret == GLR_TRYFAILED) 
			goto out_noerror;
		if (unlikely(ret))
			goto out_unlock;
	}

	if (gfs2_is_stuffed(ip)) {
		struct pagevec lru_pvec;
		pagevec_init(&lru_pvec, 0);
		for (page_idx = 0; page_idx < nr_pages; page_idx++) {
			struct page *page = list_to_page(pages);
			list_del(&page->lru);
			if (!add_to_page_cache(page, mapping,
					       page->index, GFP_KERNEL)) {
				ret = stuffed_readpage(ip, page);
				unlock_page(page);
				if (!pagevec_add(&lru_pvec, page))
					 __pagevec_lru_add(&lru_pvec);
			}
			page_cache_release(page);
		}
		pagevec_lru_add(&lru_pvec);
		ret = 0;
	} else {
		/* What we really want to do .... */
		ret = mpage_readpages(mapping, pages, nr_pages, gfs2_get_block);
	}

	if (likely(file != &gfs2_internal_file_sentinal)) {
		gfs2_glock_dq_m(1, &gh);
		gfs2_holder_uninit(&gh);
	}
out:
	if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
		ret = -EIO;
	return ret;
out_noerror:
	ret = 0;
out_unlock:
	/* unlock all pages, we can't do any I/O right now */
	for (page_idx = 0; page_idx < nr_pages; page_idx++) {
		struct page *page = list_to_page(pages);
		list_del(&page->lru);
		unlock_page(page);
		page_cache_release(page);
	}
	if (likely(file != &gfs2_internal_file_sentinal))
		gfs2_holder_uninit(&gh);
332
	goto out;
D
David Teigland 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
}

/**
 * gfs2_prepare_write - Prepare to write a page to a file
 * @file: The file to write to
 * @page: The page which is to be prepared for writing
 * @from: From (byte range within page)
 * @to: To (byte range within page)
 *
 * Returns: errno
 */

static int gfs2_prepare_write(struct file *file, struct page *page,
			      unsigned from, unsigned to)
{
348
	struct gfs2_inode *ip = page->mapping->host->u.generic_ip;
D
David Teigland 已提交
349
	struct gfs2_sbd *sdp = ip->i_sbd;
350 351
	unsigned int data_blocks, ind_blocks, rblocks;
	int alloc_required;
D
David Teigland 已提交
352
	int error = 0;
353 354 355
	loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + from;
	loff_t end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
	struct gfs2_alloc *al;
D
David Teigland 已提交
356

357
	gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_ATIME|GL_AOP, &ip->i_gh);
358 359 360
	error = gfs2_glock_nq_m_atime(1, &ip->i_gh);
	if (error)
		goto out_uninit;
D
David Teigland 已提交
361

362 363 364 365 366
	gfs2_write_calc_reserv(ip, to - from, &data_blocks, &ind_blocks);

	error = gfs2_write_alloc_required(ip, pos, from - to, &alloc_required);
	if (error)
		goto out_unlock;
D
David Teigland 已提交
367

368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397

	if (alloc_required) {
		al = gfs2_alloc_get(ip);

		error = gfs2_quota_lock(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
		if (error)
			goto out_alloc_put;

		error = gfs2_quota_check(ip, ip->i_di.di_uid, ip->i_di.di_gid);
		if (error)
			goto out_qunlock;

		al->al_requested = data_blocks + ind_blocks;
		error = gfs2_inplace_reserve(ip);
		if (error)
			goto out_qunlock;
	}

	rblocks = RES_DINODE + ind_blocks;
	if (gfs2_is_jdata(ip))
		rblocks += data_blocks ? data_blocks : 1;
	if (ind_blocks || data_blocks)
		rblocks += RES_STATFS + RES_QUOTA;

	error = gfs2_trans_begin(sdp, rblocks, 0);
	if (error)
		goto out;

	if (gfs2_is_stuffed(ip)) {
		if (end > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) {
398 399
			error = gfs2_unstuff_dinode(ip, gfs2_unstuffer_page,
						    page);
400 401 402
			if (error == 0)
				goto prepare_write;
		} else if (!PageUptodate(page))
D
David Teigland 已提交
403
			error = stuffed_readpage(ip, page);
404
		goto out;
405 406
	}

407
prepare_write:
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
	error = block_prepare_write(page, from, to, gfs2_get_block);

out:
	if (error) {
		gfs2_trans_end(sdp);
		if (alloc_required) {
			gfs2_inplace_release(ip);
out_qunlock:
			gfs2_quota_unlock(ip);
out_alloc_put:
			gfs2_alloc_put(ip);
		}
out_unlock:
		gfs2_glock_dq_m(1, &ip->i_gh);
out_uninit:
		gfs2_holder_uninit(&ip->i_gh);
	}
D
David Teigland 已提交
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442

	return error;
}

/**
 * gfs2_commit_write - Commit write to a file
 * @file: The file to write to
 * @page: The page containing the data
 * @from: From (byte range within page)
 * @to: To (byte range within page)
 *
 * Returns: errno
 */

static int gfs2_commit_write(struct file *file, struct page *page,
			     unsigned from, unsigned to)
{
	struct inode *inode = page->mapping->host;
443
	struct gfs2_inode *ip = inode->u.generic_ip;
D
David Teigland 已提交
444
	struct gfs2_sbd *sdp = ip->i_sbd;
445 446 447
	int error = -EOPNOTSUPP;
	struct buffer_head *dibh;
	struct gfs2_alloc *al = &ip->i_alloc;;
D
David Teigland 已提交
448

449 450 451 452 453 454 455 456 457
	if (gfs2_assert_withdraw(sdp, gfs2_glock_is_locked_by_me(ip->i_gl)))
                goto fail_nounlock;

	error = gfs2_meta_inode_buffer(ip, &dibh);
	if (error)
		goto fail_endtrans;

	gfs2_trans_add_bh(ip->i_gl, dibh, 1);

D
David Teigland 已提交
458 459 460 461 462 463
	if (gfs2_is_stuffed(ip)) {
		uint64_t file_size;
		void *kaddr;

		file_size = ((uint64_t)page->index << PAGE_CACHE_SHIFT) + to;

464
		kaddr = kmap_atomic(page, KM_USER0);
D
David Teigland 已提交
465
		memcpy(dibh->b_data + sizeof(struct gfs2_dinode) + from,
466 467
		       (char *)kaddr + from, to - from);
		kunmap_atomic(page, KM_USER0);
D
David Teigland 已提交
468 469 470 471 472 473

		SetPageUptodate(page);

		if (inode->i_size < file_size)
			i_size_write(inode, file_size);
	} else {
474 475
		if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED ||
		    gfs2_is_jdata(ip))
476
			gfs2_page_add_databufs(ip, page, from, to);
D
David Teigland 已提交
477 478 479 480 481
		error = generic_commit_write(file, page, from, to);
		if (error)
			goto fail;
	}

482 483 484 485 486 487 488 489 490 491 492 493 494
	if (ip->i_di.di_size < inode->i_size)
		ip->i_di.di_size = inode->i_size;

	gfs2_dinode_out(&ip->i_di, dibh->b_data);
	brelse(dibh);
	gfs2_trans_end(sdp);
	if (al->al_requested) {
		gfs2_inplace_release(ip);
		gfs2_quota_unlock(ip);
		gfs2_alloc_put(ip);
	}
	gfs2_glock_dq_m(1, &ip->i_gh);
	gfs2_holder_uninit(&ip->i_gh);
D
David Teigland 已提交
495 496
	return 0;

497 498 499 500 501 502 503 504 505 506 507 508
fail:
	brelse(dibh);
fail_endtrans:
	gfs2_trans_end(sdp);
	if (al->al_requested) {
		gfs2_inplace_release(ip);
		gfs2_quota_unlock(ip);
		gfs2_alloc_put(ip);
	}
	gfs2_glock_dq_m(1, &ip->i_gh);
	gfs2_holder_uninit(&ip->i_gh);
fail_nounlock:
D
David Teigland 已提交
509 510 511 512 513 514 515 516 517 518 519 520 521 522
	ClearPageUptodate(page);
	return error;
}

/**
 * gfs2_bmap - Block map function
 * @mapping: Address space info
 * @lblock: The block to map
 *
 * Returns: The disk address for the block or 0 on hole or error
 */

static sector_t gfs2_bmap(struct address_space *mapping, sector_t lblock)
{
523
	struct gfs2_inode *ip = mapping->host->u.generic_ip;
D
David Teigland 已提交
524 525 526 527 528 529 530 531 532
	struct gfs2_holder i_gh;
	sector_t dblock = 0;
	int error;

	error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
	if (error)
		return 0;

	if (!gfs2_is_stuffed(ip))
533
		dblock = generic_block_bmap(mapping, lblock, gfs2_get_block);
D
David Teigland 已提交
534 535 536 537 538 539 540 541

	gfs2_glock_dq_uninit(&i_gh);

	return dblock;
}

static void discard_buffer(struct gfs2_sbd *sdp, struct buffer_head *bh)
{
542
	struct gfs2_bufdata *bd;
D
David Teigland 已提交
543 544

	gfs2_log_lock(sdp);
545
	bd = bh->b_private;
546 547
	if (bd) {
		bd->bd_bh = NULL;
548
		bh->b_private = NULL;
D
David Teigland 已提交
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
		gfs2_log_unlock(sdp);
		brelse(bh);
	} else
		gfs2_log_unlock(sdp);

	lock_buffer(bh);
	clear_buffer_dirty(bh);
	bh->b_bdev = NULL;
	clear_buffer_mapped(bh);
	clear_buffer_req(bh);
	clear_buffer_new(bh);
	clear_buffer_delay(bh);
	unlock_buffer(bh);
}

564
static void gfs2_invalidatepage(struct page *page, unsigned long offset)
D
David Teigland 已提交
565
{
566
	struct gfs2_sbd *sdp = page->mapping->host->i_sb->s_fs_info;
D
David Teigland 已提交
567 568 569 570 571
	struct buffer_head *head, *bh, *next;
	unsigned int curr_off = 0;

	BUG_ON(!PageLocked(page));
	if (!page_has_buffers(page))
572
		return;
D
David Teigland 已提交
573 574 575 576 577 578 579 580 581 582 583 584 585 586

	bh = head = page_buffers(page);
	do {
		unsigned int next_off = curr_off + bh->b_size;
		next = bh->b_this_page;

		if (offset <= curr_off)
			discard_buffer(sdp, bh);

		curr_off = next_off;
		bh = next;
	} while (bh != head);

	if (!offset)
587
		try_to_release_page(page, 0);
D
David Teigland 已提交
588

589
	return;
D
David Teigland 已提交
590 591
}

592 593 594 595 596
static ssize_t gfs2_direct_IO_write(struct kiocb *iocb, const struct iovec *iov,
				    loff_t offset, unsigned long nr_segs)
{
	struct file *file = iocb->ki_filp;
	struct inode *inode = file->f_mapping->host;
597
	struct gfs2_inode *ip = inode->u.generic_ip;
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
	struct gfs2_holder gh;
	int rv;

	/*
	 * Shared lock, even though its write, since we do no allocation
	 * on this path. All we need change is atime.
	 */
	gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &gh);
	rv = gfs2_glock_nq_m_atime(1, &gh);
	if (rv)
		goto out;

	/*
	 * Should we return an error here? I can't see that O_DIRECT for
	 * a journaled file makes any sense. For now we'll silently fall
	 * back to buffered I/O, likewise we do the same for stuffed
	 * files since they are (a) small and (b) unaligned.
	 */
	if (gfs2_is_jdata(ip))
		goto out;

	if (gfs2_is_stuffed(ip))
		goto out;

	rv = __blockdev_direct_IO(WRITE, iocb, inode, inode->i_sb->s_bdev,
623
				  iov, offset, nr_segs, gfs2_get_block,
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
				  NULL, DIO_OWN_LOCKING);
out:
	gfs2_glock_dq_m(1, &gh);
	gfs2_holder_uninit(&gh);

	return rv;
}

/**
 * gfs2_direct_IO
 *
 * This is called with a shared lock already held for the read path.
 * Currently, no locks are held when the write path is called.
 */
static ssize_t gfs2_direct_IO(int rw, struct kiocb *iocb,
			      const struct iovec *iov, loff_t offset,
			      unsigned long nr_segs)
D
David Teigland 已提交
641 642 643
{
	struct file *file = iocb->ki_filp;
	struct inode *inode = file->f_mapping->host;
644
	struct gfs2_inode *ip = inode->u.generic_ip;
D
David Teigland 已提交
645 646
	struct gfs2_sbd *sdp = ip->i_sbd;

647 648
	if (rw == WRITE)
		return gfs2_direct_IO_write(iocb, iov, offset, nr_segs);
D
David Teigland 已提交
649

650 651 652
	if (gfs2_assert_warn(sdp, gfs2_glock_is_locked_by_me(ip->i_gl)) ||
	    gfs2_assert_warn(sdp, !gfs2_is_stuffed(ip)))
		return -EINVAL;
D
David Teigland 已提交
653

654
	return __blockdev_direct_IO(READ, iocb, inode, inode->i_sb->s_bdev, iov,
655
			 	    offset, nr_segs, gfs2_get_block, NULL,
656
				    DIO_OWN_LOCKING);
D
David Teigland 已提交
657 658 659 660 661
}

struct address_space_operations gfs2_file_aops = {
	.writepage = gfs2_writepage,
	.readpage = gfs2_readpage,
S
Steven Whitehouse 已提交
662
	.readpages = gfs2_readpages,
D
David Teigland 已提交
663 664 665 666 667 668 669 670
	.sync_page = block_sync_page,
	.prepare_write = gfs2_prepare_write,
	.commit_write = gfs2_commit_write,
	.bmap = gfs2_bmap,
	.invalidatepage = gfs2_invalidatepage,
	.direct_IO = gfs2_direct_IO,
};