2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2005-05-04 22:29:35 +02:00
|
|
|
* Copyright (C) International Business Machines Corp., 2000-2001
|
2005-04-17 00:20:36 +02: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 16:55:27 +02:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
2005-04-17 00:20:36 +02:00
|
|
|
* (at your option) any later version.
|
2006-10-02 16:55:27 +02:00
|
|
|
*
|
2005-04-17 00:20:36 +02: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 16:55:27 +02:00
|
|
|
* along with this program; if not, write to the Free Software
|
2005-04-17 00:20:36 +02:00
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#ifndef _H_JFS_INODE
|
|
|
|
#define _H_JFS_INODE
|
|
|
|
|
|
|
|
extern struct inode *ialloc(struct inode *, umode_t);
|
2005-05-04 22:29:35 +02:00
|
|
|
extern int jfs_fsync(struct file *, struct dentry *, int);
|
2006-02-09 16:09:16 +01:00
|
|
|
extern int jfs_ioctl(struct inode *, struct file *,
|
|
|
|
unsigned int, unsigned long);
|
2005-05-04 22:29:35 +02:00
|
|
|
extern void jfs_read_inode(struct inode *);
|
|
|
|
extern int jfs_commit_inode(struct inode *, int);
|
|
|
|
extern int jfs_write_inode(struct inode*, int);
|
|
|
|
extern void jfs_delete_inode(struct inode *);
|
|
|
|
extern void jfs_dirty_inode(struct inode *);
|
|
|
|
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 16:36:20 +02:00
|
|
|
extern void jfs_get_inode_flags(struct jfs_inode_info *);
|
2007-07-17 13:04:29 +02:00
|
|
|
extern struct dentry *jfs_get_dentry(struct super_block *sb, void *vobjp);
|
2006-02-09 16:09:16 +01:00
|
|
|
extern void jfs_set_inode_flags(struct inode *);
|
2006-07-26 21:52:13 +02:00
|
|
|
extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-06-28 13:26:44 +02:00
|
|
|
extern const struct address_space_operations jfs_aops;
|
2007-02-12 09:55:39 +01:00
|
|
|
extern const struct inode_operations jfs_dir_inode_operations;
|
2006-03-28 11:56:42 +02:00
|
|
|
extern const struct file_operations jfs_dir_operations;
|
2007-02-12 09:55:39 +01:00
|
|
|
extern const struct inode_operations jfs_file_inode_operations;
|
2006-03-28 11:56:42 +02:00
|
|
|
extern const struct file_operations jfs_file_operations;
|
2007-02-12 09:55:39 +01:00
|
|
|
extern const struct inode_operations jfs_symlink_inode_operations;
|
2005-05-04 22:29:35 +02:00
|
|
|
extern struct dentry_operations jfs_ci_dentry_operations;
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* _H_JFS_INODE */
|