2018-09-05 06:46:30 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2009-04-07 10:01:30 +08:00
|
|
|
/*
|
2021-11-09 10:35:01 +08:00
|
|
|
* NILFS inode file
|
2009-04-07 10:01:30 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
|
|
|
|
*
|
2016-05-24 07:23:09 +08:00
|
|
|
* Written by Amagai Yoshiji.
|
|
|
|
* Revised by Ryusuke Konishi.
|
2009-04-07 10:01:30 +08: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)
|
|
|
|
{
|
|
|
|
void *kaddr = kmap(ibh->b_page);
|
2016-05-24 07:23:25 +08:00
|
|
|
|
2009-04-07 10:01:30 +08:00
|
|
|
return nilfs_palloc_block_get_entry(ifile, ino, ibh, kaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void nilfs_ifile_unmap_inode(struct inode *ifile, ino_t ino,
|
|
|
|
struct buffer_head *ibh)
|
|
|
|
{
|
|
|
|
kunmap(ibh->b_page);
|
|
|
|
}
|
|
|
|
|
|
|
|
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 06:08:05 +08:00
|
|
|
int nilfs_ifile_count_free_inodes(struct inode *, u64 *, u64 *);
|
|
|
|
|
2010-09-05 11:20:59 +08:00
|
|
|
int nilfs_ifile_read(struct super_block *sb, struct nilfs_root *root,
|
|
|
|
size_t inode_size, struct nilfs_inode *raw_inode,
|
|
|
|
struct inode **inodep);
|
2009-11-12 22:56:43 +08:00
|
|
|
|
2009-04-07 10:01:30 +08:00
|
|
|
#endif /* _NILFS_IFILE_H */
|