Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
12a81c8d
Commit
12a81c8d
authored
Aug 04, 2010
by
Ingo Molnar
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'core' of
git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile
into perf/core
parents
43d7383b
729419f0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
arch/x86/oprofile/nmi_int.c
arch/x86/oprofile/nmi_int.c
+14
-2
drivers/oprofile/event_buffer.c
drivers/oprofile/event_buffer.c
+2
-1
No files found.
arch/x86/oprofile/nmi_int.c
View file @
12a81c8d
...
@@ -634,6 +634,18 @@ static int __init ppro_init(char **cpu_type)
...
@@ -634,6 +634,18 @@ static int __init ppro_init(char **cpu_type)
if
(
force_arch_perfmon
&&
cpu_has_arch_perfmon
)
if
(
force_arch_perfmon
&&
cpu_has_arch_perfmon
)
return
0
;
return
0
;
/*
* Documentation on identifying Intel processors by CPU family
* and model can be found in the Intel Software Developer's
* Manuals (SDM):
*
* http://www.intel.com/products/processor/manuals/
*
* As of May 2010 the documentation for this was in the:
* "Intel 64 and IA-32 Architectures Software Developer's
* Manual Volume 3B: System Programming Guide", "Table B-1
* CPUID Signature Values of DisplayFamily_DisplayModel".
*/
switch
(
cpu_model
)
{
switch
(
cpu_model
)
{
case
0
...
2
:
case
0
...
2
:
*
cpu_type
=
"i386/ppro"
;
*
cpu_type
=
"i386/ppro"
;
...
@@ -655,12 +667,12 @@ static int __init ppro_init(char **cpu_type)
...
@@ -655,12 +667,12 @@ static int __init ppro_init(char **cpu_type)
case
15
:
case
23
:
case
15
:
case
23
:
*
cpu_type
=
"i386/core_2"
;
*
cpu_type
=
"i386/core_2"
;
break
;
break
;
case
0x1a
:
case
0x2e
:
case
0x2e
:
case
26
:
spec
=
&
op_arch_perfmon_spec
;
spec
=
&
op_arch_perfmon_spec
;
*
cpu_type
=
"i386/core_i7"
;
*
cpu_type
=
"i386/core_i7"
;
break
;
break
;
case
28
:
case
0x1c
:
*
cpu_type
=
"i386/atom"
;
*
cpu_type
=
"i386/atom"
;
break
;
break
;
default:
default:
...
...
drivers/oprofile/event_buffer.c
View file @
12a81c8d
...
@@ -135,7 +135,7 @@ static int event_buffer_open(struct inode *inode, struct file *file)
...
@@ -135,7 +135,7 @@ static int event_buffer_open(struct inode *inode, struct file *file)
* echo 1 >/dev/oprofile/enable
* echo 1 >/dev/oprofile/enable
*/
*/
return
0
;
return
nonseekable_open
(
inode
,
file
)
;
fail:
fail:
dcookie_unregister
(
file
->
private_data
);
dcookie_unregister
(
file
->
private_data
);
...
@@ -205,4 +205,5 @@ const struct file_operations event_buffer_fops = {
...
@@ -205,4 +205,5 @@ const struct file_operations event_buffer_fops = {
.
open
=
event_buffer_open
,
.
open
=
event_buffer_open
,
.
release
=
event_buffer_release
,
.
release
=
event_buffer_release
,
.
read
=
event_buffer_read
,
.
read
=
event_buffer_read
,
.
llseek
=
no_llseek
,
};
};
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