Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
65c02a55
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
65c02a55
编写于
5月 03, 2017
作者:
V
Vineet Gupta
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ARCv2: ptrace: provide regset for accumulator/r30 regs
Signed-off-by:
N
Vineet Gupta
<
vgupta@synopsys.com
>
上级
991c7ed6
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
65 addition
and
3 deletion
+65
-3
arch/arc/include/uapi/asm/elf.h
arch/arc/include/uapi/asm/elf.h
+1
-0
arch/arc/include/uapi/asm/ptrace.h
arch/arc/include/uapi/asm/ptrace.h
+5
-0
arch/arc/kernel/ptrace.c
arch/arc/kernel/ptrace.c
+59
-3
未找到文件。
arch/arc/include/uapi/asm/elf.h
浏览文件 @
65c02a55
...
...
@@ -27,6 +27,7 @@ typedef unsigned long elf_greg_t;
typedef
unsigned
long
elf_fpregset_t
;
#define ELF_NGREG (sizeof(struct user_regs_struct) / sizeof(elf_greg_t))
#define ELF_ARCV2REG (sizeof(struct user_regs_arcv2) / sizeof(elf_greg_t))
typedef
elf_greg_t
elf_gregset_t
[
ELF_NGREG
];
...
...
arch/arc/include/uapi/asm/ptrace.h
浏览文件 @
65c02a55
...
...
@@ -47,6 +47,11 @@ struct user_regs_struct {
unsigned
long
efa
;
/* break pt addr, for break points in delay slots */
unsigned
long
stop_pc
;
/* give dbg stop_pc after ensuring brkpt trap */
};
struct
user_regs_arcv2
{
unsigned
long
r30
,
r58
,
r59
;
};
#endif
/* !__ASSEMBLY__ */
#endif
/* _UAPI__ASM_ARC_PTRACE_H */
arch/arc/kernel/ptrace.c
浏览文件 @
65c02a55
...
...
@@ -184,19 +184,75 @@ static int genregs_set(struct task_struct *target,
return
ret
;
}
#ifdef CONFIG_ISA_ARCV2
static
int
arcv2regs_get
(
struct
task_struct
*
target
,
const
struct
user_regset
*
regset
,
unsigned
int
pos
,
unsigned
int
count
,
void
*
kbuf
,
void
__user
*
ubuf
)
{
const
struct
pt_regs
*
regs
=
task_pt_regs
(
target
);
int
ret
,
copy_sz
;
if
(
IS_ENABLED
(
CONFIG_ARC_HAS_ACCL_REGS
))
copy_sz
=
sizeof
(
struct
user_regs_arcv2
);
else
copy_sz
=
4
;
/* r30 only */
/*
* itemized copy not needed like above as layout of regs (r30,r58,r59)
* is exactly same in kernel (pt_regs) and userspace (user_regs_arcv2)
*/
ret
=
user_regset_copyout
(
&
pos
,
&
count
,
&
kbuf
,
&
ubuf
,
&
regs
->
r30
,
0
,
copy_sz
);
return
ret
;
}
static
int
arcv2regs_set
(
struct
task_struct
*
target
,
const
struct
user_regset
*
regset
,
unsigned
int
pos
,
unsigned
int
count
,
const
void
*
kbuf
,
const
void
__user
*
ubuf
)
{
const
struct
pt_regs
*
regs
=
task_pt_regs
(
target
);
int
ret
,
copy_sz
;
if
(
IS_ENABLED
(
CONFIG_ARC_HAS_ACCL_REGS
))
copy_sz
=
sizeof
(
struct
user_regs_arcv2
);
else
copy_sz
=
4
;
/* r30 only */
ret
=
user_regset_copyin
(
&
pos
,
&
count
,
&
kbuf
,
&
ubuf
,
(
void
*
)
&
regs
->
r30
,
0
,
copy_sz
);
return
ret
;
}
#endif
enum
arc_getset
{
REGSET_GENERAL
,
REGSET_CMN
,
REGSET_ARCV2
,
};
static
const
struct
user_regset
arc_regsets
[]
=
{
[
REGSET_
GENERAL
]
=
{
[
REGSET_
CMN
]
=
{
.
core_note_type
=
NT_PRSTATUS
,
.
n
=
ELF_NGREG
,
.
size
=
sizeof
(
unsigned
long
),
.
align
=
sizeof
(
unsigned
long
),
.
get
=
genregs_get
,
.
set
=
genregs_set
,
}
},
#ifdef CONFIG_ISA_ARCV2
[
REGSET_ARCV2
]
=
{
.
core_note_type
=
NT_ARC_V2
,
.
n
=
ELF_ARCV2REG
,
.
size
=
sizeof
(
unsigned
long
),
.
align
=
sizeof
(
unsigned
long
),
.
get
=
arcv2regs_get
,
.
set
=
arcv2regs_set
,
},
#endif
};
static
const
struct
user_regset_view
user_arc_view
=
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录