diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ppc64/kernel/head.S | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/arch/ppc64/kernel/head.S b/arch/ppc64/kernel/head.S index c7462fae7662..a0ff707d6fea 100644 --- a/arch/ppc64/kernel/head.S +++ b/arch/ppc64/kernel/head.S | |||
@@ -1971,20 +1971,19 @@ _GLOBAL(smp_release_cpus) | |||
1971 | 1971 | ||
1972 | /* | 1972 | /* |
1973 | * We put a few things here that have to be page-aligned. | 1973 | * We put a few things here that have to be page-aligned. |
1974 | * This stuff goes at the beginning of the data segment, | 1974 | * This stuff goes at the beginning of the bss, which is page-aligned. |
1975 | * which is page-aligned. | ||
1976 | */ | 1975 | */ |
1977 | .data | 1976 | .section ".bss" |
1977 | |||
1978 | .align 12 | 1978 | .align 12 |
1979 | .globl sdata | 1979 | |
1980 | sdata: | ||
1981 | .globl empty_zero_page | 1980 | .globl empty_zero_page |
1982 | empty_zero_page: | 1981 | empty_zero_page: |
1983 | .space 4096 | 1982 | .space PAGE_SIZE |
1984 | 1983 | ||
1985 | .globl swapper_pg_dir | 1984 | .globl swapper_pg_dir |
1986 | swapper_pg_dir: | 1985 | swapper_pg_dir: |
1987 | .space 4096 | 1986 | .space PAGE_SIZE |
1988 | 1987 | ||
1989 | /* | 1988 | /* |
1990 | * This space gets a copy of optional info passed to us by the bootstrap | 1989 | * This space gets a copy of optional info passed to us by the bootstrap |