Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
8213bbf9
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
8213bbf9
编写于
7月 20, 2008
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MIPS] Rename MIPS sys_pipe syscall entry point to something MIPS-specific.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
4914ad4a
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
12 addition
and
5 deletion
+12
-5
arch/mips/kernel/scall32-o32.S
arch/mips/kernel/scall32-o32.S
+1
-1
arch/mips/kernel/scall64-64.S
arch/mips/kernel/scall64-64.S
+1
-1
arch/mips/kernel/scall64-n32.S
arch/mips/kernel/scall64-n32.S
+1
-1
arch/mips/kernel/scall64-o32.S
arch/mips/kernel/scall64-o32.S
+1
-1
arch/mips/kernel/syscall.c
arch/mips/kernel/syscall.c
+8
-1
未找到文件。
arch/mips/kernel/scall32-o32.S
浏览文件 @
8213bbf9
...
...
@@ -354,7 +354,7 @@ einval: li v0, -EINVAL
sys
sys_mkdir
2
sys
sys_rmdir
1
/*
4040
*/
sys
sys_dup
1
sys
sys_pipe
0
sys
sys
m
_pipe
0
sys
sys_times
1
sys
sys_ni_syscall
0
sys
sys_brk
1
/*
4045
*/
...
...
arch/mips/kernel/scall64-64.S
浏览文件 @
8213bbf9
...
...
@@ -219,7 +219,7 @@ sys_call_table:
PTR
sys_readv
PTR
sys_writev
PTR
sys_access
/*
5020
*/
PTR
sys_pipe
PTR
sys
m
_pipe
PTR
sys_select
PTR
sys_sched_yield
PTR
sys_mremap
...
...
arch/mips/kernel/scall64-n32.S
浏览文件 @
8213bbf9
...
...
@@ -141,7 +141,7 @@ EXPORT(sysn32_call_table)
PTR
compat_sys_readv
PTR
compat_sys_writev
PTR
sys_access
/*
6020
*/
PTR
sys_pipe
PTR
sys
m
_pipe
PTR
compat_sys_select
PTR
sys_sched_yield
PTR
sys_mremap
...
...
arch/mips/kernel/scall64-o32.S
浏览文件 @
8213bbf9
...
...
@@ -247,7 +247,7 @@ sys_call_table:
PTR
sys_mkdir
PTR
sys_rmdir
/*
4040
*/
PTR
sys_dup
PTR
sys_pipe
PTR
sys
m
_pipe
PTR
compat_sys_times
PTR
sys_ni_syscall
PTR
sys_brk
/*
4045
*/
...
...
arch/mips/kernel/syscall.c
浏览文件 @
8213bbf9
...
...
@@ -40,7 +40,14 @@
#include <asm/sysmips.h>
#include <asm/uaccess.h>
asmlinkage
int
sys_pipe
(
nabi_no_regargs
volatile
struct
pt_regs
regs
)
/*
* For historic reasons the pipe(2) syscall on MIPS has an unusual calling
* convention. It returns results in registers $v0 / $v1 which means there
* is no need for it to do verify the validity of a userspace pointer
* argument. Historically that used to be expensive in Linux. These days
* the performance advantage is negligible.
*/
asmlinkage
int
sysm_pipe
(
nabi_no_regargs
volatile
struct
pt_regs
regs
)
{
int
fd
[
2
];
int
error
,
res
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录