diff options
Diffstat (limited to 'fs/file.c')
-rw-r--r-- | fs/file.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -275,3 +275,16 @@ void __init files_defer_init(void) | |||
275 | for_each_possible_cpu(i) | 275 | for_each_possible_cpu(i) |
276 | fdtable_defer_list_init(i); | 276 | fdtable_defer_list_init(i); |
277 | } | 277 | } |
278 | |||
279 | struct files_struct init_files = { | ||
280 | .count = ATOMIC_INIT(1), | ||
281 | .fdt = &init_files.fdtab, | ||
282 | .fdtab = { | ||
283 | .max_fds = NR_OPEN_DEFAULT, | ||
284 | .fd = &init_files.fd_array[0], | ||
285 | .close_on_exec = (fd_set *)&init_files.close_on_exec_init, | ||
286 | .open_fds = (fd_set *)&init_files.open_fds_init, | ||
287 | .rcu = RCU_HEAD_INIT, | ||
288 | }, | ||
289 | .file_lock = __SPIN_LOCK_UNLOCKED(init_task.file_lock), | ||
290 | }; | ||