diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-02-12 22:18:17 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-02-12 22:18:17 +0000 |
commit | 6bc4d98ec7d062711ae019882ec2e7dc21c365ea (patch) | |
tree | 86554e41f786a96bfd4c3401e5fc8aa06148f547 /target/linux | |
parent | 8b8ebe8bafac37d03cfdbfb6f3878f2a3ba4b86f (diff) | |
download | upstream-6bc4d98ec7d062711ae019882ec2e7dc21c365ea.tar.gz upstream-6bc4d98ec7d062711ae019882ec2e7dc21c365ea.tar.bz2 upstream-6bc4d98ec7d062711ae019882ec2e7dc21c365ea.zip |
add kernel branch emulation fix from #1345
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6289 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/generic-2.4/patches/115-branch_emul_fix.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/generic-2.4/patches/115-branch_emul_fix.patch b/target/linux/generic-2.4/patches/115-branch_emul_fix.patch new file mode 100644 index 0000000000..a873a3882b --- /dev/null +++ b/target/linux/generic-2.4/patches/115-branch_emul_fix.patch @@ -0,0 +1,11 @@ +--- linux.old/arch/mips/kernel/branch.c 2006-12-23 21:34:20.000000000 +0100 ++++ linux.dev/arch/mips/kernel/branch.c 2007-01-24 18:05:34.000000000 +0100 +@@ -170,7 +170,7 @@ + bit = (insn.i_format.rt >> 2); + bit += (bit != 0); + bit += 23; +- switch (insn.i_format.rt) { ++ switch (insn.i_format.rt & 3) { + case 0: /* bc1f */ + case 2: /* bc1fl */ + if (~fcr31 & (1 << bit)) |