2019-05-27 08:55:05 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-04-16 15:20:36 -07:00
|
|
|
/*
|
2005-05-04 15:29:35 -05:00
|
|
|
* Copyright (C) International Business Machines Corp., 2000-2001
|
2005-04-16 15:20:36 -07:00
|
|
|
*/
|
|
|
|
#ifndef _H_JFS_INODE
|
|
|
|
#define _H_JFS_INODE
|
|
|
|
|
2007-10-21 16:42:09 -07:00
|
|
|
struct fid;
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
extern struct inode *ialloc(struct inode *, umode_t);
|
2011-07-16 20:44:56 -04:00
|
|
|
extern int jfs_fsync(struct file *, loff_t, loff_t, int);
|
2008-01-27 16:58:51 -06:00
|
|
|
extern long jfs_ioctl(struct file *, unsigned int, unsigned long);
|
2008-01-27 17:02:02 -06:00
|
|
|
extern long jfs_compat_ioctl(struct file *, unsigned int, unsigned long);
|
2008-02-07 00:15:43 -08:00
|
|
|
extern struct inode *jfs_iget(struct super_block *, unsigned long);
|
2005-05-04 15:29:35 -05:00
|
|
|
extern int jfs_commit_inode(struct inode *, int);
|
2010-03-05 09:21:37 +01:00
|
|
|
extern int jfs_write_inode(struct inode *, struct writeback_control *);
|
2010-06-07 00:28:54 -04:00
|
|
|
extern void jfs_evict_inode(struct inode *);
|
2011-05-27 06:53:02 -04:00
|
|
|
extern void jfs_dirty_inode(struct inode *, int);
|
2005-05-04 15:29:35 -05:00
|
|
|
extern void jfs_truncate(struct inode *);
|
|
|
|
extern void jfs_truncate_nolock(struct inode *, loff_t);
|
|
|
|
extern void jfs_free_zero_link(struct inode *);
|
|
|
|
extern struct dentry *jfs_get_parent(struct dentry *dentry);
|
2007-10-21 16:42:09 -07:00
|
|
|
extern struct dentry *jfs_fh_to_dentry(struct super_block *sb, struct fid *fid,
|
|
|
|
int fh_len, int fh_type);
|
|
|
|
extern struct dentry *jfs_fh_to_parent(struct super_block *sb, struct fid *fid,
|
|
|
|
int fh_len, int fh_type);
|
2006-02-09 09:09:16 -06:00
|
|
|
extern void jfs_set_inode_flags(struct inode *);
|
2006-07-26 14:52:13 -05:00
|
|
|
extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
|
2021-01-21 14:19:43 +01:00
|
|
|
extern int jfs_setattr(struct user_namespace *, struct dentry *, struct iattr *);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2006-06-28 04:26:44 -07:00
|
|
|
extern const struct address_space_operations jfs_aops;
|
2007-02-12 00:55:39 -08:00
|
|
|
extern const struct inode_operations jfs_dir_inode_operations;
|
2006-03-28 01:56:42 -08:00
|
|
|
extern const struct file_operations jfs_dir_operations;
|
2007-02-12 00:55:39 -08:00
|
|
|
extern const struct inode_operations jfs_file_inode_operations;
|
2006-03-28 01:56:42 -08:00
|
|
|
extern const struct file_operations jfs_file_operations;
|
2007-02-12 00:55:39 -08:00
|
|
|
extern const struct inode_operations jfs_symlink_inode_operations;
|
2010-04-16 08:05:50 -05:00
|
|
|
extern const struct inode_operations jfs_fast_symlink_inode_operations;
|
2009-02-20 06:00:49 +00:00
|
|
|
extern const struct dentry_operations jfs_ci_dentry_operations;
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif /* _H_JFS_INODE */
|