io.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/befs/io.c
  3.  *
  4.  * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com
  5.  *
  6.  * Based on portions of file.c and inode.c 
  7.  * by Makoto Kato (m_kato@ga2.so-net.ne.jp)
  8.  *
  9.  * Many thanks to Dominic Giampaolo, author of Practical File System
  10.  * Design with the Be File System, for such a helpful book.
  11.  *
  12.  */
  13. #include <linux/fs.h>
  14. #include "befs_fs.h"
  15. /*
  16.  * Converts befs notion of disk addr to a disk offset and uses
  17.  * linux kernel function bread() to get the buffer containing
  18.  * the offset. -Will Dyson
  19.  *
  20.  */
  21. struct buffer_head *
  22. befs_bread_iaddr(struct super_block *sb, befs_inode_addr iaddr)
  23. {
  24. struct buffer_head *bh = NULL;
  25. befs_blocknr_t block = 0;
  26. vfs_blocknr_t vfs_block = 0;
  27. befs_sb_info *befs_sb = BEFS_SB(sb);
  28. befs_debug(sb, "---> Enter befs_read_iaddr() "
  29.    "[%u, %hu, %hu]",
  30.    iaddr.allocation_group, iaddr.start, iaddr.len);
  31. if (iaddr.allocation_group > befs_sb->num_ags) {
  32. befs_error(sb, "BEFS: Invalid allocation group %u, max is %u",
  33.    iaddr.allocation_group, befs_sb->num_ags);
  34. goto error;
  35. }
  36. block = iaddr2blockno(sb, &iaddr);
  37. vfs_block = (vfs_blocknr_t) block;
  38. if (vfs_block != block) {
  39. befs_error(sb, "Error converting to host blocknr_t. %Lu "
  40.    "is larger than the host can use", block);
  41. goto error;
  42. }
  43. befs_debug(sb, "befs_read_iaddr: offset = %lu", block);
  44. bh = bread(sb->s_dev, vfs_block, befs_sb->block_size);
  45. if (bh == NULL) {
  46. befs_error(sb, "Failed to read block %lu", block);
  47. goto error;
  48. }
  49. befs_debug(sb, "<--- befs_read_iaddr()");
  50. return bh;
  51.       error:
  52. befs_debug(sb, "<--- befs_read_iaddr() ERROR");
  53. return NULL;
  54. }
  55. struct buffer_head *
  56. befs_bread(struct super_block *sb, befs_blocknr_t block)
  57. {
  58. struct buffer_head *bh = NULL;
  59. befs_sb_info *befs_sb = BEFS_SB(sb);
  60. vfs_blocknr_t vfs_block = (vfs_blocknr_t) block;
  61. befs_debug(sb, "---> Enter befs_read() %Lu", block);
  62. if (vfs_block != block) {
  63. befs_error(sb, "Error converting to host blocknr_t. %Lu "
  64.    "is larger than the host can use", block);
  65. goto error;
  66. }
  67. bh = bread(sb->s_dev, vfs_block, befs_sb->block_size);
  68. if (bh == NULL) {
  69. befs_error(sb, "Failed to read block %lu", vfs_block);
  70. goto error;
  71. }
  72. befs_debug(sb, "<--- befs_read()");
  73. return bh;
  74.       error:
  75. befs_debug(sb, "<--- befs_read() ERROR");
  76. return NULL;
  77. }