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
Kirill Smelkov
linux
Commits
13a1320c
Commit
13a1320c
authored
Oct 22, 2009
by
Mike Frysinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Blackfin: don't give CPU its own line in traps output
Signed-off-by:
Mike Frysinger
<
vapier@gentoo.org
>
parent
4b60779d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
arch/blackfin/kernel/traps.c
arch/blackfin/kernel/traps.c
+3
-3
No files found.
arch/blackfin/kernel/traps.c
View file @
13a1320c
...
...
@@ -976,12 +976,12 @@ void dump_bfin_process(struct pt_regs *fp)
!
((
unsigned
long
)
current
&
0x3
)
&&
current
->
pid
)
{
verbose_printk
(
KERN_NOTICE
"CURRENT PROCESS:
\n
"
);
if
(
current
->
comm
>=
(
char
*
)
FIXED_CODE_START
)
verbose_printk
(
KERN_NOTICE
"COMM=%s PID=%d
\n
"
,
verbose_printk
(
KERN_NOTICE
"COMM=%s PID=%d"
,
current
->
comm
,
current
->
pid
);
else
verbose_printk
(
KERN_NOTICE
"COMM= invalid
\n
"
);
verbose_printk
(
KERN_NOTICE
"COMM= invalid"
);
printk
(
KERN_
NOTICE
"CPU =
%d
\n
"
,
current_thread_info
()
->
cpu
);
printk
(
KERN_
CONT
" CPU=
%d
\n
"
,
current_thread_info
()
->
cpu
);
if
(
!
((
unsigned
long
)
current
->
mm
&
0x3
)
&&
(
unsigned
long
)
current
->
mm
>=
FIXED_CODE_START
)
verbose_printk
(
KERN_NOTICE
"TEXT = 0x%p-0x%p DATA = 0x%p-0x%p
\n
"
...
...
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