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
aaedd944
Commit
aaedd944
authored
Feb 01, 2006
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] cmm NULL noise removal, __user annotations
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
6d57348d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
arch/s390/mm/cmm.c
arch/s390/mm/cmm.c
+5
-5
No files found.
arch/s390/mm/cmm.c
View file @
aaedd944
...
...
@@ -42,8 +42,8 @@ static volatile long cmm_timed_pages_target = 0;
static
long
cmm_timeout_pages
=
0
;
static
long
cmm_timeout_seconds
=
0
;
static
struct
cmm_page_array
*
cmm_page_list
=
0
;
static
struct
cmm_page_array
*
cmm_timed_page_list
=
0
;
static
struct
cmm_page_array
*
cmm_page_list
=
NULL
;
static
struct
cmm_page_array
*
cmm_timed_page_list
=
NULL
;
static
unsigned
long
cmm_thread_active
=
0
;
static
struct
work_struct
cmm_thread_starter
;
...
...
@@ -259,7 +259,7 @@ static struct ctl_table cmm_table[];
static
int
cmm_pages_handler
(
ctl_table
*
ctl
,
int
write
,
struct
file
*
filp
,
void
*
buffer
,
size_t
*
lenp
,
loff_t
*
ppos
)
void
__user
*
buffer
,
size_t
*
lenp
,
loff_t
*
ppos
)
{
char
buf
[
16
],
*
p
;
long
pages
;
...
...
@@ -300,7 +300,7 @@ cmm_pages_handler(ctl_table *ctl, int write, struct file *filp,
static
int
cmm_timeout_handler
(
ctl_table
*
ctl
,
int
write
,
struct
file
*
filp
,
void
*
buffer
,
size_t
*
lenp
,
loff_t
*
ppos
)
void
__user
*
buffer
,
size_t
*
lenp
,
loff_t
*
ppos
)
{
char
buf
[
64
],
*
p
;
long
pages
,
seconds
;
...
...
@@ -419,7 +419,7 @@ cmm_init (void)
#ifdef CONFIG_CMM_IUCV
smsg_register_callback
(
SMSG_PREFIX
,
cmm_smsg_target
);
#endif
INIT_WORK
(
&
cmm_thread_starter
,
(
void
*
)
cmm_start_thread
,
0
);
INIT_WORK
(
&
cmm_thread_starter
,
(
void
*
)
cmm_start_thread
,
NULL
);
init_waitqueue_head
(
&
cmm_thread_wait
);
init_timer
(
&
cmm_timer
);
return
0
;
...
...
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