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
3e89759a
Commit
3e89759a
authored
Apr 27, 2002
by
Anton Blanchard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc64: fixes for iseries
parent
cf93039a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
arch/ppc64/kernel/iSeries_setup.c
arch/ppc64/kernel/iSeries_setup.c
+2
-2
arch/ppc64/kernel/idle.c
arch/ppc64/kernel/idle.c
+4
-1
No files found.
arch/ppc64/kernel/iSeries_setup.c
View file @
3e89759a
...
...
@@ -295,7 +295,7 @@ iSeries_init_early(void)
initrd_start
=
(
unsigned
long
)
__va
(
naca
->
xRamDisk
);
initrd_end
=
initrd_start
+
naca
->
xRamDiskSize
*
PAGE_SIZE
;
initrd_below_start_ok
=
1
;
// ramdisk in kernel space
ROOT_DEV
=
MKDEV
(
RAMDISK_MAJOR
,
0
);
ROOT_DEV
=
mk_kdev
(
RAMDISK_MAJOR
,
0
);
if
(
((
rd_size
*
1024
)
/
PAGE_SIZE
)
<
naca
->
xRamDiskSize
)
rd_size
=
(
naca
->
xRamDiskSize
*
PAGE_SIZE
)
/
1024
;
...
...
@@ -304,7 +304,7 @@ iSeries_init_early(void)
#endif
/* CONFIG_BLK_DEV_INITRD */
{
/* ROOT_DEV =
MKDEV
( VIODASD_MAJOR, 1 ); */
/* ROOT_DEV =
mk_kdev
( VIODASD_MAJOR, 1 ); */
}
iSeries_recal_tb
=
get_tb
();
...
...
arch/ppc64/kernel/idle.c
View file @
3e89759a
...
...
@@ -68,15 +68,18 @@ static void yield_shared_processor(void)
int
cpu_idle
(
void
)
{
struct
Paca
*
lpaca
;
struct
paca_struct
*
lpaca
;
long
oldval
;
unsigned
long
CTRL
;
#warning fix iseries run light
#if 0
/* ensure iSeries run light will be out when idle */
current->thread.flags &= ~PPC_FLAG_RUN_LIGHT;
CTRL = mfspr(CTRLF);
CTRL &= ~RUNLATCH;
mtspr(CTRLT, CTRL);
#endif
lpaca
=
get_paca
();
...
...
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