Blame view

fs/jfs/jfs_inode.h 2.54 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  /*
1868f4aa5   Dave Kleikamp   JFS: fix sparse w...
2
   *   Copyright (C) International Business Machines Corp., 2000-2001
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
5
   *
   *   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
63f83c9fc   Dave Kleikamp   JFS: White space ...
6
   *   the Free Software Foundation; either version 2 of the License, or
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
   *   (at your option) any later version.
63f83c9fc   Dave Kleikamp   JFS: White space ...
8
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
11
12
13
14
   *   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
63f83c9fc   Dave Kleikamp   JFS: White space ...
15
   *   along with this program;  if not, write to the Free Software
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
19
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
   */
  #ifndef	_H_JFS_INODE
  #define _H_JFS_INODE
d425de704   Christoph Hellwig   jfs: new export ops
20
  struct fid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
  extern struct inode *ialloc(struct inode *, umode_t);
02c24a821   Josef Bacik   fs: push i_mutex ...
22
  extern int jfs_fsync(struct file *, loff_t, loff_t, int);
baab81fa5   Andi Kleen   BKL-removal: Use ...
23
  extern long jfs_ioctl(struct file *, unsigned int, unsigned long);
ef1fc2f01   Andi Kleen   BKL-removal: Impl...
24
  extern long jfs_compat_ioctl(struct file *, unsigned int, unsigned long);
eab1df71a   David Howells   iget: stop JFS fr...
25
  extern struct inode *jfs_iget(struct super_block *, unsigned long);
1868f4aa5   Dave Kleikamp   JFS: fix sparse w...
26
  extern int jfs_commit_inode(struct inode *, int);
a9185b41a   Christoph Hellwig   pass writeback_co...
27
  extern int jfs_write_inode(struct inode *, struct writeback_control *);
62aff86fd   Al Viro   switch jfs to ->e...
28
  extern void jfs_evict_inode(struct inode *);
aa3857295   Christoph Hellwig   fs: pass exact ty...
29
  extern void jfs_dirty_inode(struct inode *, int);
1868f4aa5   Dave Kleikamp   JFS: fix sparse w...
30
31
32
33
  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);
3e2221c73   Dave Kleikamp   Copy i_flags to j...
34
  extern void jfs_get_inode_flags(struct jfs_inode_info *);
d425de704   Christoph Hellwig   jfs: new export ops
35
36
37
38
  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);
fa3241d24   Herbert Poetzl   JFS: ext2 inode a...
39
  extern void jfs_set_inode_flags(struct inode *);
115ff50ba   Dave Kleikamp   JFS: Quota suppor...
40
  extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
759bfee65   Christoph Hellwig   dquot: move dquot...
41
  extern int jfs_setattr(struct dentry *, struct iattr *);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42

f5e54d6e5   Christoph Hellwig   [PATCH] mark addr...
43
  extern const struct address_space_operations jfs_aops;
92e1d5be9   Arjan van de Ven   [PATCH] mark stru...
44
  extern const struct inode_operations jfs_dir_inode_operations;
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
45
  extern const struct file_operations jfs_dir_operations;
92e1d5be9   Arjan van de Ven   [PATCH] mark stru...
46
  extern const struct inode_operations jfs_file_inode_operations;
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
47
  extern const struct file_operations jfs_file_operations;
92e1d5be9   Arjan van de Ven   [PATCH] mark stru...
48
  extern const struct inode_operations jfs_symlink_inode_operations;
c7f2e1f0a   Dmitry Monakhov   jfs: add jfs spec...
49
  extern const struct inode_operations jfs_fast_symlink_inode_operations;
ad28b4ef1   Al Viro   constify dentry_o...
50
  extern const struct dentry_operations jfs_ci_dentry_operations;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
  #endif				/* _H_JFS_INODE */