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
1e2ebeb4
Commit
1e2ebeb4
authored
Aug 27, 2002
by
Manik Raina
Committed by
Linus Torvalds
Aug 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] [TRIVIAL PATCH] { 2.5.30 } : removing redundant variable frominit_main.c
parent
ee860648
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
init/main.c
init/main.c
+2
-5
No files found.
init/main.c
View file @
1e2ebeb4
...
@@ -387,7 +387,6 @@ static void rest_init(void)
...
@@ -387,7 +387,6 @@ static void rest_init(void)
asmlinkage
void
__init
start_kernel
(
void
)
asmlinkage
void
__init
start_kernel
(
void
)
{
{
char
*
command_line
;
char
*
command_line
;
unsigned
long
mempages
;
extern
char
saved_command_line
[];
extern
char
saved_command_line
[];
/*
/*
* Interrupts are still disabled. Do necessary setups, then
* Interrupts are still disabled. Do necessary setups, then
...
@@ -439,13 +438,11 @@ asmlinkage void __init start_kernel(void)
...
@@ -439,13 +438,11 @@ asmlinkage void __init start_kernel(void)
kmem_cache_sizes_init
();
kmem_cache_sizes_init
();
pgtable_cache_init
();
pgtable_cache_init
();
pte_chain_init
();
pte_chain_init
();
mempages
=
num_physpages
;
fork_init
(
num_physpages
);
fork_init
(
mempages
);
proc_caches_init
();
proc_caches_init
();
security_scaffolding_startup
();
security_scaffolding_startup
();
buffer_init
();
buffer_init
();
vfs_caches_init
(
mem
pages
);
vfs_caches_init
(
num_phys
pages
);
radix_tree_init
();
radix_tree_init
();
signals_init
();
signals_init
();
#ifdef CONFIG_PROC_FS
#ifdef CONFIG_PROC_FS
...
...
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