Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vxfs_subr.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2000-2001 Christoph Hellwig.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions, and the following disclaimer,
10  * without modification.
11  * 2. The name of the author may not be used to endorse or promote products
12  * derived from this software without specific prior written permission.
13  *
14  * Alternatively, this software may be distributed under the terms of the
15  * GNU General Public License ("GPL").
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29 
30 /*
31  * Veritas filesystem driver - shared subroutines.
32  */
33 #include <linux/fs.h>
34 #include <linux/buffer_head.h>
35 #include <linux/kernel.h>
36 #include <linux/pagemap.h>
37 
38 #include "vxfs_extern.h"
39 
40 
41 static int vxfs_readpage(struct file *, struct page *);
42 static sector_t vxfs_bmap(struct address_space *, sector_t);
43 
45  .readpage = vxfs_readpage,
46  .bmap = vxfs_bmap,
47 };
48 
49 inline void
51 {
52  kunmap(pp);
54 }
55 
67 struct page *
69 {
70  struct page * pp;
71 
72  pp = read_mapping_page(mapping, n, NULL);
73 
74  if (!IS_ERR(pp)) {
75  kmap(pp);
78  if (PageError(pp))
79  goto fail;
80  }
81 
82  return (pp);
83 
84 fail:
85  vxfs_put_page(pp);
86  return ERR_PTR(-EIO);
87 }
88 
101 struct buffer_head *
102 vxfs_bread(struct inode *ip, int block)
103 {
104  struct buffer_head *bp;
105  daddr_t pblock;
106 
107  pblock = vxfs_bmap1(ip, block);
108  bp = sb_bread(ip->i_sb, pblock);
109 
110  return (bp);
111 }
112 
128 static int
129 vxfs_getblk(struct inode *ip, sector_t iblock,
130  struct buffer_head *bp, int create)
131 {
132  daddr_t pblock;
133 
134  pblock = vxfs_bmap1(ip, iblock);
135  if (pblock != 0) {
136  map_bh(bp, ip->i_sb, pblock);
137  return 0;
138  }
139 
140  return -EIO;
141 }
142 
158 static int
159 vxfs_readpage(struct file *file, struct page *page)
160 {
161  return block_read_full_page(page, vxfs_getblk);
162 }
163 
179 static sector_t
180 vxfs_bmap(struct address_space *mapping, sector_t block)
181 {
182  return generic_block_bmap(mapping, block, vxfs_getblk);
183 }