Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
f52111b1
Commit
f52111b1
authored
May 08, 2008
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] take init_files to fs/file.c
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
f26a3988
Changes
25
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
14 additions
and
45 deletions
+14
-45
arch/alpha/kernel/init_task.c
arch/alpha/kernel/init_task.c
+0
-1
arch/arm/kernel/init_task.c
arch/arm/kernel/init_task.c
+0
-1
arch/avr32/kernel/init_task.c
arch/avr32/kernel/init_task.c
+0
-1
arch/blackfin/kernel/init_task.c
arch/blackfin/kernel/init_task.c
+0
-1
arch/cris/kernel/process.c
arch/cris/kernel/process.c
+0
-1
arch/frv/kernel/init_task.c
arch/frv/kernel/init_task.c
+0
-1
arch/h8300/kernel/init_task.c
arch/h8300/kernel/init_task.c
+0
-1
arch/ia64/kernel/init_task.c
arch/ia64/kernel/init_task.c
+0
-1
arch/m32r/kernel/init_task.c
arch/m32r/kernel/init_task.c
+0
-1
arch/m68k/kernel/process.c
arch/m68k/kernel/process.c
+0
-1
arch/m68knommu/kernel/init_task.c
arch/m68knommu/kernel/init_task.c
+0
-1
arch/mips/kernel/init_task.c
arch/mips/kernel/init_task.c
+0
-1
arch/mn10300/kernel/init_task.c
arch/mn10300/kernel/init_task.c
+0
-1
arch/parisc/kernel/init_task.c
arch/parisc/kernel/init_task.c
+0
-1
arch/powerpc/kernel/init_task.c
arch/powerpc/kernel/init_task.c
+0
-1
arch/s390/kernel/init_task.c
arch/s390/kernel/init_task.c
+0
-1
arch/sh/kernel/init_task.c
arch/sh/kernel/init_task.c
+0
-1
arch/sparc/kernel/init_task.c
arch/sparc/kernel/init_task.c
+0
-1
arch/sparc64/kernel/init_task.c
arch/sparc64/kernel/init_task.c
+0
-1
arch/um/kernel/init_task.c
arch/um/kernel/init_task.c
+0
-1
arch/v850/kernel/init_task.c
arch/v850/kernel/init_task.c
+0
-1
arch/x86/kernel/init_task.c
arch/x86/kernel/init_task.c
+0
-1
arch/xtensa/kernel/init_task.c
arch/xtensa/kernel/init_task.c
+0
-1
fs/file.c
fs/file.c
+13
-0
include/linux/init_task.h
include/linux/init_task.h
+1
-22
No files found.
arch/alpha/kernel/init_task.c
View file @
f52111b1
...
...
@@ -9,7 +9,6 @@
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/arm/kernel/init_task.c
View file @
f52111b1
...
...
@@ -13,7 +13,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/avr32/kernel/init_task.c
View file @
f52111b1
...
...
@@ -14,7 +14,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/blackfin/kernel/init_task.c
View file @
f52111b1
...
...
@@ -34,7 +34,6 @@
#include <linux/fs.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
...
...
arch/cris/kernel/process.c
View file @
f52111b1
...
...
@@ -38,7 +38,6 @@
*/
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/frv/kernel/init_task.c
View file @
f52111b1
...
...
@@ -11,7 +11,6 @@
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/h8300/kernel/init_task.c
View file @
f52111b1
...
...
@@ -13,7 +13,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/ia64/kernel/init_task.c
View file @
f52111b1
...
...
@@ -18,7 +18,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/m32r/kernel/init_task.c
View file @
f52111b1
...
...
@@ -12,7 +12,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/m68k/kernel/process.c
View file @
f52111b1
...
...
@@ -41,7 +41,6 @@
* setup.
*/
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/m68knommu/kernel/init_task.c
View file @
f52111b1
...
...
@@ -13,7 +13,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/mips/kernel/init_task.c
View file @
f52111b1
...
...
@@ -10,7 +10,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/mn10300/kernel/init_task.c
View file @
f52111b1
...
...
@@ -19,7 +19,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/parisc/kernel/init_task.c
View file @
f52111b1
...
...
@@ -35,7 +35,6 @@
#include <asm/pgalloc.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/powerpc/kernel/init_task.c
View file @
f52111b1
...
...
@@ -8,7 +8,6 @@
#include <asm/uaccess.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/s390/kernel/init_task.c
View file @
f52111b1
...
...
@@ -17,7 +17,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/sh/kernel/init_task.c
View file @
f52111b1
...
...
@@ -8,7 +8,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
pt_regs
fake_swapper_regs
;
...
...
arch/sparc/kernel/init_task.c
View file @
f52111b1
...
...
@@ -9,7 +9,6 @@
#include <asm/uaccess.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/sparc64/kernel/init_task.c
View file @
f52111b1
...
...
@@ -10,7 +10,6 @@
#include <asm/processor.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/um/kernel/init_task.c
View file @
f52111b1
...
...
@@ -12,7 +12,6 @@
static
struct
fs_struct
init_fs
=
INIT_FS
;
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
EXPORT_SYMBOL
(
init_mm
);
...
...
arch/v850/kernel/init_task.c
View file @
f52111b1
...
...
@@ -21,7 +21,6 @@
#include <asm/pgtable.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/x86/kernel/init_task.c
View file @
f52111b1
...
...
@@ -11,7 +11,6 @@
#include <asm/desc.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
arch/xtensa/kernel/init_task.c
View file @
f52111b1
...
...
@@ -22,7 +22,6 @@
#include <asm/uaccess.h>
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
...
...
fs/file.c
View file @
f52111b1
...
...
@@ -275,3 +275,16 @@ void __init files_defer_init(void)
for_each_possible_cpu
(
i
)
fdtable_defer_list_init
(
i
);
}
struct
files_struct
init_files
=
{
.
count
=
ATOMIC_INIT
(
1
),
.
fdt
=
&
init_files
.
fdtab
,
.
fdtab
=
{
.
max_fds
=
NR_OPEN_DEFAULT
,
.
fd
=
&
init_files
.
fd_array
[
0
],
.
close_on_exec
=
(
fd_set
*
)
&
init_files
.
close_on_exec_init
,
.
open_fds
=
(
fd_set
*
)
&
init_files
.
open_fds_init
,
.
rcu
=
RCU_HEAD_INIT
,
},
.
file_lock
=
__SPIN_LOCK_UNLOCKED
(
init_task
.
file_lock
),
};
include/linux/init_task.h
View file @
f52111b1
#ifndef _LINUX__INIT_TASK_H
#define _LINUX__INIT_TASK_H
#include <linux/fdtable.h>
#include <linux/rcupdate.h>
#include <linux/irqflags.h>
#include <linux/utsname.h>
...
...
@@ -12,27 +11,7 @@
#include <linux/securebits.h>
#include <net/net_namespace.h>
#define INIT_FDTABLE \
{ \
.max_fds = NR_OPEN_DEFAULT, \
.fd = &init_files.fd_array[0], \
.close_on_exec = (fd_set *)&init_files.close_on_exec_init, \
.open_fds = (fd_set *)&init_files.open_fds_init, \
.rcu = RCU_HEAD_INIT, \
.next = NULL, \
}
#define INIT_FILES \
{ \
.count = ATOMIC_INIT(1), \
.fdt = &init_files.fdtab, \
.fdtab = INIT_FDTABLE, \
.file_lock = __SPIN_LOCK_UNLOCKED(init_task.file_lock), \
.next_fd = 0, \
.close_on_exec_init = { { 0, } }, \
.open_fds_init = { { 0, } }, \
.fd_array = { NULL, } \
}
extern
struct
files_struct
init_files
;
#define INIT_KIOCTX(name, which_mm) \
{ \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment