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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/bad_inode.c
  3.  *
  4.  *  Copyright (C) 1997, Stephen Tweedie
  5.  *
  6.  *  Provide stub functions for unreadable inodes
  7.  */
  8. #include <linux/fs.h>
  9. #include <linux/stat.h>
  10. #include <linux/sched.h>
  11. /*
  12.  * The follow_link operation is special: it must behave as a no-op
  13.  * so that a bad root inode can at least be unmounted. To do this
  14.  * we must dput() the base and return the dentry with a dget().
  15.  */
  16. static int bad_follow_link(struct dentry *dent, struct nameidata *nd)
  17. {
  18. dput(nd->dentry);
  19. nd->dentry = dget(dent);
  20. return 0;
  21. }
  22. static int return_EIO(void)
  23. {
  24. return -EIO;
  25. }
  26. #define EIO_ERROR ((void *) (return_EIO))
  27. static struct file_operations bad_file_ops =
  28. {
  29. llseek: EIO_ERROR,
  30. read: EIO_ERROR,
  31. write: EIO_ERROR,
  32. readdir: EIO_ERROR,
  33. poll: EIO_ERROR,
  34. ioctl: EIO_ERROR,
  35. mmap: EIO_ERROR,
  36. open: EIO_ERROR,
  37. flush: EIO_ERROR,
  38. release: EIO_ERROR,
  39. fsync: EIO_ERROR,
  40. fasync: EIO_ERROR,
  41. lock: EIO_ERROR,
  42. };
  43. struct inode_operations bad_inode_ops =
  44. {
  45. create: EIO_ERROR,
  46. lookup: EIO_ERROR,
  47. link: EIO_ERROR,
  48. unlink: EIO_ERROR,
  49. symlink: EIO_ERROR,
  50. mkdir: EIO_ERROR,
  51. rmdir: EIO_ERROR,
  52. mknod: EIO_ERROR,
  53. rename: EIO_ERROR,
  54. readlink: EIO_ERROR,
  55. follow_link: bad_follow_link,
  56. truncate: EIO_ERROR,
  57. permission: EIO_ERROR,
  58. revalidate: EIO_ERROR,
  59. };
  60. /*
  61.  * When a filesystem is unable to read an inode due to an I/O error in
  62.  * its read_inode() function, it can call make_bad_inode() to return a
  63.  * set of stubs which will return EIO errors as required. 
  64.  *
  65.  * We only need to do limited initialisation: all other fields are
  66.  * preinitialised to zero automatically.
  67.  */
  68.  
  69. /**
  70.  * make_bad_inode - mark an inode bad due to an I/O error
  71.  * @inode: Inode to mark bad
  72.  *
  73.  * When an inode cannot be read due to a media or remote network
  74.  * failure this function makes the inode "bad" and causes I/O operations
  75.  * on it to fail from this point on.
  76.  */
  77.  
  78. void make_bad_inode(struct inode * inode) 
  79. {
  80. inode->i_mode = S_IFREG;
  81. inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  82. inode->i_op = &bad_inode_ops;
  83. inode->i_fop = &bad_file_ops;
  84. }
  85. /*
  86.  * This tests whether an inode has been flagged as bad. The test uses
  87.  * &bad_inode_ops to cover the case of invalidated inodes as well as
  88.  * those created by make_bad_inode() above.
  89.  */
  90.  
  91. /**
  92.  * is_bad_inode - is an inode errored
  93.  * @inode: inode to test
  94.  *
  95.  * Returns true if the inode in question has been marked as bad.
  96.  */
  97.  
  98. int is_bad_inode(struct inode * inode) 
  99. {
  100. return (inode->i_op == &bad_inode_ops);
  101. }