2005-04-17 02:20:36 +04:00
|
|
|
/*
|
2005-05-05 00:29:35 +04:00
|
|
|
* Copyright (C) International Business Machines Corp., 2000-2001
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2006-10-02 18:55:27 +04:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
2005-04-17 02:20:36 +04:00
|
|
|
* (at your option) any later version.
|
2006-10-02 18:55:27 +04:00
|
|
|
*
|
2005-04-17 02:20:36 +04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
|
|
|
* the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2006-10-02 18:55:27 +04:00
|
|
|
* along with this program; if not, write to the Free Software
|
2005-04-17 02:20:36 +04:00
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#ifndef _H_JFS_INODE
|
|
|
|
#define _H_JFS_INODE
|
|
|
|
|
2007-10-22 03:42:09 +04:00
|
|
|
struct fid;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
extern struct inode *ialloc(struct inode *, umode_t);
|
2011-07-17 04:44:56 +04:00
|
|
|
extern int jfs_fsync(struct file *, loff_t, loff_t, int);
|
2008-01-28 01:58:51 +03:00
|
|
|
extern long jfs_ioctl(struct file *, unsigned int, unsigned long);
|
2008-01-28 02:02:02 +03:00
|
|
|
extern long jfs_compat_ioctl(struct file *, unsigned int, unsigned long);
|
2008-02-07 11:15:43 +03:00
|
|
|
extern struct inode *jfs_iget(struct super_block *, unsigned long);
|
2005-05-05 00:29:35 +04:00
|
|
|
extern int jfs_commit_inode(struct inode *, int);
|
2010-03-05 11:21:37 +03:00
|
|
|
extern int jfs_write_inode(struct inode *, struct writeback_control *);
|
2010-06-07 08:28:54 +04:00
|
|
|
extern void jfs_evict_inode(struct inode *);
|
2011-05-27 14:53:02 +04:00
|
|
|
extern void jfs_dirty_inode(struct inode *, int);
|
2005-05-05 00:29:35 +04: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-04-25 18:36:20 +04:00
|
|
|
extern void jfs_get_inode_flags(struct jfs_inode_info *);
|
2007-10-22 03:42:09 +04: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 18:09:16 +03:00
|
|
|
extern void jfs_set_inode_flags(struct inode *);
|
2006-07-26 23:52:13 +04:00
|
|
|
extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
|
2010-03-03 17:05:02 +03:00
|
|
|
extern int jfs_setattr(struct dentry *, struct iattr *);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-06-28 15:26:44 +04:00
|
|
|
extern const struct address_space_operations jfs_aops;
|
2007-02-12 11:55:39 +03:00
|
|
|
extern const struct inode_operations jfs_dir_inode_operations;
|
2006-03-28 13:56:42 +04:00
|
|
|
extern const struct file_operations jfs_dir_operations;
|
2007-02-12 11:55:39 +03:00
|
|
|
extern const struct inode_operations jfs_file_inode_operations;
|
2006-03-28 13:56:42 +04:00
|
|
|
extern const struct file_operations jfs_file_operations;
|
2007-02-12 11:55:39 +03:00
|
|
|
extern const struct inode_operations jfs_symlink_inode_operations;
|
2010-04-16 17:05:50 +04:00
|
|
|
extern const struct inode_operations jfs_fast_symlink_inode_operations;
|
2009-02-20 09:00:49 +03:00
|
|
|
extern const struct dentry_operations jfs_ci_dentry_operations;
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif /* _H_JFS_INODE */
|