Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
7f5a7716
Commit
7f5a7716
authored
Apr 25, 2007
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] Fix AP/SP to work in the reality of modern kernels.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
de46c337
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
arch/mips/kernel/kspd.c
arch/mips/kernel/kspd.c
+1
-4
arch/mips/kernel/rtlx.c
arch/mips/kernel/rtlx.c
+4
-3
No files found.
arch/mips/kernel/kspd.c
View file @
7f5a7716
...
...
@@ -17,6 +17,7 @@
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/unistd.h>
#include <linux/file.h>
#include <linux/fs.h>
...
...
@@ -198,7 +199,6 @@ void sp_work_handle_request(void)
int
cmd
;
char
*
vcwd
;
mm_segment_t
old_fs
;
int
size
;
ret
.
retval
=
-
1
;
...
...
@@ -241,8 +241,6 @@ void sp_work_handle_request(void)
if
((
ret
.
retval
=
sp_syscall
(
__NR_gettimeofday
,
(
int
)
&
tv
,
(
int
)
&
tz
,
0
,
0
))
==
0
)
ret
.
retval
=
tv
.
tv_sec
;
ret
.
errno
=
errno
;
break
;
case
MTSP_SYSCALL_EXIT
:
...
...
@@ -279,7 +277,6 @@ void sp_work_handle_request(void)
if
(
cmd
>=
0
)
{
ret
.
retval
=
sp_syscall
(
cmd
,
generic
.
arg0
,
generic
.
arg1
,
generic
.
arg2
,
generic
.
arg3
);
ret
.
errno
=
errno
;
}
else
printk
(
KERN_WARNING
"KSPD: Unknown SP syscall number %d
\n
"
,
sc
.
cmd
);
...
...
arch/mips/kernel/rtlx.c
View file @
7f5a7716
...
...
@@ -289,7 +289,7 @@ unsigned int rtlx_write_poll(int index)
return
write_spacefree
(
chan
->
rt_read
,
chan
->
rt_write
,
chan
->
buffer_size
);
}
ssize_t
rtlx_read
(
int
index
,
void
__user
*
buff
,
size_t
count
,
int
user
)
ssize_t
rtlx_read
(
int
index
,
void
__user
*
buff
,
size_t
count
)
{
size_t
lx_write
,
fl
=
0L
;
struct
rtlx_channel
*
lx
;
...
...
@@ -331,9 +331,10 @@ out:
return
count
;
}
ssize_t
rtlx_write
(
int
index
,
const
void
__user
*
buffer
,
size_t
count
,
int
user
)
ssize_t
rtlx_write
(
int
index
,
const
void
__user
*
buffer
,
size_t
count
)
{
struct
rtlx_channel
*
rt
;
unsigned
long
failed
;
size_t
rt_read
;
size_t
fl
;
...
...
@@ -363,7 +364,7 @@ ssize_t rtlx_write(int index, const void __user *buffer, size_t count, int user)
}
out:
count
-=
c
ailed
;
count
-=
f
ailed
;
smp_wmb
();
rt
->
rt_write
=
(
rt
->
rt_write
+
count
)
%
rt
->
buffer_size
;
...
...
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