@ -73,7 +73,7 @@ SECTIONS
* that w e c a n p r o p e r l y l e a v e t h e s e
* as w r i t a b l e
* /
. = ALIGN( A S M _ P A G E _ S I Z E ) ;
. = ALIGN( P A G E _ S I Z E ) ;
data_ s t a r t = . ;
. = ALIGN( 1 6 ) ;
/* Exception table */
@ -119,12 +119,12 @@ SECTIONS
/ * nosave d a t a i s r e a l l y o n l y u s e d f o r s o f t w a r e s u s p e n d . . . i t ' s h e r e
* just i n c a s e w e e v e r i m p l e m e n t i t
* /
. = ALIGN( A S M _ P A G E _ S I Z E ) ;
. = ALIGN( P A G E _ S I Z E ) ;
_ _ nosave_ b e g i n = . ;
.data_nosave : {
* ( .data .nosave )
}
. = ALIGN( A S M _ P A G E _ S I Z E ) ;
. = ALIGN( P A G E _ S I Z E ) ;
_ _ nosave_ e n d = . ;
/* End of data section */
@ -133,7 +133,7 @@ SECTIONS
/* BSS */
_ _ bss_ s t a r t = . ;
/* page table entries need to be PAGE_SIZE aligned */
. = ALIGN( A S M _ P A G E _ S I Z E ) ;
. = ALIGN( P A G E _ S I Z E ) ;
.data .vmpages : {
* ( .data .vm0 .pmd )
* ( .data .vm0 .pgd )
@ -229,7 +229,7 @@ SECTIONS
* ( .exit .data )
}
# ifdef C O N F I G _ B L K _ D E V _ I N I T R D
. = ALIGN( A S M _ P A G E _ S I Z E ) ;
. = ALIGN( P A G E _ S I Z E ) ;
.init .ramfs : {
_ _ initramfs_ s t a r t = . ;
* ( .init .ramfs )
@ -237,8 +237,8 @@ SECTIONS
}
# endif
PERCPU( A S M _ P A G E _ S I Z E )
. = ALIGN( A S M _ P A G E _ S I Z E ) ;
PERCPU( P A G E _ S I Z E )
. = ALIGN( P A G E _ S I Z E ) ;
_ _ init_ e n d = . ;
/* freed after init ends here */
_ end = . ;