Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xcap
xcap-capability-linux
Commits
b188ffe8
Commit
b188ffe8
authored
Dec 28, 2004
by
Ralf Baechle
Browse files
Fix build with SMP disabled and preemption enabled.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
0964ce24
Changes
1
Hide whitespace changes
Inline
Side-by-side
arch/mips/kernel/gdb-stub.c
View file @
b188ffe8
...
...
@@ -637,15 +637,18 @@ static struct gdb_bp_save async_bp;
* and only one can be active at a time.
*/
extern
spinlock_t
smp_call_lock
;
void
set_async_breakpoint
(
unsigned
long
*
epc
)
{
/* skip breaking into userland */
if
((
*
epc
&
0x80000000
)
==
0
)
return
;
#ifdef CONFIG_SMP
/* avoid deadlock if someone is make IPC */
if
(
spin_is_locked
(
&
smp_call_lock
))
return
;
#endif
async_bp
.
addr
=
*
epc
;
*
epc
=
(
unsigned
long
)
async_breakpoint
;
...
...
Write
Preview
Supports
Markdown
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