2018-09-05 01:46:30 +03:00
/* SPDX-License-Identifier: GPL-2.0+ */
2009-04-07 06:01:30 +04:00
/*
2021-11-09 05:35:01 +03:00
* NILFS inode file
2009-04-07 06:01:30 +04:00
*
* Copyright ( C ) 2006 - 2008 Nippon Telegraph and Telephone Corporation .
*
2016-05-24 02:23:09 +03:00
* Written by Amagai Yoshiji .
* Revised by Ryusuke Konishi .
2009-04-07 06:01:30 +04:00
*
*/
# ifndef _NILFS_IFILE_H
# define _NILFS_IFILE_H
# include <linux/fs.h>
# include <linux/buffer_head.h>
# include "mdt.h"
# include "alloc.h"
static inline struct nilfs_inode *
nilfs_ifile_map_inode ( struct inode * ifile , ino_t ino , struct buffer_head * ibh )
{
2024-01-22 17:01:57 +03:00
void * kaddr = kmap_local_page ( ibh - > b_page ) ;
2016-05-24 02:23:25 +03:00
2009-04-07 06:01:30 +04:00
return nilfs_palloc_block_get_entry ( ifile , ino , ibh , kaddr ) ;
}
2024-01-22 17:01:57 +03:00
static inline void nilfs_ifile_unmap_inode ( struct nilfs_inode * raw_inode )
2009-04-07 06:01:30 +04:00
{
2024-01-22 17:01:57 +03:00
kunmap_local ( raw_inode ) ;
2009-04-07 06:01:30 +04:00
}
int nilfs_ifile_create_inode ( struct inode * , ino_t * , struct buffer_head * * ) ;
int nilfs_ifile_delete_inode ( struct inode * , ino_t ) ;
int nilfs_ifile_get_inode_block ( struct inode * , ino_t , struct buffer_head * * ) ;
2013-07-04 02:08:05 +04:00
int nilfs_ifile_count_free_inodes ( struct inode * , u64 * , u64 * ) ;
2010-09-05 07:20:59 +04:00
int nilfs_ifile_read ( struct super_block * sb , struct nilfs_root * root ,
2024-01-22 17:02:00 +03:00
__u64 cno , size_t inode_size ) ;
2009-11-12 17:56:43 +03:00
2009-04-07 06:01:30 +04:00
# endif /* _NILFS_IFILE_H */