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
bcc408b7
Commit
bcc408b7
authored
Jun 20, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
rsync://rsync.kernel.org/pub/scm/linux/kernel/git/paulus/ppc64-2.6
parents
6f85fb81
d3588ba9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
arch/ppc64/kernel/iommu.c
arch/ppc64/kernel/iommu.c
+3
-0
arch/ppc64/kernel/pSeries_smp.c
arch/ppc64/kernel/pSeries_smp.c
+5
-4
arch/ppc64/kernel/rtasd.c
arch/ppc64/kernel/rtasd.c
+2
-2
No files found.
arch/ppc64/kernel/iommu.c
View file @
bcc408b7
...
...
@@ -423,6 +423,9 @@ struct iommu_table *iommu_init_table(struct iommu_table *tbl)
tbl
->
it_largehint
=
tbl
->
it_halfpoint
;
spin_lock_init
(
&
tbl
->
it_lock
);
/* Clear the hardware table in case firmware left allocations in it */
ppc_md
.
tce_free
(
tbl
,
tbl
->
it_offset
,
tbl
->
it_size
);
if
(
!
welcomed
)
{
printk
(
KERN_INFO
"IOMMU table initialized, virtual merging %s
\n
"
,
novmerge
?
"disabled"
:
"enabled"
);
...
...
arch/ppc64/kernel/pSeries_smp.c
View file @
bcc408b7
...
...
@@ -375,7 +375,7 @@ static int smp_pSeries_cpu_bootable(unsigned int nr)
* cpus are assumed to be secondary threads.
*/
if
(
system_state
<
SYSTEM_RUNNING
&&
c
ur_cpu_spec
->
cpu_features
&
CPU_FTR_SMT
&&
c
pu_has_feature
(
CPU_FTR_SMT
)
&&
!
smt_enabled_at_boot
&&
nr
%
2
!=
0
)
return
0
;
...
...
@@ -419,8 +419,8 @@ void __init smp_init_pSeries(void)
#endif
/* Mark threads which are still spinning in hold loops. */
if
(
c
ur_cpu_spec
->
cpu_features
&
CPU_FTR_SMT
)
for_each_present_cpu
(
i
)
{
if
(
c
pu_has_feature
(
CPU_FTR_SMT
))
{
for_each_present_cpu
(
i
)
{
if
(
i
%
2
==
0
)
/*
* Even-numbered logical cpus correspond to
...
...
@@ -428,8 +428,9 @@ void __init smp_init_pSeries(void)
*/
cpu_set
(
i
,
of_spin_map
);
}
else
}
else
{
of_spin_map
=
cpu_present_map
;
}
cpu_clear
(
boot_cpuid
,
of_spin_map
);
...
...
arch/ppc64/kernel/rtasd.c
View file @
bcc408b7
...
...
@@ -440,7 +440,7 @@ static int rtasd(void *unused)
goto
error
;
}
printk
(
KERN_
ERR
"RTAS daemon started
\n
"
);
printk
(
KERN_
INFO
"RTAS daemon started
\n
"
);
DEBUG
(
"will sleep for %d jiffies
\n
"
,
(
HZ
*
60
/
rtas_event_scan_rate
)
/
2
);
...
...
@@ -485,7 +485,7 @@ static int __init rtas_init(void)
/* No RTAS, only warn if we are on a pSeries box */
if
(
rtas_token
(
"event-scan"
)
==
RTAS_UNKNOWN_SERVICE
)
{
if
(
systemcfg
->
platform
&
PLATFORM_PSERIES
)
printk
(
KERN_
ERR
"rtasd: no event-scan on system
\n
"
);
printk
(
KERN_
INFO
"rtasd: no event-scan on system
\n
"
);
return
1
;
}
...
...
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