file.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * file.c
  3.  *
  4.  * Copyright (c) 1999 Al Smith
  5.  *
  6.  * Portions derived from work (c) 1995,1996 Christian Vogelgsang.
  7.  */
  8. #include <linux/efs_fs.h>
  9. int efs_get_block(struct inode *inode, long iblock,
  10.   struct buffer_head *bh_result, int create)
  11. {
  12. int error = -EROFS;
  13. long phys;
  14. if (create)
  15. return error;
  16. if (iblock >= inode->i_blocks) {
  17. #ifdef DEBUG
  18. /*
  19.  * i have no idea why this happens as often as it does
  20.  */
  21. printk(KERN_WARNING "EFS: bmap(): block %d >= %ld (filesize %ld)n",
  22. block,
  23. inode->i_blocks,
  24. inode->i_size);
  25. #endif
  26. return 0;
  27. }
  28. phys = efs_map_block(inode, iblock);
  29. if (phys) {
  30. bh_result->b_dev = inode->i_dev;
  31. bh_result->b_blocknr = phys;
  32. bh_result->b_state |= (1UL << BH_Mapped);
  33. }
  34. return 0;
  35. }
  36. int efs_bmap(struct inode *inode, efs_block_t block) {
  37. if (block < 0) {
  38. printk(KERN_WARNING "EFS: bmap(): block < 0n");
  39. return 0;
  40. }
  41. /* are we about to read past the end of a file ? */
  42. if (!(block < inode->i_blocks)) {
  43. #ifdef DEBUG
  44. /*
  45.  * i have no idea why this happens as often as it does
  46.  */
  47. printk(KERN_WARNING "EFS: bmap(): block %d >= %ld (filesize %ld)n",
  48. block,
  49. inode->i_blocks,
  50. inode->i_size);
  51. #endif
  52. return 0;
  53. }
  54. return efs_map_block(inode, block);
  55. }