#include "minix.h"
static int add_nondir(struct dentry *dentry, struct inode *inode)
{ … }
static struct dentry *minix_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
{ … }
static int minix_mknod(struct mnt_idmap *idmap, struct inode *dir,
struct dentry *dentry, umode_t mode, dev_t rdev)
{ … }
static int minix_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
struct file *file, umode_t mode)
{ … }
static int minix_create(struct mnt_idmap *idmap, struct inode *dir,
struct dentry *dentry, umode_t mode, bool excl)
{ … }
static int minix_symlink(struct mnt_idmap *idmap, struct inode *dir,
struct dentry *dentry, const char *symname)
{ … }
static int minix_link(struct dentry * old_dentry, struct inode * dir,
struct dentry *dentry)
{ … }
static int minix_mkdir(struct mnt_idmap *idmap, struct inode *dir,
struct dentry *dentry, umode_t mode)
{ … }
static int minix_unlink(struct inode * dir, struct dentry *dentry)
{ … }
static int minix_rmdir(struct inode * dir, struct dentry *dentry)
{ … }
static int minix_rename(struct mnt_idmap *idmap,
struct inode *old_dir, struct dentry *old_dentry,
struct inode *new_dir, struct dentry *new_dentry,
unsigned int flags)
{ … }
const struct inode_operations minix_dir_inode_operations = …;