blob: 0d06ccfaff0e7cf69935e556643f6176c99d4c4b [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
21extern struct inode *ialloc(struct inode *, umode_t);
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050022extern int jfs_fsync(struct file *, struct dentry *, int);
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060023extern int jfs_ioctl(struct inode *, struct file *,
24 unsigned int, unsigned long);
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050025extern void jfs_read_inode(struct inode *);
26extern int jfs_commit_inode(struct inode *, int);
27extern int jfs_write_inode(struct inode*, int);
28extern void jfs_delete_inode(struct inode *);
29extern void jfs_dirty_inode(struct inode *);
30extern void jfs_truncate(struct inode *);
31extern void jfs_truncate_nolock(struct inode *, loff_t);
32extern void jfs_free_zero_link(struct inode *);
33extern struct dentry *jfs_get_parent(struct dentry *dentry);
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060034extern void jfs_set_inode_flags(struct inode *);
Dave Kleikamp115ff502006-07-26 14:52:13 -050035extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070037extern const struct address_space_operations jfs_aops;
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050038extern struct inode_operations jfs_dir_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080039extern const struct file_operations jfs_dir_operations;
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050040extern struct inode_operations jfs_file_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080041extern const struct file_operations jfs_file_operations;
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050042extern struct inode_operations jfs_symlink_inode_operations;
43extern struct dentry_operations jfs_ci_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#endif /* _H_JFS_INODE */