Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
83cf1eec
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
83cf1eec
编写于
11月 26, 2010
作者:
R
Russell King
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'ftrace' of
git://github.com/rabinv/linux-2.6
into devel-stable
上级
f1690d17
0e341af8
变更
11
显示空白变更内容
内联
并排
Showing
11 changed file
with
273 addition
and
77 deletion
+273
-77
arch/arm/Kconfig
arch/arm/Kconfig
+1
-0
arch/arm/Kconfig.debug
arch/arm/Kconfig.debug
+1
-1
arch/arm/include/asm/system.h
arch/arm/include/asm/system.h
+5
-0
arch/arm/include/asm/traps.h
arch/arm/include/asm/traps.h
+21
-2
arch/arm/kernel/Makefile
arch/arm/kernel/Makefile
+2
-1
arch/arm/kernel/entry-common.S
arch/arm/kernel/entry-common.S
+137
-65
arch/arm/kernel/ftrace.c
arch/arm/kernel/ftrace.c
+98
-5
arch/arm/kernel/irq.c
arch/arm/kernel/irq.c
+3
-1
arch/arm/kernel/smp.c
arch/arm/kernel/smp.c
+3
-2
arch/arm/kernel/vmlinux.lds.S
arch/arm/kernel/vmlinux.lds.S
+1
-0
arch/arm/plat-versatile/sched-clock.c
arch/arm/plat-versatile/sched-clock.c
+1
-0
未找到文件。
arch/arm/Kconfig
浏览文件 @
83cf1eec
...
...
@@ -14,6 +14,7 @@ config ARM
select HAVE_FUNCTION_TRACER if (!XIP_KERNEL)
select HAVE_FTRACE_MCOUNT_RECORD if (!XIP_KERNEL)
select HAVE_DYNAMIC_FTRACE if (!XIP_KERNEL)
select HAVE_FUNCTION_GRAPH_TRACER if (!THUMB2_KERNEL)
select HAVE_GENERIC_DMA_COHERENT
select HAVE_KERNEL_GZIP
select HAVE_KERNEL_LZO
...
...
arch/arm/Kconfig.debug
浏览文件 @
83cf1eec
...
...
@@ -23,7 +23,7 @@ config STRICT_DEVMEM
config FRAME_POINTER
bool
depends on !THUMB2_KERNEL
default y if !ARM_UNWIND
default y if !ARM_UNWIND
|| FUNCTION_GRAPH_TRACER
help
If you say N here, the resulting kernel will be slightly smaller and
faster. However, if neither FRAME_POINTER nor ARM_UNWIND are enabled,
...
...
arch/arm/include/asm/system.h
浏览文件 @
83cf1eec
...
...
@@ -63,6 +63,11 @@
#include <asm/outercache.h>
#define __exception __attribute__((section(".exception.text")))
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
#define __exception_irq_entry __irq_entry
#else
#define __exception_irq_entry __exception
#endif
struct
thread_info
;
struct
task_struct
;
...
...
arch/arm/include/asm/traps.h
浏览文件 @
83cf1eec
...
...
@@ -15,13 +15,32 @@ struct undef_hook {
void
register_undef_hook
(
struct
undef_hook
*
hook
);
void
unregister_undef_hook
(
struct
undef_hook
*
hook
);
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
static
inline
int
__in_irqentry_text
(
unsigned
long
ptr
)
{
extern
char
__irqentry_text_start
[];
extern
char
__irqentry_text_end
[];
return
ptr
>=
(
unsigned
long
)
&
__irqentry_text_start
&&
ptr
<
(
unsigned
long
)
&
__irqentry_text_end
;
}
#else
static
inline
int
__in_irqentry_text
(
unsigned
long
ptr
)
{
return
0
;
}
#endif
static
inline
int
in_exception_text
(
unsigned
long
ptr
)
{
extern
char
__exception_text_start
[];
extern
char
__exception_text_end
[];
int
in
;
return
ptr
>=
(
unsigned
long
)
&
__exception_text_start
&&
in
=
ptr
>=
(
unsigned
long
)
&
__exception_text_start
&&
ptr
<
(
unsigned
long
)
&
__exception_text_end
;
return
in
?
:
__in_irqentry_text
(
ptr
);
}
extern
void
__init
early_trap_init
(
void
);
...
...
arch/arm/kernel/Makefile
浏览文件 @
83cf1eec
...
...
@@ -5,7 +5,7 @@
CPPFLAGS_vmlinux.lds
:=
-DTEXT_OFFSET
=
$(TEXT_OFFSET)
AFLAGS_head.o
:=
-DTEXT_OFFSET
=
$(TEXT_OFFSET)
ifdef
CONFIG_
DYNAMIC_FTRACE
ifdef
CONFIG_
FUNCTION_TRACER
CFLAGS_REMOVE_ftrace.o
=
-pg
endif
...
...
@@ -33,6 +33,7 @@ obj-$(CONFIG_SMP) += smp.o
obj-$(CONFIG_HAVE_ARM_SCU)
+=
smp_scu.o
obj-$(CONFIG_HAVE_ARM_TWD)
+=
smp_twd.o
obj-$(CONFIG_DYNAMIC_FTRACE)
+=
ftrace.o
obj-$(CONFIG_FUNCTION_GRAPH_TRACER)
+=
ftrace.o
obj-$(CONFIG_KEXEC)
+=
machine_kexec.o relocate_kernel.o
obj-$(CONFIG_KPROBES)
+=
kprobes.o kprobes-decode.o
obj-$(CONFIG_ATAGS_PROC)
+=
atags.o
...
...
arch/arm/kernel/entry-common.S
浏览文件 @
83cf1eec
...
...
@@ -141,98 +141,170 @@ ENDPROC(ret_from_fork)
#endif
#endif
#ifdef CONFIG_DYNAMIC_FTRACE
ENTRY
(
__gnu_mcount_nc
)
mov
ip
,
lr
ldmia
sp
!,
{
lr
}
mov
pc
,
ip
ENDPROC
(
__gnu_mcount_nc
)
.
macro
__mcount
suffix
mcount_enter
ldr
r0
,
=
ftrace_trace_function
ldr
r2
,
[
r0
]
adr
r0
,
.
Lftrace_stub
cmp
r0
,
r2
bne
1
f
ENTRY
(
ftrace_caller
)
stmdb
sp
!,
{
r0
-
r3
,
lr
}
mov
r0
,
lr
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
ldr
r1
,
=
ftrace_graph_return
ldr
r2
,
[
r1
]
cmp
r0
,
r2
bne
ftrace_graph_caller
\
suffix
ldr
r1
,
=
ftrace_graph_entry
ldr
r2
,
[
r1
]
ldr
r0
,
=
ftrace_graph_entry_stub
cmp
r0
,
r2
bne
ftrace_graph_caller
\
suffix
#endif
mcount_exit
1
:
mcount_get_lr
r1
@
lr
of
instrumented
func
mov
r0
,
lr
@
instrumented
function
sub
r0
,
r0
,
#
MCOUNT_INSN_SIZE
adr
lr
,
BSYM
(
2
f
)
mov
pc
,
r2
2
:
mcount_exit
.
endm
.
macro
__ftrace_caller
suffix
mcount_enter
mcount_get_lr
r1
@
lr
of
instrumented
func
mov
r0
,
lr
@
instrumented
function
sub
r0
,
r0
,
#
MCOUNT_INSN_SIZE
ldr
r1
,
[
sp
,
#
20
]
.
glob
al
ftrace_call
ftrace_call
:
.
glob
l
ftrace_call
\
suffix
ftrace_call
\
suffix
:
bl
ftrace_stub
ldmia
sp
!,
{
r0
-
r3
,
ip
,
lr
}
mov
pc
,
ip
ENDPROC
(
ftrace_caller
)
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
.
globl
ftrace_graph_call
\
suffix
ftrace_graph_call
\
suffix
:
mov
r0
,
r0
#endif
mcount_exit
.
endm
.
macro
__ftrace_graph_caller
sub
r0
,
fp
,
#
4
@
&
lr
of
instrumented
routine
(&
parent
)
#ifdef CONFIG_DYNAMIC_FTRACE
@
called
from
__ftrace_caller
,
saved
in
mcount_enter
ldr
r1
,
[
sp
,
#
16
]
@
instrumented
routine
(
func
)
#else
@
called
from
__mcount
,
untouched
in
lr
mov
r1
,
lr
@
instrumented
routine
(
func
)
#endif
sub
r1
,
r1
,
#
MCOUNT_INSN_SIZE
mov
r2
,
fp
@
frame
pointer
bl
prepare_ftrace_return
mcount_exit
.
endm
#ifdef CONFIG_OLD_MCOUNT
/*
*
mcount
*/
.
macro
mcount_enter
stmdb
sp
!,
{
r0
-
r3
,
lr
}
.
endm
.
macro
mcount_get_lr
reg
ldr
\
reg
,
[
fp
,
#-
4
]
.
endm
.
macro
mcount_exit
ldr
lr
,
[
fp
,
#-
4
]
ldmia
sp
!,
{
r0
-
r3
,
pc
}
.
endm
ENTRY
(
mcount
)
#ifdef CONFIG_DYNAMIC_FTRACE
stmdb
sp
!,
{
lr
}
ldr
lr
,
[
fp
,
#-
4
]
ldmia
sp
!,
{
pc
}
#else
__mcount
_old
#endif
ENDPROC
(
mcount
)
#ifdef CONFIG_DYNAMIC_FTRACE
ENTRY
(
ftrace_caller_old
)
stmdb
sp
!,
{
r0
-
r3
,
lr
}
ldr
r1
,
[
fp
,
#-
4
]
mov
r0
,
lr
sub
r0
,
r0
,
#
MCOUNT_INSN_SIZE
.
globl
ftrace_call_old
ftrace_call_old
:
bl
ftrace_stub
ldr
lr
,
[
fp
,
#-
4
]
@
restore
lr
ldmia
sp
!,
{
r0
-
r3
,
pc
}
__ftrace_caller
_old
ENDPROC
(
ftrace_caller_old
)
#endif
#else
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
ENTRY
(
ftrace_graph_caller_old
)
__ftrace_graph_caller
ENDPROC
(
ftrace_graph_caller_old
)
#endif
ENTRY
(
__gnu_mcount_nc
)
.
purgem
mcount_enter
.
purgem
mcount_get_lr
.
purgem
mcount_exit
#endif
/*
*
__gnu_mcount_nc
*/
.
macro
mcount_enter
stmdb
sp
!,
{
r0
-
r3
,
lr
}
ldr
r0
,
=
ftrace_trace_function
ldr
r2
,
[
r0
]
adr
r0
,
.
Lftrace_stub
cmp
r0
,
r2
bne
gnu_trace
.
endm
.
macro
mcount_get_lr
reg
ldr
\
reg
,
[
sp
,
#
20
]
.
endm
.
macro
mcount_exit
ldmia
sp
!,
{
r0
-
r3
,
ip
,
lr
}
mov
pc
,
ip
.
endm
gnu_trace
:
ldr
r1
,
[
sp
,
#
20
]
@
lr
of
instrumented
routine
mov
r0
,
lr
sub
r0
,
r0
,
#
MCOUNT_INSN_SIZE
adr
lr
,
BSYM
(
1
f
)
mov
pc
,
r2
1
:
ldmia
sp
!,
{
r0
-
r3
,
ip
,
lr
}
ENTRY
(
__gnu_mcount_nc
)
#ifdef CONFIG_DYNAMIC_FTRACE
mov
ip
,
lr
ldmia
sp
!,
{
lr
}
mov
pc
,
ip
#else
__mcount
#endif
ENDPROC
(
__gnu_mcount_nc
)
#ifdef CONFIG_OLD_MCOUNT
/*
*
This
is
under
an
ifdef
in
order
to
force
link
-
time
errors
for
people
trying
*
to
build
with
!
FRAME_POINTER
with
a
GCC
which
doesn
't use the new-style
*
mcount
.
*/
ENTRY
(
mcount
)
stmdb
sp
!,
{
r0
-
r3
,
lr
}
ldr
r0
,
=
ftrace_trace_function
ldr
r2
,
[
r0
]
adr
r0
,
ftrace_stub
cmp
r0
,
r2
bne
trace
ldr
lr
,
[
fp
,
#-
4
]
@
restore
lr
ldmia
sp
!,
{
r0
-
r3
,
pc
}
#ifdef CONFIG_DYNAMIC_FTRACE
ENTRY
(
ftrace_caller
)
__ftrace_caller
ENDPROC
(
ftrace_caller
)
#endif
trace
:
ldr
r1
,
[
fp
,
#-
4
]
@
lr
of
instrumented
routine
mov
r0
,
lr
sub
r0
,
r0
,
#
MCOUNT_INSN_SIZE
mov
lr
,
pc
mov
pc
,
r2
ldr
lr
,
[
fp
,
#-
4
]
@
restore
lr
ldmia
sp
!,
{
r0
-
r3
,
pc
}
ENDPROC
(
mcount
)
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
ENTRY
(
ftrace_graph_caller
)
__ftrace_graph_caller
ENDPROC
(
ftrace_graph_caller
)
#endif
#endif /* CONFIG_DYNAMIC_FTRACE */
.
purgem
mcount_enter
.
purgem
mcount_get_lr
.
purgem
mcount_exit
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
.
globl
return_to_handler
return_to_handler
:
stmdb
sp
!,
{
r0
-
r3
}
mov
r0
,
fp
@
frame
pointer
bl
ftrace_return_to_handler
mov
lr
,
r0
@
r0
has
real
ret
addr
ldmia
sp
!,
{
r0
-
r3
}
mov
pc
,
lr
#endif
ENTRY
(
ftrace_stub
)
.
Lftrace_stub
:
...
...
arch/arm/kernel/ftrace.c
浏览文件 @
83cf1eec
...
...
@@ -24,6 +24,7 @@
#define NOP 0xe8bd4000
/* pop {lr} */
#endif
#ifdef CONFIG_DYNAMIC_FTRACE
#ifdef CONFIG_OLD_MCOUNT
#define OLD_MCOUNT_ADDR ((unsigned long) mcount)
#define OLD_FTRACE_ADDR ((unsigned long) ftrace_caller_old)
...
...
@@ -59,9 +60,9 @@ static unsigned long adjust_address(struct dyn_ftrace *rec, unsigned long addr)
}
#endif
/* construct a branch (BL) instruction to addr */
#ifdef CONFIG_THUMB2_KERNEL
static
unsigned
long
ftrace_call_replace
(
unsigned
long
pc
,
unsigned
long
addr
)
static
unsigned
long
ftrace_gen_branch
(
unsigned
long
pc
,
unsigned
long
addr
,
bool
link
)
{
unsigned
long
s
,
j1
,
j2
,
i1
,
i2
,
imm10
,
imm11
;
unsigned
long
first
,
second
;
...
...
@@ -83,15 +84,22 @@ static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr)
j2
=
(
!
i2
)
^
s
;
first
=
0xf000
|
(
s
<<
10
)
|
imm10
;
second
=
0xd000
|
(
j1
<<
13
)
|
(
j2
<<
11
)
|
imm11
;
second
=
0x9000
|
(
j1
<<
13
)
|
(
j2
<<
11
)
|
imm11
;
if
(
link
)
second
|=
1
<<
14
;
return
(
second
<<
16
)
|
first
;
}
#else
static
unsigned
long
ftrace_call_replace
(
unsigned
long
pc
,
unsigned
long
addr
)
static
unsigned
long
ftrace_gen_branch
(
unsigned
long
pc
,
unsigned
long
addr
,
bool
link
)
{
unsigned
long
opcode
=
0xea000000
;
long
offset
;
if
(
link
)
opcode
|=
1
<<
24
;
offset
=
(
long
)
addr
-
(
long
)(
pc
+
8
);
if
(
unlikely
(
offset
<
-
33554432
||
offset
>
33554428
))
{
/* Can't generate branches that far (from ARM ARM). Ftrace
...
...
@@ -103,10 +111,15 @@ static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr)
offset
=
(
offset
>>
2
)
&
0x00ffffff
;
return
0xeb000000
|
offset
;
return
opcode
|
offset
;
}
#endif
static
unsigned
long
ftrace_call_replace
(
unsigned
long
pc
,
unsigned
long
addr
)
{
return
ftrace_gen_branch
(
pc
,
addr
,
true
);
}
static
int
ftrace_modify_code
(
unsigned
long
pc
,
unsigned
long
old
,
unsigned
long
new
)
{
...
...
@@ -193,3 +206,83 @@ int __init ftrace_dyn_arch_init(void *data)
return
0
;
}
#endif
/* CONFIG_DYNAMIC_FTRACE */
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
void
prepare_ftrace_return
(
unsigned
long
*
parent
,
unsigned
long
self_addr
,
unsigned
long
frame_pointer
)
{
unsigned
long
return_hooker
=
(
unsigned
long
)
&
return_to_handler
;
struct
ftrace_graph_ent
trace
;
unsigned
long
old
;
int
err
;
if
(
unlikely
(
atomic_read
(
&
current
->
tracing_graph_pause
)))
return
;
old
=
*
parent
;
*
parent
=
return_hooker
;
err
=
ftrace_push_return_trace
(
old
,
self_addr
,
&
trace
.
depth
,
frame_pointer
);
if
(
err
==
-
EBUSY
)
{
*
parent
=
old
;
return
;
}
trace
.
func
=
self_addr
;
/* Only trace if the calling function expects to */
if
(
!
ftrace_graph_entry
(
&
trace
))
{
current
->
curr_ret_stack
--
;
*
parent
=
old
;
}
}
#ifdef CONFIG_DYNAMIC_FTRACE
extern
unsigned
long
ftrace_graph_call
;
extern
unsigned
long
ftrace_graph_call_old
;
extern
void
ftrace_graph_caller_old
(
void
);
static
int
__ftrace_modify_caller
(
unsigned
long
*
callsite
,
void
(
*
func
)
(
void
),
bool
enable
)
{
unsigned
long
caller_fn
=
(
unsigned
long
)
func
;
unsigned
long
pc
=
(
unsigned
long
)
callsite
;
unsigned
long
branch
=
ftrace_gen_branch
(
pc
,
caller_fn
,
false
);
unsigned
long
nop
=
0xe1a00000
;
/* mov r0, r0 */
unsigned
long
old
=
enable
?
nop
:
branch
;
unsigned
long
new
=
enable
?
branch
:
nop
;
return
ftrace_modify_code
(
pc
,
old
,
new
);
}
static
int
ftrace_modify_graph_caller
(
bool
enable
)
{
int
ret
;
ret
=
__ftrace_modify_caller
(
&
ftrace_graph_call
,
ftrace_graph_caller
,
enable
);
#ifdef CONFIG_OLD_MCOUNT
if
(
!
ret
)
ret
=
__ftrace_modify_caller
(
&
ftrace_graph_call_old
,
ftrace_graph_caller_old
,
enable
);
#endif
return
ret
;
}
int
ftrace_enable_ftrace_graph_caller
(
void
)
{
return
ftrace_modify_graph_caller
(
true
);
}
int
ftrace_disable_ftrace_graph_caller
(
void
)
{
return
ftrace_modify_graph_caller
(
false
);
}
#endif
/* CONFIG_DYNAMIC_FTRACE */
#endif
/* CONFIG_FUNCTION_GRAPH_TRACER */
arch/arm/kernel/irq.c
浏览文件 @
83cf1eec
...
...
@@ -35,6 +35,7 @@
#include <linux/list.h>
#include <linux/kallsyms.h>
#include <linux/proc_fs.h>
#include <linux/ftrace.h>
#include <asm/system.h>
#include <asm/mach/irq.h>
...
...
@@ -105,7 +106,8 @@ int show_interrupts(struct seq_file *p, void *v)
* come via this function. Instead, they should provide their
* own 'handler'
*/
asmlinkage
void
__exception
asm_do_IRQ
(
unsigned
int
irq
,
struct
pt_regs
*
regs
)
asmlinkage
void
__exception_irq_entry
asm_do_IRQ
(
unsigned
int
irq
,
struct
pt_regs
*
regs
)
{
struct
pt_regs
*
old_regs
=
set_irq_regs
(
regs
);
...
...
arch/arm/kernel/smp.c
浏览文件 @
83cf1eec
...
...
@@ -16,6 +16,7 @@
#include <linux/cache.h>
#include <linux/profile.h>
#include <linux/errno.h>
#include <linux/ftrace.h>
#include <linux/mm.h>
#include <linux/err.h>
#include <linux/cpu.h>
...
...
@@ -457,7 +458,7 @@ static void ipi_timer(void)
}
#ifdef CONFIG_LOCAL_TIMERS
asmlinkage
void
__exception
do_local_timer
(
struct
pt_regs
*
regs
)
asmlinkage
void
__exception
_irq_entry
do_local_timer
(
struct
pt_regs
*
regs
)
{
struct
pt_regs
*
old_regs
=
set_irq_regs
(
regs
);
int
cpu
=
smp_processor_id
();
...
...
@@ -544,7 +545,7 @@ static void ipi_cpu_stop(unsigned int cpu)
*
* Bit 0 - Inter-processor function call
*/
asmlinkage
void
__exception
do_IPI
(
struct
pt_regs
*
regs
)
asmlinkage
void
__exception
_irq_entry
do_IPI
(
struct
pt_regs
*
regs
)
{
unsigned
int
cpu
=
smp_processor_id
();
struct
ipi_data
*
ipi
=
&
per_cpu
(
ipi_data
,
cpu
);
...
...
arch/arm/kernel/vmlinux.lds.S
浏览文件 @
83cf1eec
...
...
@@ -101,6 +101,7 @@ SECTIONS
__exception_text_start
=
.
;
*(.
exception.text
)
__exception_text_end
=
.
;
IRQENTRY_TEXT
TEXT_TEXT
SCHED_TEXT
LOCK_TEXT
...
...
arch/arm/plat-versatile/sched-clock.c
浏览文件 @
83cf1eec
...
...
@@ -20,6 +20,7 @@
*/
#include <linux/cnt32_to_63.h>
#include <linux/io.h>
#include <linux/sched.h>
#include <asm/div64.h>
#include <mach/hardware.h>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录