Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Dave Kleikamp | 1868f4a | 2005-05-04 15:29:35 -0500 | [diff] [blame] | 3 | * Copyright (C) International Business Machines Corp., 2000-2001 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ |
| 5 | #ifndef _H_JFS_INODE |
| 6 | #define _H_JFS_INODE |
| 7 | |
Christoph Hellwig | d425de7 | 2007-10-21 16:42:09 -0700 | [diff] [blame] | 8 | struct fid; |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | extern struct inode *ialloc(struct inode *, umode_t); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 11 | extern int jfs_fsync(struct file *, loff_t, loff_t, int); |
Andi Kleen | baab81f | 2008-01-27 16:58:51 -0600 | [diff] [blame] | 12 | extern long jfs_ioctl(struct file *, unsigned int, unsigned long); |
Andi Kleen | ef1fc2f | 2008-01-27 17:02:02 -0600 | [diff] [blame] | 13 | extern long jfs_compat_ioctl(struct file *, unsigned int, unsigned long); |
David Howells | eab1df7 | 2008-02-07 00:15:43 -0800 | [diff] [blame] | 14 | extern struct inode *jfs_iget(struct super_block *, unsigned long); |
Dave Kleikamp | 1868f4a | 2005-05-04 15:29:35 -0500 | [diff] [blame] | 15 | extern int jfs_commit_inode(struct inode *, int); |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 16 | extern int jfs_write_inode(struct inode *, struct writeback_control *); |
Al Viro | 62aff86 | 2010-06-07 00:28:54 -0400 | [diff] [blame] | 17 | extern void jfs_evict_inode(struct inode *); |
Christoph Hellwig | aa38572 | 2011-05-27 06:53:02 -0400 | [diff] [blame] | 18 | extern void jfs_dirty_inode(struct inode *, int); |
Dave Kleikamp | 1868f4a | 2005-05-04 15:29:35 -0500 | [diff] [blame] | 19 | extern void jfs_truncate(struct inode *); |
| 20 | extern void jfs_truncate_nolock(struct inode *, loff_t); |
| 21 | extern void jfs_free_zero_link(struct inode *); |
| 22 | extern struct dentry *jfs_get_parent(struct dentry *dentry); |
Christoph Hellwig | d425de7 | 2007-10-21 16:42:09 -0700 | [diff] [blame] | 23 | extern struct dentry *jfs_fh_to_dentry(struct super_block *sb, struct fid *fid, |
| 24 | int fh_len, int fh_type); |
| 25 | extern struct dentry *jfs_fh_to_parent(struct super_block *sb, struct fid *fid, |
| 26 | int fh_len, int fh_type); |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 27 | extern void jfs_set_inode_flags(struct inode *); |
Dave Kleikamp | 115ff50 | 2006-07-26 14:52:13 -0500 | [diff] [blame] | 28 | extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int); |
Christoph Hellwig | 759bfee | 2010-03-03 09:05:02 -0500 | [diff] [blame] | 29 | extern int jfs_setattr(struct dentry *, struct iattr *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 31 | extern const struct address_space_operations jfs_aops; |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 32 | extern const struct inode_operations jfs_dir_inode_operations; |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 33 | extern const struct file_operations jfs_dir_operations; |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 34 | extern const struct inode_operations jfs_file_inode_operations; |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 35 | extern const struct file_operations jfs_file_operations; |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 36 | extern const struct inode_operations jfs_symlink_inode_operations; |
Dmitry Monakhov | c7f2e1f | 2010-04-16 08:05:50 -0500 | [diff] [blame] | 37 | extern const struct inode_operations jfs_fast_symlink_inode_operations; |
Al Viro | ad28b4e | 2009-02-20 06:00:49 +0000 | [diff] [blame] | 38 | extern const struct dentry_operations jfs_ci_dentry_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #endif /* _H_JFS_INODE */ |