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
5909af06
Commit
5909af06
authored
Dec 20, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of silly printk's in recent mtrr driver changes.
parent
2ce208e5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
16 deletions
+4
-16
arch/i386/kernel/cpu/mtrr/if.c
arch/i386/kernel/cpu/mtrr/if.c
+4
-16
No files found.
arch/i386/kernel/cpu/mtrr/if.c
View file @
5909af06
...
@@ -27,21 +27,15 @@ mtrr_file_add(unsigned long base, unsigned long size,
...
@@ -27,21 +27,15 @@ mtrr_file_add(unsigned long base, unsigned long size,
max
=
num_var_ranges
;
max
=
num_var_ranges
;
if
(
fcount
==
NULL
)
{
if
(
fcount
==
NULL
)
{
if
((
fcount
=
fcount
=
kmalloc
(
max
*
sizeof
*
fcount
,
GFP_KERNEL
);
kmalloc
(
max
*
sizeof
*
fcount
,
GFP_KERNEL
))
==
NULL
)
{
if
(
!
fcount
)
printk
(
"mtrr: could not allocate
\n
"
);
return
-
ENOMEM
;
return
-
ENOMEM
;
}
memset
(
fcount
,
0
,
max
*
sizeof
*
fcount
);
memset
(
fcount
,
0
,
max
*
sizeof
*
fcount
);
FILE_FCOUNT
(
file
)
=
fcount
;
FILE_FCOUNT
(
file
)
=
fcount
;
}
}
if
(
!
page
)
{
if
(
!
page
)
{
if
((
base
&
(
PAGE_SIZE
-
1
))
||
(
size
&
(
PAGE_SIZE
-
1
)))
{
if
((
base
&
(
PAGE_SIZE
-
1
))
||
(
size
&
(
PAGE_SIZE
-
1
)))
printk
(
"mtrr: size and base must be multiples of 4 kiB
\n
"
);
printk
(
"mtrr: size: 0x%lx base: 0x%lx
\n
"
,
size
,
base
);
return
-
EINVAL
;
return
-
EINVAL
;
}
base
>>=
PAGE_SHIFT
;
base
>>=
PAGE_SHIFT
;
size
>>=
PAGE_SHIFT
;
size
>>=
PAGE_SHIFT
;
}
}
...
@@ -59,12 +53,8 @@ mtrr_file_del(unsigned long base, unsigned long size,
...
@@ -59,12 +53,8 @@ mtrr_file_del(unsigned long base, unsigned long size,
unsigned
int
*
fcount
=
file
->
private_data
;
unsigned
int
*
fcount
=
file
->
private_data
;
if
(
!
page
)
{
if
(
!
page
)
{
if
((
base
&
(
PAGE_SIZE
-
1
))
||
(
size
&
(
PAGE_SIZE
-
1
)))
{
if
((
base
&
(
PAGE_SIZE
-
1
))
||
(
size
&
(
PAGE_SIZE
-
1
)))
printk
(
"mtrr: size and base must be multiples of 4 kiB
\n
"
);
printk
(
"mtrr: size: 0x%lx base: 0x%lx
\n
"
,
size
,
base
);
return
-
EINVAL
;
return
-
EINVAL
;
}
base
>>=
PAGE_SHIFT
;
base
>>=
PAGE_SHIFT
;
size
>>=
PAGE_SHIFT
;
size
>>=
PAGE_SHIFT
;
}
}
...
@@ -161,8 +151,6 @@ mtrr_ioctl(struct inode *inode, struct file *file,
...
@@ -161,8 +151,6 @@ mtrr_ioctl(struct inode *inode, struct file *file,
struct
mtrr_sentry
sentry
;
struct
mtrr_sentry
sentry
;
struct
mtrr_gentry
gentry
;
struct
mtrr_gentry
gentry
;
printk
(
"mtrr_ioctl %d
\n
"
,
cmd
);
switch
(
cmd
)
{
switch
(
cmd
)
{
default:
default:
return
-
ENOIOCTLCMD
;
return
-
ENOIOCTLCMD
;
...
...
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