| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH v2] MIPS: fixes and cleanups for the compressed kernel support |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Fri, 30 Oct 2009 09:13:42 +0800 |
| Cc: | linux-mips@linux-mips.org, David Daney <ddaney@caviumnetworks.com>, Wu Zhangjin <wuzhangjin@gmail.com> |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=9PiPCV6el15eFxtO4VsJzxODHioXX/3WPwjdG5BUu0U=; b=KN8RCQDuTObpzCJ16/NwP2vPvmJrRP2JQOGKMtrjc9whv0UqYohRcFY/Kwtrd1hD0O 8uJOSepbBbFz9PGR0m90Ob4wwCxm0YwbdZWR3cJUIPhy/YOfqgs69OMyQQE71OUrvz+W 9Cn6eGkSlrDfVp1W2mkScWQnrhyreRux5ca1k= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=L63fNwCzDrhBOHFz4lKjfBaVBtw3iPookOVpcPlPttx/2xuTA6yhAMKxe0UQKByrD7 nSCdfc5R324JXSuu17b1P6lIs6yCcBlW1uIcVAerVZ5hgWmGYOiNV0ds8ZXYMg0mhUVk s7Psy4sWAvcZ8Q6Vax20sm46ftimvI0i2g64Q= |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
From: Wu Zhangjin <wuzhangjin@gmail.com> This patch indents the instructions in the delay slot of the file which has a ".set noreorder" added. and also, the "addu a0, 4" instruction is replaced by "addiu a0, a0, 4". (This is against the commit c6adcc73663a71f2aa9e66796a9bd57fcb6a349a(MIPS: add support for gzip/bzip2/lzma compressed kernel images) in the mips-for-linux-next branch of Ralf's http://www.linux-mips.org/git?p=upstream-sfr.git;a=summary This -v2 revision incorporates the feedback from "Maciej W. Rozycki" <macro@linux-mips.org> and David Daney <ddaney@caviumnetworks.com> Hi, Ralf, could you please merge it into you mips-for-linux-next branch?) Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com> --- arch/mips/boot/compressed/head.S | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/arch/mips/boot/compressed/head.S b/arch/mips/boot/compressed/head.S index e23f25e..cd447e2 100644 --- a/arch/mips/boot/compressed/head.S +++ b/arch/mips/boot/compressed/head.S @@ -30,7 +30,7 @@ start: PTR_LA a2, _end 1: sw zero, 0(a0) bne a2, a0, 1b - addu a0, 4 + addiu a0, a0, 4 PTR_LA a0, (.heap) /* heap address */ PTR_LA sp, (.stack + 8192) /* stack address */ @@ -38,7 +38,7 @@ start: PTR_LA ra, 2f PTR_LA k0, decompress_kernel jr k0 - nop + nop 2: move a0, s0 move a1, s1 @@ -46,9 +46,10 @@ start: move a3, s3 PTR_LI k0, KERNEL_ENTRY jr k0 - nop + nop 3: b 3b + nop END(start) .comm .heap,BOOT_HEAP_SIZE,4 -- 1.6.2.1 |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] MIPS: Add option to pass return address location to _mcount., David Daney |
|---|---|
| Next by Date: | Re: [PATCH v2] MIPS: fixes and cleanups for the compressed kernel support, Maciej W. Rozycki |
| Previous by Thread: | [PATCH] MIPS: Add option to pass return address location to _mcount, Wu Zhangjin |
| Next by Thread: | Re: [PATCH v2] MIPS: fixes and cleanups for the compressed kernel support, Maciej W. Rozycki |
| Indexes: | [Date] [Thread] [Top] [All Lists] |