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
40874491
Commit
40874491
authored
Dec 18, 2008
by
Ingo Molnar
Browse files
Options
Browse Files
Download
Plain Diff
Merge branches 'tracing/ftrace' and 'tracing/hw-branch-tracing' into tracing/core
parents
d680fe44
d072c25f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
33 deletions
+28
-33
arch/x86/kernel/ds.c
arch/x86/kernel/ds.c
+28
-33
No files found.
arch/x86/kernel/ds.c
View file @
40874491
...
...
@@ -232,53 +232,45 @@ static DEFINE_PER_CPU(struct ds_context *, system_context_array);
#define system_context per_cpu(system_context_array, smp_processor_id())
static
struct
ds_context
*
ds_get_context
(
struct
task_struct
*
task
)
static
inline
struct
ds_context
*
ds_get_context
(
struct
task_struct
*
task
)
{
struct
ds_context
**
p_context
=
(
task
?
&
task
->
thread
.
ds_ctx
:
&
system_context
);
struct
ds_context
*
context
=
*
p_context
;
struct
ds_context
*
context
=
NULL
;
struct
ds_context
*
new_context
=
NULL
;
unsigned
long
irq
;
if
(
!
context
)
{
context
=
kzalloc
(
sizeof
(
*
context
),
GFP_KERNEL
);
if
(
!
context
)
/* Chances are small that we already have a context. */
new_context
=
kzalloc
(
sizeof
(
*
new_
context
),
GFP_KERNEL
);
if
(
!
new_
context
)
return
NULL
;
spin_lock_irqsave
(
&
ds_lock
,
irq
);
if
(
*
p_context
)
{
kfree
(
context
);
context
=
*
p_context
;
}
else
{
*
p_context
=
context
;
if
(
!
context
)
{
context
=
new_
context
;
context
->
this
=
p_context
;
context
->
task
=
task
;
context
->
count
=
0
;
if
(
task
)
set_tsk_thread_flag
(
task
,
TIF_DS_AREA_MSR
);
if
(
!
task
||
(
task
==
current
))
wrmsrl
(
MSR_IA32_DS_AREA
,
(
unsigned
long
)
context
->
ds
);
}
context
->
count
++
;
wrmsrl
(
MSR_IA32_DS_AREA
,
(
unsigned
long
)
context
->
ds
);
spin_unlock_irqrestore
(
&
ds_lock
,
irq
);
}
else
{
spin_lock_irqsave
(
&
ds_lock
,
irq
);
*
p_context
=
context
;
}
context
=
*
p_context
;
if
(
context
)
context
->
count
++
;
spin_unlock_irqrestore
(
&
ds_lock
,
irq
);
if
(
!
context
)
context
=
ds_get_context
(
task
);
}
if
(
context
!=
new_context
)
kfree
(
new_context
);
return
context
;
}
...
...
@@ -492,6 +484,9 @@ static int bts_read(struct bts_tracer *tracer, const void *at,
out
->
qualifier
=
bts_branch
;
out
->
variant
.
lbr
.
from
=
bts_get
(
at
,
bts_from
);
out
->
variant
.
lbr
.
to
=
bts_get
(
at
,
bts_to
);
if
(
!
out
->
variant
.
lbr
.
from
&&
!
out
->
variant
.
lbr
.
to
)
out
->
qualifier
=
bts_invalid
;
}
return
ds_cfg
.
sizeof_rec
[
ds_bts
];
...
...
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