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
21973d27
Commit
21973d27
authored
Sep 14, 2002
by
Anton Blanchard
Browse files
Options
Browse Files
Download
Plain Diff
Merge samba.org:/scratch/anton/linux-2.5
into samba.org:/scratch/anton/linux-2.5_ppc64drivers
parents
c39f7320
1493f8b6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
arch/ppc64/xmon/xmon.c
arch/ppc64/xmon/xmon.c
+1
-1
drivers/char/hvc_console.c
drivers/char/hvc_console.c
+6
-2
No files found.
arch/ppc64/xmon/xmon.c
View file @
21973d27
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
#define skipbl xmon_skipbl
#define skipbl xmon_skipbl
#ifdef CONFIG_SMP
#ifdef CONFIG_SMP
static
unsigned
long
cpus_in_xmon
=
0
;
unsigned
long
cpus_in_xmon
=
0
;
static
unsigned
long
got_xmon
=
0
;
static
unsigned
long
got_xmon
=
0
;
static
volatile
int
take_xmon
=
-
1
;
static
volatile
int
take_xmon
=
-
1
;
#endif
/* CONFIG_SMP */
#endif
/* CONFIG_SMP */
...
...
drivers/char/hvc_console.c
View file @
21973d27
...
@@ -227,6 +227,8 @@ static void hvc_poll(int index)
...
@@ -227,6 +227,8 @@ static void hvc_poll(int index)
spin_unlock_irqrestore
(
&
hp
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
hp
->
lock
,
flags
);
}
}
extern
unsigned
long
cpus_in_xmon
;
int
khvcd
(
void
*
unused
)
int
khvcd
(
void
*
unused
)
{
{
int
i
;
int
i
;
...
@@ -236,8 +238,10 @@ int khvcd(void *unused)
...
@@ -236,8 +238,10 @@ int khvcd(void *unused)
sigfillset
(
&
current
->
blocked
);
sigfillset
(
&
current
->
blocked
);
for
(;;)
{
for
(;;)
{
for
(
i
=
0
;
i
<
MAX_NR_HVC_CONSOLES
;
++
i
)
if
(
!
cpus_in_xmon
)
{
hvc_poll
(
i
);
for
(
i
=
0
;
i
<
MAX_NR_HVC_CONSOLES
;
++
i
)
hvc_poll
(
i
);
}
set_current_state
(
TASK_INTERRUPTIBLE
);
set_current_state
(
TASK_INTERRUPTIBLE
);
schedule_timeout
(
TIMEOUT
);
schedule_timeout
(
TIMEOUT
);
}
}
...
...
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