Blame view

fs/jfs/jfs_inode.h 1.81 KB
1a59d1b8e   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-or-later */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
  /*
1868f4aa5   Dave Kleikamp   JFS: fix sparse w...
3
   *   Copyright (C) International Business Machines Corp., 2000-2001
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
5
6
   */
  #ifndef	_H_JFS_INODE
  #define _H_JFS_INODE
d425de704   Christoph Hellwig   jfs: new export ops
7
  struct fid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
  extern struct inode *ialloc(struct inode *, umode_t);
02c24a821   Josef Bacik   fs: push i_mutex ...
9
  extern int jfs_fsync(struct file *, loff_t, loff_t, int);
baab81fa5   Andi Kleen   BKL-removal: Use ...
10
  extern long jfs_ioctl(struct file *, unsigned int, unsigned long);
ef1fc2f01   Andi Kleen   BKL-removal: Impl...
11
  extern long jfs_compat_ioctl(struct file *, unsigned int, unsigned long);
eab1df71a   David Howells   iget: stop JFS fr...
12
  extern struct inode *jfs_iget(struct super_block *, unsigned long);
1868f4aa5   Dave Kleikamp   JFS: fix sparse w...
13
  extern int jfs_commit_inode(struct inode *, int);
a9185b41a   Christoph Hellwig   pass writeback_co...
14
  extern int jfs_write_inode(struct inode *, struct writeback_control *);
62aff86fd   Al Viro   switch jfs to ->e...
15
  extern void jfs_evict_inode(struct inode *);
aa3857295   Christoph Hellwig   fs: pass exact ty...
16
  extern void jfs_dirty_inode(struct inode *, int);
1868f4aa5   Dave Kleikamp   JFS: fix sparse w...
17
18
19
20
  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);
d425de704   Christoph Hellwig   jfs: new export ops
21
22
23
24
  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...
25
  extern void jfs_set_inode_flags(struct inode *);
115ff50ba   Dave Kleikamp   JFS: Quota suppor...
26
  extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
759bfee65   Christoph Hellwig   dquot: move dquot...
27
  extern int jfs_setattr(struct dentry *, struct iattr *);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28

f5e54d6e5   Christoph Hellwig   [PATCH] mark addr...
29
  extern const struct address_space_operations jfs_aops;
92e1d5be9   Arjan van de Ven   [PATCH] mark stru...
30
  extern const struct inode_operations jfs_dir_inode_operations;
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
31
  extern const struct file_operations jfs_dir_operations;
92e1d5be9   Arjan van de Ven   [PATCH] mark stru...
32
  extern const struct inode_operations jfs_file_inode_operations;
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
33
  extern const struct file_operations jfs_file_operations;
92e1d5be9   Arjan van de Ven   [PATCH] mark stru...
34
  extern const struct inode_operations jfs_symlink_inode_operations;
c7f2e1f0a   Dmitry Monakhov   jfs: add jfs spec...
35
  extern const struct inode_operations jfs_fast_symlink_inode_operations;
ad28b4ef1   Al Viro   constify dentry_o...
36
  extern const struct dentry_operations jfs_ci_dentry_operations;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
  #endif				/* _H_JFS_INODE */