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
Kirill Smelkov
linux
Commits
13063832
Commit
13063832
authored
May 02, 2007
by
Andi Kleen
Committed by
Andi Kleen
May 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] i386: Drop noisy e820 debugging printks
Signed-off-by:
Andi Kleen
<
ak@suse.de
>
parent
f19cccf3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
13 deletions
+2
-13
arch/i386/kernel/e820.c
arch/i386/kernel/e820.c
+2
-13
No files found.
arch/i386/kernel/e820.c
View file @
13063832
...
...
@@ -393,10 +393,8 @@ int __init sanitize_e820_map(struct e820entry * biosmap, char * pnr_map)
____________________33__
______________________4_
*/
printk
(
"sanitize start
\n
"
);
/* if there's only one memory region, don't bother */
if
(
*
pnr_map
<
2
)
{
printk
(
"sanitize bail 0
\n
"
);
return
-
1
;
}
...
...
@@ -405,7 +403,6 @@ int __init sanitize_e820_map(struct e820entry * biosmap, char * pnr_map)
/* bail out if we find any unreasonable addresses in bios map */
for
(
i
=
0
;
i
<
old_nr
;
i
++
)
if
(
biosmap
[
i
].
addr
+
biosmap
[
i
].
size
<
biosmap
[
i
].
addr
)
{
printk
(
"sanitize bail 1
\n
"
);
return
-
1
;
}
...
...
@@ -501,7 +498,6 @@ int __init sanitize_e820_map(struct e820entry * biosmap, char * pnr_map)
memcpy
(
biosmap
,
new_bios
,
new_nr
*
sizeof
(
struct
e820entry
));
*
pnr_map
=
new_nr
;
printk
(
"sanitize end
\n
"
);
return
0
;
}
...
...
@@ -532,7 +528,6 @@ int __init copy_e820_map(struct e820entry * biosmap, int nr_map)
unsigned
long
long
size
=
biosmap
->
size
;
unsigned
long
long
end
=
start
+
size
;
unsigned
long
type
=
biosmap
->
type
;
printk
(
"copy_e820_map() start: %016Lx size: %016Lx end: %016Lx type: %ld
\n
"
,
start
,
size
,
end
,
type
);
/* Overflow in 64 bits? Ignore the memory map. */
if
(
start
>
end
)
...
...
@@ -543,17 +538,11 @@ int __init copy_e820_map(struct e820entry * biosmap, int nr_map)
* Not right. Fix it up.
*/
if
(
type
==
E820_RAM
)
{
printk
(
"copy_e820_map() type is E820_RAM
\n
"
);
if
(
start
<
0x100000ULL
&&
end
>
0xA0000ULL
)
{
printk
(
"copy_e820_map() lies in range...
\n
"
);
if
(
start
<
0xA0000ULL
)
{
printk
(
"copy_e820_map() start < 0xA0000ULL
\n
"
);
if
(
start
<
0xA0000ULL
)
add_memory_region
(
start
,
0xA0000ULL
-
start
,
type
);
}
if
(
end
<=
0x100000ULL
)
{
printk
(
"copy_e820_map() end <= 0x100000ULL
\n
"
);
if
(
end
<=
0x100000ULL
)
continue
;
}
start
=
0x100000ULL
;
size
=
end
-
start
;
}
...
...
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