diff options
Diffstat (limited to 'include/linux/fdtable.h')
-rw-r--r-- | include/linux/fdtable.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fdtable.h b/include/linux/fdtable.h index 674e3e226465..5295535b60c6 100644 --- a/include/linux/fdtable.h +++ b/include/linux/fdtable.h | |||
@@ -26,6 +26,7 @@ struct fdtable { | |||
26 | struct file __rcu **fd; /* current fd array */ | 26 | struct file __rcu **fd; /* current fd array */ |
27 | unsigned long *close_on_exec; | 27 | unsigned long *close_on_exec; |
28 | unsigned long *open_fds; | 28 | unsigned long *open_fds; |
29 | unsigned long *full_fds_bits; | ||
29 | struct rcu_head rcu; | 30 | struct rcu_head rcu; |
30 | }; | 31 | }; |
31 | 32 | ||
@@ -59,6 +60,7 @@ struct files_struct { | |||
59 | int next_fd; | 60 | int next_fd; |
60 | unsigned long close_on_exec_init[1]; | 61 | unsigned long close_on_exec_init[1]; |
61 | unsigned long open_fds_init[1]; | 62 | unsigned long open_fds_init[1]; |
63 | unsigned long full_fds_bits_init[1]; | ||
62 | struct file __rcu * fd_array[NR_OPEN_DEFAULT]; | 64 | struct file __rcu * fd_array[NR_OPEN_DEFAULT]; |
63 | }; | 65 | }; |
64 | 66 | ||