ifile.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * ifile.h - NILFS inode file
  3. *
  4. * Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * Written by Amagai Yoshiji.
  17. * Revised by Ryusuke Konishi.
  18. *
  19. */
  20. #ifndef _NILFS_IFILE_H
  21. #define _NILFS_IFILE_H
  22. #include <linux/fs.h>
  23. #include <linux/buffer_head.h>
  24. #include "mdt.h"
  25. #include "alloc.h"
  26. static inline struct nilfs_inode *
  27. nilfs_ifile_map_inode(struct inode *ifile, ino_t ino, struct buffer_head *ibh)
  28. {
  29. void *kaddr = kmap(ibh->b_page);
  30. return nilfs_palloc_block_get_entry(ifile, ino, ibh, kaddr);
  31. }
  32. static inline void nilfs_ifile_unmap_inode(struct inode *ifile, ino_t ino,
  33. struct buffer_head *ibh)
  34. {
  35. kunmap(ibh->b_page);
  36. }
  37. int nilfs_ifile_create_inode(struct inode *, ino_t *, struct buffer_head **);
  38. int nilfs_ifile_delete_inode(struct inode *, ino_t);
  39. int nilfs_ifile_get_inode_block(struct inode *, ino_t, struct buffer_head **);
  40. int nilfs_ifile_count_free_inodes(struct inode *, u64 *, u64 *);
  41. int nilfs_ifile_read(struct super_block *sb, struct nilfs_root *root,
  42. size_t inode_size, struct nilfs_inode *raw_inode,
  43. struct inode **inodep);
  44. #endif /* _NILFS_IFILE_H */