blob: 9271cfe4a1490ca88785a7973ecd22fd88000e73 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Dave Kleikamp1868f4a2005-05-04 15:29:35 -05002 * Copyright (C) International Business Machines Corp., 2000-2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
Dave Kleikamp63f83c92006-10-02 09:55:27 -05006 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * (at your option) any later version.
Dave Kleikamp63f83c92006-10-02 09:55:27 -05008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
Dave Kleikamp63f83c92006-10-02 09:55:27 -050015 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18#ifndef _H_JFS_INODE
19#define _H_JFS_INODE
20
Christoph Hellwigd425de72007-10-21 16:42:09 -070021struct fid;
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023extern struct inode *ialloc(struct inode *, umode_t);
Josef Bacik02c24a82011-07-16 20:44:56 -040024extern int jfs_fsync(struct file *, loff_t, loff_t, int);
Andi Kleenbaab81f2008-01-27 16:58:51 -060025extern long jfs_ioctl(struct file *, unsigned int, unsigned long);
Andi Kleenef1fc2f2008-01-27 17:02:02 -060026extern long jfs_compat_ioctl(struct file *, unsigned int, unsigned long);
David Howellseab1df72008-02-07 00:15:43 -080027extern struct inode *jfs_iget(struct super_block *, unsigned long);
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050028extern int jfs_commit_inode(struct inode *, int);
Christoph Hellwiga9185b42010-03-05 09:21:37 +010029extern int jfs_write_inode(struct inode *, struct writeback_control *);
Al Viro62aff862010-06-07 00:28:54 -040030extern void jfs_evict_inode(struct inode *);
Christoph Hellwigaa385722011-05-27 06:53:02 -040031extern void jfs_dirty_inode(struct inode *, int);
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050032extern void jfs_truncate(struct inode *);
33extern void jfs_truncate_nolock(struct inode *, loff_t);
34extern void jfs_free_zero_link(struct inode *);
35extern struct dentry *jfs_get_parent(struct dentry *dentry);
Dave Kleikamp3e2221c2007-04-25 09:36:20 -050036extern void jfs_get_inode_flags(struct jfs_inode_info *);
Christoph Hellwigd425de72007-10-21 16:42:09 -070037extern struct dentry *jfs_fh_to_dentry(struct super_block *sb, struct fid *fid,
38 int fh_len, int fh_type);
39extern struct dentry *jfs_fh_to_parent(struct super_block *sb, struct fid *fid,
40 int fh_len, int fh_type);
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060041extern void jfs_set_inode_flags(struct inode *);
Dave Kleikamp115ff502006-07-26 14:52:13 -050042extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
Christoph Hellwig759bfee2010-03-03 09:05:02 -050043extern int jfs_setattr(struct dentry *, struct iattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070045extern const struct address_space_operations jfs_aops;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080046extern const struct inode_operations jfs_dir_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080047extern const struct file_operations jfs_dir_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080048extern const struct inode_operations jfs_file_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080049extern const struct file_operations jfs_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080050extern const struct inode_operations jfs_symlink_inode_operations;
Dmitry Monakhovc7f2e1f2010-04-16 08:05:50 -050051extern const struct inode_operations jfs_fast_symlink_inode_operations;
Al Viroad28b4e2009-02-20 06:00:49 +000052extern const struct dentry_operations jfs_ci_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#endif /* _H_JFS_INODE */