Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/file_table.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) |
| 6 | */ |
| 7 | |
| 8 | #include <linux/string.h> |
| 9 | #include <linux/slab.h> |
| 10 | #include <linux/file.h> |
Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 11 | #include <linux/fdtable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/init.h> |
| 13 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/fs.h> |
| 15 | #include <linux/security.h> |
| 16 | #include <linux/eventpoll.h> |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 17 | #include <linux/rcupdate.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/mount.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 19 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/cdev.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 21 | #include <linux/fsnotify.h> |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 22 | #include <linux/sysctl.h> |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 23 | #include <linux/lglock.h> |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 24 | #include <linux/percpu_counter.h> |
Nick Piggin | 6416ccb | 2010-08-18 04:37:38 +1000 | [diff] [blame] | 25 | #include <linux/percpu.h> |
Al Viro | 0552f87 | 2009-12-16 04:53:03 -0500 | [diff] [blame] | 26 | #include <linux/ima.h> |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 27 | |
Arun Sharma | 6006349 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 28 | #include <linux/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 30 | #include "internal.h" |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | /* sysctl tunables... */ |
| 33 | struct files_stat_struct files_stat = { |
| 34 | .max_files = NR_FILE |
| 35 | }; |
| 36 | |
Eric Dumazet | b6b3fde | 2008-12-10 09:35:45 -0800 | [diff] [blame] | 37 | /* SLAB cache for file structures */ |
| 38 | static struct kmem_cache *filp_cachep __read_mostly; |
| 39 | |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 40 | static struct percpu_counter nr_files __cacheline_aligned_in_smp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 42 | static inline void file_free_rcu(struct rcu_head *head) |
| 43 | { |
David Howells | d76b0d9 | 2008-11-14 10:39:25 +1100 | [diff] [blame] | 44 | struct file *f = container_of(head, struct file, f_u.fu_rcuhead); |
| 45 | |
| 46 | put_cred(f->f_cred); |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 47 | kmem_cache_free(filp_cachep, f); |
| 48 | } |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | static inline void file_free(struct file *f) |
| 51 | { |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 52 | percpu_counter_dec(&nr_files); |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 53 | file_check_state(f); |
Eric Dumazet | 2f51201 | 2005-10-30 15:02:16 -0800 | [diff] [blame] | 54 | call_rcu(&f->f_u.fu_rcuhead, file_free_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 57 | /* |
| 58 | * Return the total number of open files in the system |
| 59 | */ |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 60 | static long get_nr_files(void) |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 61 | { |
| 62 | return percpu_counter_read_positive(&nr_files); |
| 63 | } |
| 64 | |
| 65 | /* |
| 66 | * Return the maximum number of open files in the system |
| 67 | */ |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 68 | unsigned long get_max_files(void) |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 69 | { |
| 70 | return files_stat.max_files; |
| 71 | } |
| 72 | EXPORT_SYMBOL_GPL(get_max_files); |
| 73 | |
| 74 | /* |
| 75 | * Handle nr_files sysctl |
| 76 | */ |
| 77 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS) |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 78 | int proc_nr_files(ctl_table *table, int write, |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 79 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 80 | { |
| 81 | files_stat.nr_files = get_nr_files(); |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 82 | return proc_doulongvec_minmax(table, write, buffer, lenp, ppos); |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 83 | } |
| 84 | #else |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 85 | int proc_nr_files(ctl_table *table, int write, |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 86 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 87 | { |
| 88 | return -ENOSYS; |
| 89 | } |
| 90 | #endif |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* Find an unused file structure and return a pointer to it. |
| 93 | * Returns NULL, if there are no more free file structures or |
| 94 | * we run out of memory. |
Dave Hansen | 430e285 | 2008-02-15 14:37:26 -0800 | [diff] [blame] | 95 | * |
| 96 | * Be very careful using this. You are responsible for |
| 97 | * getting write access to any mount that you might assign |
| 98 | * to this filp, if it is opened for write. If this is not |
| 99 | * done, you will imbalance int the mount's writer count |
| 100 | * and a warning at __fput() time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | */ |
| 102 | struct file *get_empty_filp(void) |
| 103 | { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 104 | const struct cred *cred = current_cred(); |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 105 | static long old_max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | struct file * f; |
| 107 | |
| 108 | /* |
| 109 | * Privileged users can go above max_files |
| 110 | */ |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 111 | if (get_nr_files() >= files_stat.max_files && !capable(CAP_SYS_ADMIN)) { |
| 112 | /* |
| 113 | * percpu_counters are inaccurate. Do an expensive check before |
| 114 | * we go and fail. |
| 115 | */ |
Peter Zijlstra | 52d9f3b | 2007-10-16 23:25:44 -0700 | [diff] [blame] | 116 | if (percpu_counter_sum_positive(&nr_files) >= files_stat.max_files) |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 117 | goto over; |
| 118 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
Denis Cheng | 4975e45 | 2007-10-16 23:26:19 -0700 | [diff] [blame] | 120 | f = kmem_cache_zalloc(filp_cachep, GFP_KERNEL); |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 121 | if (f == NULL) |
| 122 | goto fail; |
| 123 | |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 124 | percpu_counter_inc(&nr_files); |
Tetsuo Handa | 78d2978 | 2011-02-04 18:13:24 +0000 | [diff] [blame] | 125 | f->f_cred = get_cred(cred); |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 126 | if (security_file_alloc(f)) |
| 127 | goto fail_sec; |
| 128 | |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 129 | atomic_long_set(&f->f_count, 1); |
Benjamin LaHaise | 5a6b795 | 2006-03-23 03:01:03 -0800 | [diff] [blame] | 130 | rwlock_init(&f->f_owner.lock); |
Jonathan Corbet | 6849991 | 2009-02-06 13:52:43 -0700 | [diff] [blame] | 131 | spin_lock_init(&f->f_lock); |
Benjamin LaHaise | 5a6b795 | 2006-03-23 03:01:03 -0800 | [diff] [blame] | 132 | eventpoll_init_file(f); |
| 133 | /* f->f_version: 0 */ |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 134 | return f; |
| 135 | |
| 136 | over: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /* Ran out of filps - report that */ |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 138 | if (get_nr_files() > old_max) { |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 139 | pr_info("VFS: file-max limit %lu reached\n", get_max_files()); |
Dipankar Sarma | 529bf6b | 2006-03-07 21:55:35 -0800 | [diff] [blame] | 140 | old_max = get_nr_files(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
Kirill Korotaev | af4d2ec | 2005-06-23 00:09:50 -0700 | [diff] [blame] | 142 | goto fail; |
| 143 | |
| 144 | fail_sec: |
| 145 | file_free(f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | fail: |
| 147 | return NULL; |
| 148 | } |
| 149 | |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 150 | /** |
| 151 | * alloc_file - allocate and initialize a 'struct file' |
| 152 | * @mnt: the vfsmount on which the file will reside |
| 153 | * @dentry: the dentry representing the new file |
| 154 | * @mode: the mode with which the new file will be opened |
| 155 | * @fop: the 'struct file_operations' for the new file |
| 156 | * |
| 157 | * Use this instead of get_empty_filp() to get a new |
| 158 | * 'struct file'. Do so because of the same initialization |
| 159 | * pitfalls reasons listed for init_file(). This is a |
| 160 | * preferred interface to using init_file(). |
| 161 | * |
| 162 | * If all the callers of init_file() are eliminated, its |
| 163 | * code should be moved into this function. |
| 164 | */ |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 165 | struct file *alloc_file(struct path *path, fmode_t mode, |
| 166 | const struct file_operations *fop) |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 167 | { |
| 168 | struct file *file; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 169 | |
| 170 | file = get_empty_filp(); |
| 171 | if (!file) |
| 172 | return NULL; |
| 173 | |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 174 | file->f_path = *path; |
| 175 | file->f_mapping = path->dentry->d_inode->i_mapping; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 176 | file->f_mode = mode; |
| 177 | file->f_op = fop; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 178 | |
| 179 | /* |
| 180 | * These mounts don't really matter in practice |
| 181 | * for r/o bind mounts. They aren't userspace- |
| 182 | * visible. We do this for consistency, and so |
| 183 | * that we can do debugging checks at __fput() |
| 184 | */ |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 185 | if ((mode & FMODE_WRITE) && !special_file(path->dentry->d_inode->i_mode)) { |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 186 | file_take_write(file); |
Roland Dreier | 385e3ed | 2009-12-16 12:48:44 -0800 | [diff] [blame] | 187 | WARN_ON(mnt_clone_write(path->mnt)); |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 188 | } |
Mimi Zohar | 890275b | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 189 | if ((mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) |
| 190 | i_readcount_inc(path->dentry->d_inode); |
Al Viro | 3d1e463 | 2009-08-08 23:56:29 +0400 | [diff] [blame] | 191 | return file; |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 192 | } |
Roland Dreier | 73efc46 | 2009-12-16 12:43:11 -0800 | [diff] [blame] | 193 | EXPORT_SYMBOL(alloc_file); |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 194 | |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 195 | /** |
| 196 | * drop_file_write_access - give up ability to write to a file |
| 197 | * @file: the file to which we will stop writing |
| 198 | * |
| 199 | * This is a central place which will give up the ability |
| 200 | * to write to @file, along with access to write through |
| 201 | * its vfsmount. |
| 202 | */ |
Al Viro | b57ce96 | 2012-02-12 02:38:16 -0500 | [diff] [blame] | 203 | static void drop_file_write_access(struct file *file) |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 204 | { |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 205 | struct vfsmount *mnt = file->f_path.mnt; |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 206 | struct dentry *dentry = file->f_path.dentry; |
| 207 | struct inode *inode = dentry->d_inode; |
| 208 | |
| 209 | put_write_access(inode); |
Dave Hansen | ad775f5 | 2008-02-15 14:38:01 -0800 | [diff] [blame] | 210 | |
| 211 | if (special_file(inode->i_mode)) |
| 212 | return; |
| 213 | if (file_check_writeable(file) != 0) |
| 214 | return; |
| 215 | mnt_drop_write(mnt); |
| 216 | file_release_write(file); |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 217 | } |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 218 | |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 219 | /* the real guts of fput() - releasing the last reference to file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | */ |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 221 | static void __fput(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | { |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 223 | struct dentry *dentry = file->f_path.dentry; |
| 224 | struct vfsmount *mnt = file->f_path.mnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | struct inode *inode = dentry->d_inode; |
| 226 | |
| 227 | might_sleep(); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 228 | |
| 229 | fsnotify_close(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | /* |
| 231 | * The function eventpoll_release() should be the first called |
| 232 | * in the file cleanup chain. |
| 233 | */ |
| 234 | eventpoll_release(file); |
Jeff Layton | ca84f62 | 2014-02-03 12:13:08 -0500 | [diff] [blame] | 235 | locks_remove_file(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Al Viro | 233e70f | 2008-10-31 23:28:30 +0000 | [diff] [blame] | 237 | if (unlikely(file->f_flags & FASYNC)) { |
| 238 | if (file->f_op && file->f_op->fasync) |
| 239 | file->f_op->fasync(-1, file, 0); |
| 240 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | if (file->f_op && file->f_op->release) |
| 242 | file->f_op->release(inode, file); |
| 243 | security_file_free(file); |
Al Viro | 89068c5 | 2010-02-07 03:07:29 -0500 | [diff] [blame] | 244 | ima_file_free(file); |
Miklos Szeredi | 60ed8cf | 2011-03-16 18:17:54 +0100 | [diff] [blame] | 245 | if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL && |
| 246 | !(file->f_mode & FMODE_PATH))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | cdev_put(inode->i_cdev); |
Miklos Szeredi | 60ed8cf | 2011-03-16 18:17:54 +0100 | [diff] [blame] | 248 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | fops_put(file->f_op); |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 250 | put_pid(file->f_owner.pid); |
Mimi Zohar | 890275b | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 251 | if ((file->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) |
| 252 | i_readcount_dec(inode); |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 253 | if (file->f_mode & FMODE_WRITE) |
| 254 | drop_file_write_access(file); |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 255 | file->f_path.dentry = NULL; |
| 256 | file->f_path.mnt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | file_free(file); |
| 258 | dput(dentry); |
| 259 | mntput(mnt); |
| 260 | } |
| 261 | |
Al Viro | d7065da | 2010-05-26 15:13:55 -0400 | [diff] [blame] | 262 | void fput(struct file *file) |
| 263 | { |
| 264 | if (atomic_long_dec_and_test(&file->f_count)) |
| 265 | __fput(file); |
| 266 | } |
| 267 | |
| 268 | EXPORT_SYMBOL(fput); |
| 269 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | void put_filp(struct file *file) |
| 271 | { |
Al Viro | 516e0cc | 2008-07-26 00:39:17 -0400 | [diff] [blame] | 272 | if (atomic_long_dec_and_test(&file->f_count)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | security_file_free(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | file_free(file); |
| 275 | } |
| 276 | } |
| 277 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | void __init files_init(unsigned long mempages) |
| 279 | { |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 280 | unsigned long n; |
Eric Dumazet | b6b3fde | 2008-12-10 09:35:45 -0800 | [diff] [blame] | 281 | |
| 282 | filp_cachep = kmem_cache_create("filp", sizeof(struct file), 0, |
| 283 | SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL); |
| 284 | |
| 285 | /* |
| 286 | * One file with associated inode and dcache is very roughly 1K. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | * Per default don't use more than 10% of our memory for files. |
| 288 | */ |
| 289 | |
| 290 | n = (mempages * (PAGE_SIZE / 1024)) / 10; |
Eric Dumazet | 518de9b | 2010-10-26 14:22:44 -0700 | [diff] [blame] | 291 | files_stat.max_files = max_t(unsigned long, n, NR_FILE); |
Dipankar Sarma | ab2af1f | 2005-09-09 13:04:13 -0700 | [diff] [blame] | 292 | files_defer_init(); |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 293 | percpu_counter_init(&nr_files, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |