Blame view

fs/internal.h 2.77 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;
a6f76f23d   David Howells   CRED: Make execve...
13
  struct linux_binprm;
3e93cd671   Al Viro   Take fs_struct ha...
14
  struct path;
5e6d12b2c   Andrew Morton   [PATCH] CONFIG_BL...
15

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

5e6d12b2c   Andrew Morton   [PATCH] CONFIG_BL...
32
33
34
35
  static inline int sb_is_blkdev_sb(struct super_block *sb)
  {
  	return 0;
  }
5cee5815d   Jan Kara   vfs: Make sys_syn...
36
37
38
39
40
  
  static inline int __sync_blockdev(struct block_device *bdev, int wait)
  {
  	return 0;
  }
9361401eb   David Howells   [PATCH] BLOCK: Ma...
41
  #endif
7b0de42d7   David Howells   [PATCH] BLOCK: Re...
42

07f3f05c1   David Howells   [PATCH] BLOCK: Mo...
43
44
45
46
47
48
  /*
   * char_dev.c
   */
  extern void __init chrdev_init(void);
  
  /*
a6f76f23d   David Howells   CRED: Make execve...
49
50
   * exec.c
   */
498052bba   Al Viro   New locking/refco...
51
  extern int check_unsafe_exec(struct linux_binprm *);
a6f76f23d   David Howells   CRED: Make execve...
52
53
  
  /*
07f3f05c1   David Howells   [PATCH] BLOCK: Mo...
54
55
56
   * namespace.c
   */
  extern int copy_mount_options(const void __user *, unsigned long *);
eca6f534e   Vegard Nossum   fs: fix overflow ...
57
  extern int copy_mount_string(const void __user *, char **);
6d59e7f58   Al Viro   [PATCH] move a bu...
58
59
60
  
  extern void free_vfsmnt(struct vfsmount *);
  extern struct vfsmount *alloc_vfsmnt(const char *);
b3e19d924   Nick Piggin   fs: scale mntget/...
61
  extern unsigned int mnt_get_count(struct vfsmount *mnt);
6d59e7f58   Al Viro   [PATCH] move a bu...
62
63
64
65
66
67
  extern struct vfsmount *__lookup_mnt(struct vfsmount *, struct dentry *, int);
  extern void mnt_set_mountpoint(struct vfsmount *, struct dentry *,
  				struct vfsmount *);
  extern void release_mounts(struct list_head *);
  extern void umount_tree(struct vfsmount *, int, struct list_head *);
  extern struct vfsmount *copy_tree(struct vfsmount *, struct dentry *, int);
19a167af7   Al Viro   Take the completi...
68
  extern int finish_automount(struct vfsmount *, struct path *);
6d59e7f58   Al Viro   [PATCH] move a bu...
69

f03c65993   Al Viro   sanitize vfsmount...
70
71
  extern void mnt_make_longterm(struct vfsmount *);
  extern void mnt_make_shortterm(struct vfsmount *);
6d59e7f58   Al Viro   [PATCH] move a bu...
72
  extern void __init mnt_init(void);
3e93cd671   Al Viro   Take fs_struct ha...
73

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

3e93cd671   Al Viro   Take fs_struct ha...
76
77
78
79
  /*
   * fs_struct.c
   */
  extern void chroot_fs_refs(struct path *, struct path *);
864d7c4c0   npiggin@suse.de   fs: move mark_fil...
80
81
82
83
  
  /*
   * file_table.c
   */
d996b62a8   Nick Piggin   tty: fix fu_list ...
84
85
  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...
86
  extern void mark_files_ro(struct super_block *);
e81e3f4dc   Eric Paris   fs: move get_empt...
87
  extern struct file *get_empty_filp(void);
62c6943b4   Al Viro   Trim a bit of cra...
88
89
90
91
92
  
  /*
   * super.c
   */
  extern int do_remount_sb(struct super_block *, int, void *, int);
35cf7ba0b   Al Viro   Bury __put_super_...
93
94
  extern void __put_super(struct super_block *sb);
  extern void put_super(struct super_block *sb);
482928d59   Al Viro   Fix f_flags/f_mod...
95
96
97
98
99
100
101
  
  /*
   * open.c
   */
  struct nameidata;
  extern struct file *nameidata_to_filp(struct nameidata *);
  extern void release_open_intent(struct nameidata *);
a8dade34e   Al Viro   unexport invalida...
102
103
104
105
  
  /*
   * inode.c
   */
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);