Blame view

fs/internal.h 2.86 KB
07f3f05c1   David Howells   [PATCH] BLOCK: Mo...
1
2
3
4
5
6
7
8
9
10
  /* fs/ internal definitions
   *
   * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
   * Written by David Howells (dhowells@redhat.com)
   *
   * 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 the Free Software Foundation; either version
   * 2 of the License, or (at your option) any later version.
   */
99b7db7b8   Nick Piggin   fs: brlock vfsmou...
11
  #include <linux/lglock.h>
5e6d12b2c   Andrew Morton   [PATCH] CONFIG_BL...
12
  struct super_block;
9d412a43c   Al Viro   vfs: split off vf...
13
  struct file_system_type;
a6f76f23d   David Howells   CRED: Make execve...
14
  struct linux_binprm;
3e93cd671   Al Viro   Take fs_struct ha...
15
  struct path;
c71053659   Al Viro   vfs: spread struc...
16
  struct mount;
5e6d12b2c   Andrew Morton   [PATCH] CONFIG_BL...
17

07f3f05c1   David Howells   [PATCH] BLOCK: Mo...
18
19
20
  /*
   * block_dev.c
   */
9361401eb   David Howells   [PATCH] BLOCK: Ma...
21
  #ifdef CONFIG_BLOCK
07f3f05c1   David Howells   [PATCH] BLOCK: Mo...
22
  extern void __init bdev_cache_init(void);
5cee5815d   Jan Kara   vfs: Make sys_syn...
23
  extern int __sync_blockdev(struct block_device *bdev, int wait);
9361401eb   David Howells   [PATCH] BLOCK: Ma...
24
  #else
5e6d12b2c   Andrew Morton   [PATCH] CONFIG_BL...
25
26
27
  static inline void bdev_cache_init(void)
  {
  }
9361401eb   David Howells   [PATCH] BLOCK: Ma...
28

5cee5815d   Jan Kara   vfs: Make sys_syn...
29
30
31
32
  static inline int __sync_blockdev(struct block_device *bdev, int wait)
  {
  	return 0;
  }
9361401eb   David Howells   [PATCH] BLOCK: Ma...
33
  #endif
7b0de42d7   David Howells   [PATCH] BLOCK: Re...
34

07f3f05c1   David Howells   [PATCH] BLOCK: Mo...
35
36
37
38
39
40
  /*
   * char_dev.c
   */
  extern void __init chrdev_init(void);
  
  /*
07f3f05c1   David Howells   [PATCH] BLOCK: Mo...
41
42
43
   * namespace.c
   */
  extern int copy_mount_options(const void __user *, unsigned long *);
eca6f534e   Vegard Nossum   fs: fix overflow ...
44
  extern int copy_mount_string(const void __user *, char **);
6d59e7f58   Al Viro   [PATCH] move a bu...
45

0f60f240d   David Howells   FS: lookup_mnt() ...
46
  extern struct vfsmount *lookup_mnt(struct path *);
19a167af7   Al Viro   Take the completi...
47
  extern int finish_automount(struct vfsmount *, struct path *);
6d59e7f58   Al Viro   [PATCH] move a bu...
48

f03c65993   Al Viro   sanitize vfsmount...
49
50
  extern void mnt_make_longterm(struct vfsmount *);
  extern void mnt_make_shortterm(struct vfsmount *);
4ed5e82fe   Miklos Szeredi   vfs: protect remo...
51
  extern int sb_prepare_remount_readonly(struct super_block *);
f03c65993   Al Viro   sanitize vfsmount...
52

6d59e7f58   Al Viro   [PATCH] move a bu...
53
  extern void __init mnt_init(void);
3e93cd671   Al Viro   Take fs_struct ha...
54

99b7db7b8   Nick Piggin   fs: brlock vfsmou...
55
  DECLARE_BRLOCK(vfsmount_lock);
47cd813f2   Al Viro   Take vfsmount_loc...
56

3e93cd671   Al Viro   Take fs_struct ha...
57
58
59
60
  /*
   * fs_struct.c
   */
  extern void chroot_fs_refs(struct path *, struct path *);
864d7c4c0   npiggin@suse.de   fs: move mark_fil...
61
62
63
64
  
  /*
   * file_table.c
   */
d996b62a8   Nick Piggin   tty: fix fu_list ...
65
66
  extern void file_sb_list_add(struct file *f, struct super_block *sb);
  extern void file_sb_list_del(struct file *f);
864d7c4c0   npiggin@suse.de   fs: move mark_fil...
67
  extern void mark_files_ro(struct super_block *);
e81e3f4dc   Eric Paris   fs: move get_empt...
68
  extern struct file *get_empty_filp(void);
62c6943b4   Al Viro   Trim a bit of cra...
69
70
71
72
73
  
  /*
   * super.c
   */
  extern int do_remount_sb(struct super_block *, int, void *, int);
12ad3ab66   Dave Chinner   superblock: move ...
74
  extern bool grab_super_passive(struct super_block *sb);
9d412a43c   Al Viro   vfs: split off vf...
75
76
  extern struct dentry *mount_fs(struct file_system_type *,
  			       int, const char *, void *);
cf31e70d6   Al Viro   vfs: new helper -...
77
  extern struct super_block *user_get_super(dev_t);
482928d59   Al Viro   Fix f_flags/f_mod...
78
79
80
81
82
83
84
  
  /*
   * open.c
   */
  struct nameidata;
  extern struct file *nameidata_to_filp(struct nameidata *);
  extern void release_open_intent(struct nameidata *);
47c805dc2   Al Viro   switch do_filp_op...
85
86
  struct open_flags {
  	int open_flag;
a218d0fdc   Al Viro   switch open and m...
87
  	umode_t mode;
47c805dc2   Al Viro   switch do_filp_op...
88
89
90
91
92
  	int acc_mode;
  	int intent;
  };
  extern struct file *do_filp_open(int dfd, const char *pathname,
  		const struct open_flags *op, int lookup_flags);
73d049a40   Al Viro   open-style analog...
93
94
  extern struct file *do_file_open_root(struct dentry *, struct vfsmount *,
  		const char *, const struct open_flags *, int lookup_flags);
a8dade34e   Al Viro   unexport invalida...
95

becfd1f37   Aneesh Kumar K.V   vfs: Add open by ...
96
97
  extern long do_handle_open(int mountdirfd,
  			   struct file_handle __user *ufh, int open_flag);
a8dade34e   Al Viro   unexport invalida...
98
99
100
  /*
   * inode.c
   */
55fa6091d   Dave Chinner   fs: move i_sb_lis...
101
  extern spinlock_t inode_sb_list_lock;
a66979aba   Dave Chinner   fs: move i_wb_lis...
102
103
104
105
  /*
   * fs-writeback.c
   */
  extern void inode_wb_list_del(struct inode *inode);
cffbc8aa3   Dave Chinner   fs: Convert nr_in...
106
  extern int get_nr_dirty_inodes(void);
a4cdbd8bf   Al Viro   braino in internal.h
107
  extern void evict_inodes(struct super_block *);
93b270f76   NeilBrown   Fix over-zealous ...
108
  extern int invalidate_inodes(struct super_block *, bool);
a4464dbc0   Al Viro   Make ->d_sb assig...
109
110
111
112
113
  
  /*
   * dcache.c
   */
  extern struct dentry *__d_alloc(struct super_block *, const struct qstr *);