sh: Explicit alignment for PAGE_SIZE in copy/clear_page().

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
Paul Mundt
2007-11-30 16:34:26 +09:00
parent 1efe4ce3ca
commit 325df7f204
2 changed files with 4 additions and 1 deletions

View File

@@ -50,6 +50,8 @@ ENTRY(clear_page)
! !
rts rts
nop nop
.balign 4
.Llimit: .long (PAGE_SIZE-28) .Llimit: .long (PAGE_SIZE-28)
ENTRY(__clear_user) ENTRY(__clear_user)

View File

@@ -68,8 +68,9 @@ ENTRY(copy_page)
rts rts
nop nop
.align 2 .balign 4
.Lpsz: .long PAGE_SIZE .Lpsz: .long PAGE_SIZE
/* /*
* __kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n); * __kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n);
* Return the number of bytes NOT copied * Return the number of bytes NOT copied