vxfs_subr.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. * Veritas filesystem driver - shared subroutines.
  31. */
  32. #include <linux/fs.h>
  33. #include <linux/buffer_head.h>
  34. #include <linux/kernel.h>
  35. #include <linux/pagemap.h>
  36. #include "vxfs_extern.h"
  37. static int vxfs_readpage(struct file *, struct page *);
  38. static sector_t vxfs_bmap(struct address_space *, sector_t);
  39. const struct address_space_operations vxfs_aops = {
  40. .readpage = vxfs_readpage,
  41. .bmap = vxfs_bmap,
  42. .sync_page = block_sync_page,
  43. };
  44. inline void
  45. vxfs_put_page(struct page *pp)
  46. {
  47. kunmap(pp);
  48. page_cache_release(pp);
  49. }
  50. /**
  51. * vxfs_get_page - read a page into memory.
  52. * @ip: inode to read from
  53. * @n: page number
  54. *
  55. * Description:
  56. * vxfs_get_page reads the @n th page of @ip into the pagecache.
  57. *
  58. * Returns:
  59. * The wanted page on success, else a NULL pointer.
  60. */
  61. struct page *
  62. vxfs_get_page(struct address_space *mapping, u_long n)
  63. {
  64. struct page * pp;
  65. pp = read_mapping_page(mapping, n, NULL);
  66. if (!IS_ERR(pp)) {
  67. kmap(pp);
  68. /** if (!PageChecked(pp)) **/
  69. /** vxfs_check_page(pp); **/
  70. if (PageError(pp))
  71. goto fail;
  72. }
  73. return (pp);
  74. fail:
  75. vxfs_put_page(pp);
  76. return ERR_PTR(-EIO);
  77. }
  78. /**
  79. * vxfs_bread - read buffer for a give inode,block tuple
  80. * @ip: inode
  81. * @block: logical block
  82. *
  83. * Description:
  84. * The vxfs_bread function reads block no @block of
  85. * @ip into the buffercache.
  86. *
  87. * Returns:
  88. * The resulting &struct buffer_head.
  89. */
  90. struct buffer_head *
  91. vxfs_bread(struct inode *ip, int block)
  92. {
  93. struct buffer_head *bp;
  94. daddr_t pblock;
  95. pblock = vxfs_bmap1(ip, block);
  96. bp = sb_bread(ip->i_sb, pblock);
  97. return (bp);
  98. }
  99. /**
  100. * vxfs_get_block - locate buffer for given inode,block tuple
  101. * @ip: inode
  102. * @iblock: logical block
  103. * @bp: buffer skeleton
  104. * @create: %TRUE if blocks may be newly allocated.
  105. *
  106. * Description:
  107. * The vxfs_get_block function fills @bp with the right physical
  108. * block and device number to perform a lowlevel read/write on
  109. * it.
  110. *
  111. * Returns:
  112. * Zero on success, else a negativ error code (-EIO).
  113. */
  114. static int
  115. vxfs_getblk(struct inode *ip, sector_t iblock,
  116. struct buffer_head *bp, int create)
  117. {
  118. daddr_t pblock;
  119. pblock = vxfs_bmap1(ip, iblock);
  120. if (pblock != 0) {
  121. map_bh(bp, ip->i_sb, pblock);
  122. return 0;
  123. }
  124. return -EIO;
  125. }
  126. /**
  127. * vxfs_readpage - read one page synchronously into the pagecache
  128. * @file: file context (unused)
  129. * @page: page frame to fill in.
  130. *
  131. * Description:
  132. * The vxfs_readpage routine reads @page synchronously into the
  133. * pagecache.
  134. *
  135. * Returns:
  136. * Zero on success, else a negative error code.
  137. *
  138. * Locking status:
  139. * @page is locked and will be unlocked.
  140. */
  141. static int
  142. vxfs_readpage(struct file *file, struct page *page)
  143. {
  144. return block_read_full_page(page, vxfs_getblk);
  145. }
  146. /**
  147. * vxfs_bmap - perform logical to physical block mapping
  148. * @mapping: logical to physical mapping to use
  149. * @block: logical block (relative to @mapping).
  150. *
  151. * Description:
  152. * Vxfs_bmap find out the corresponding phsical block to the
  153. * @mapping, @block pair.
  154. *
  155. * Returns:
  156. * Physical block number on success, else Zero.
  157. *
  158. * Locking status:
  159. * We are under the bkl.
  160. */
  161. static sector_t
  162. vxfs_bmap(struct address_space *mapping, sector_t block)
  163. {
  164. return generic_block_bmap(mapping, block, vxfs_getblk);
  165. }