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
5a1b817d
Commit
5a1b817d
authored
Jan 11, 2005
by
Russell King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] Add show_ipi_list() call.
parent
c7f4b6bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
arch/arm/kernel/irq.c
arch/arm/kernel/irq.c
+3
-0
include/asm-arm/smp.h
include/asm-arm/smp.h
+7
-0
No files found.
arch/arm/kernel/irq.c
View file @
5a1b817d
...
...
@@ -231,6 +231,9 @@ int show_interrupts(struct seq_file *p, void *v)
}
else
if
(
i
==
NR_IRQS
)
{
#ifdef CONFIG_ARCH_ACORN
show_fiq_list
(
p
,
v
);
#endif
#ifdef CONFIG_SMP
show_ipi_list
(
p
);
#endif
seq_printf
(
p
,
"Err: %10lu
\n
"
,
irq_err_count
);
}
...
...
include/asm-arm/smp.h
View file @
5a1b817d
...
...
@@ -32,6 +32,13 @@ extern cpumask_t cpu_present_mask;
*/
#define PROC_CHANGE_PENALTY 15
struct
seq_file
;
/*
* generate IPI list text
*/
extern
void
show_ipi_list
(
struct
seq_file
*
p
);
/*
* Move global data into per-processor storage.
*/
...
...
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