* [GIT PULL] MIPS fixes for v6.8
@ 2024-01-28 13:28 Thomas Bogendoerfer
2024-01-28 18:46 ` Linus Torvalds
2024-01-28 18:47 ` pr-tracker-bot
0 siblings, 2 replies; 5+ messages in thread
From: Thomas Bogendoerfer @ 2024-01-28 13:28 UTC (permalink / raw)
To: torvalds; +Cc: linux-mips, linux-kernel
The following changes since commit 6613476e225e090cc9aad49be7fa504e290dd33d:
Linux 6.8-rc1 (2024-01-21 14:11:32 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git/ tags/mips-fixes_6.8_1
for you to fetch changes up to 59be5c35850171e307ca5d3d703ee9ff4096b948:
mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan (2024-01-27 11:08:04 +0100)
----------------------------------------------------------------
- fix for boot issue on single core Lantiq Danube devices
- fix for boot issue on Loongson64 platforms
- fix for improper FPU setup
- fix missing prototypes issues
----------------------------------------------------------------
Aleksander Jan Bajkowski (1):
MIPS: lantiq: register smp_ops on non-smp platforms
Florian Fainelli (3):
MIPS: Cobalt: Fix missing prototypes
MIPS: Alchemy: Fix missing prototypes
MIPS: BCM63XX: Fix missing prototypes
Huang Pei (3):
MIPS: reserve exception vector space ONLY ONCE
MIPS: loongson64: set nid for reserved memblock region
MIPS: loongson64: set nid for reserved memblock region
Thomas Bogendoerfer (5):
MIPS: sgi-ip27: Fix missing prototypes
MIPS: fw arc: Fix missing prototypes
MIPS: sgi-ip30: Fix missing prototypes
MIPS: sgi-ip32: Fix missing prototypes
Revert "MIPS: loongson64: set nid for reserved memblock region"
Xi Ruoyao (1):
mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan
arch/mips/alchemy/common/prom.c | 1 +
arch/mips/alchemy/common/setup.c | 4 +-
arch/mips/bcm63xx/boards/board_bcm963xx.c | 2 +-
arch/mips/bcm63xx/dev-rng.c | 2 +-
arch/mips/bcm63xx/dev-uart.c | 1 +
arch/mips/bcm63xx/dev-wdt.c | 2 +-
arch/mips/bcm63xx/irq.c | 2 +-
arch/mips/bcm63xx/setup.c | 2 +-
arch/mips/bcm63xx/timer.c | 2 +-
arch/mips/cobalt/setup.c | 3 -
arch/mips/fw/arc/memory.c | 2 +-
arch/mips/include/asm/mach-au1x00/au1000.h | 3 +
arch/mips/include/asm/mach-cobalt/cobalt.h | 3 +
arch/mips/kernel/elf.c | 6 +
arch/mips/kernel/traps.c | 8 +-
arch/mips/lantiq/prom.c | 7 +-
arch/mips/loongson64/init.c | 3 +
arch/mips/loongson64/numa.c | 2 +
arch/mips/sgi-ip27/Makefile | 2 +-
arch/mips/sgi-ip27/ip27-berr.c | 4 +-
arch/mips/sgi-ip27/ip27-common.h | 2 +
arch/mips/sgi-ip27/ip27-hubio.c | 185 -----------------------------
arch/mips/sgi-ip27/ip27-irq.c | 2 +
arch/mips/sgi-ip27/ip27-memory.c | 1 +
arch/mips/sgi-ip27/ip27-nmi.c | 25 ++--
arch/mips/sgi-ip30/ip30-console.c | 1 +
arch/mips/sgi-ip30/ip30-setup.c | 1 +
arch/mips/sgi-ip32/crime.c | 6 +-
arch/mips/sgi-ip32/ip32-berr.c | 2 +
arch/mips/sgi-ip32/ip32-common.h | 15 +++
arch/mips/sgi-ip32/ip32-irq.c | 6 +-
arch/mips/sgi-ip32/ip32-memory.c | 1 +
arch/mips/sgi-ip32/ip32-reset.c | 2 +
arch/mips/sgi-ip32/ip32-setup.c | 3 +-
34 files changed, 83 insertions(+), 230 deletions(-)
delete mode 100644 arch/mips/sgi-ip27/ip27-hubio.c
create mode 100644 arch/mips/sgi-ip32/ip32-common.h
--
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea. [ RFC1925, 2.3 ]
^ permalink raw reply [flat|nested] 5+ messages in thread* [GIT PULL] MIPS fixes for v6.8
@ 2024-02-14 16:54 Thomas Bogendoerfer
2024-02-15 0:12 ` pr-tracker-bot
0 siblings, 1 reply; 5+ messages in thread
From: Thomas Bogendoerfer @ 2024-02-14 16:54 UTC (permalink / raw)
To: torvalds; +Cc: linux-mips, linux-kernel
The following changes since commit 841c35169323cd833294798e58b9bf63fa4fa1de:
Linux 6.8-rc4 (2024-02-11 12:18:13 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git/ tags/mips-fixes_6.8_2
for you to fetch changes up to 8fa5070833886268e4fb646daaca99f725b378e9:
mm/memory: Use exception ip to search exception tables (2024-02-12 23:04:42 +0100)
----------------------------------------------------------------
- Fix for broken ipv6 checksums
- Fix handling of exceptions in delay slots
----------------------------------------------------------------
Guenter Roeck (1):
MIPS: Add 'memory' clobber to csum_ipv6_magic() inline assembler
Jiaxun Yang (3):
ptrace: Introduce exception_ip arch hook
MIPS: Clear Cause.BD in instruction_pointer_set
mm/memory: Use exception ip to search exception tables
arch/mips/include/asm/checksum.h | 3 ++-
arch/mips/include/asm/ptrace.h | 3 +++
arch/mips/kernel/ptrace.c | 7 +++++++
include/linux/ptrace.h | 4 ++++
mm/memory.c | 4 ++--
5 files changed, 18 insertions(+), 3 deletions(-)
--
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea. [ RFC1925, 2.3 ]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-02-15 0:12 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-28 13:28 [GIT PULL] MIPS fixes for v6.8 Thomas Bogendoerfer
2024-01-28 18:46 ` Linus Torvalds
2024-01-28 18:47 ` pr-tracker-bot
-- strict thread matches above, loose matches on Subject: below --
2024-02-14 16:54 Thomas Bogendoerfer
2024-02-15 0:12 ` pr-tracker-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox