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
96a750f5
Commit
96a750f5
authored
Apr 14, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://linuxusb.bkbits.net/pci-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
abb33def
c608aedd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
9 deletions
+6
-9
arch/i386/kernel/i8259.c
arch/i386/kernel/i8259.c
+1
-2
arch/i386/mach-voyager/voyager_smp.c
arch/i386/mach-voyager/voyager_smp.c
+4
-6
arch/i386/mach-voyager/voyager_thread.c
arch/i386/mach-voyager/voyager_thread.c
+1
-1
No files found.
arch/i386/kernel/i8259.c
View file @
96a750f5
...
...
@@ -445,6 +445,5 @@ void __init init_IRQ(void)
if
(
boot_cpu_data
.
hard_math
&&
!
cpu_has_fpu
)
setup_irq
(
FPU_IRQ
,
&
fpu_irq
);
current_thread_info
()
->
cpu
=
0
;
irq_ctx_init
(
0
);
irq_ctx_init
(
current_thread_info
()
->
cpu
);
}
arch/i386/mach-voyager/voyager_smp.c
View file @
96a750f5
...
...
@@ -599,12 +599,10 @@ do_boot_cpu(__u8 cpu)
idle
->
thread
.
eip
=
(
unsigned
long
)
start_secondary
;
unhash_process
(
idle
);
/* init_tasks (in sched.c) is indexed logically */
#if 0
// for AC kernels
stack_start.esp = (THREAD_SIZE + (__u8 *)TSK_TO_KSTACK(idle));
#else
stack_start
.
esp
=
(
void
*
)
(
1024
+
PAGE_SIZE
+
(
char
*
)
idle
->
thread_info
);
#endif
stack_start
.
esp
=
(
void
*
)
idle
->
thread
.
esp
;
irq_ctx_init
(
cpu
);
/* Note: Don't modify initial ss override */
VDEBUG
((
"VOYAGER SMP: Booting CPU%d at 0x%lx[%x:%x], stack %p
\n
"
,
cpu
,
(
unsigned
long
)
hijack_source
.
val
,
hijack_source
.
idt
.
Segment
,
...
...
arch/i386/mach-voyager/voyager_thread.c
View file @
96a750f5
...
...
@@ -135,7 +135,7 @@ thread(void *unused)
init_timer
(
&
wakeup_timer
);
sigfillset
(
&
current
->
blocked
);
current
->
tty
=
NULL
;
/* get rid of controlling tty */
current
->
signal
->
tty
=
NULL
;
printk
(
KERN_NOTICE
"Voyager starting monitor thread
\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