linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] parisc architecture updates for kernel v4.20
@ 2018-10-23 15:00 Helge Deller
  2018-10-23 19:03 ` Linus Torvalds
  0 siblings, 1 reply; 2+ messages in thread
From: Helge Deller @ 2018-10-23 15:00 UTC (permalink / raw)
  To: Linus Torvalds, linux-kernel, linux-parisc, James Bottomley,
	John David Anglin
  Cc: Christoph Hellwig, Masahiro Yamada, Greg Kroah-Hartman

Hi Linus,

please pull the parisc architecture patches and fixes for 4.20-rc1 from:

  git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git parisc-4.20-1

Lots of small fixes and enhancements, most noteably:

- Many TLB and cache flush optimizations (Dave)
- Fixed HPMC/crash handler on 64-bit kernel (Dave and myself)
- Added alternative infrastructre. The kernel now live-patches itself
  for various situations, e.g. replace SMP code when running on one CPU
  only or drop cache flushes when system has no cache installed.
- vmlinuz now contains a full copy of the compressed vmlinux file. This
  simplifies debugging the currently booted kernel.
- Unused driver removal (Christoph)
- Reduced warnings of Dino PCI bridge when running in qemu
- Removed gcc version check (Masahiro)

Thanks,
Helge

----------------------------------------------------------------
Christoph Hellwig (1):
      parisc: remove the dead ccio-rm-dma driver

Helge Deller (14):
      parisc: Use PARISC_ITLB_TRAP constant in entry.S
      parisc: Add SYSTEM_INFO and REGISTER TOC PAT functions
      parisc: Clean up crash header output
      parisc: dino: Utilize DINO_MASK_IRQ() macro
      parisc: Ratelimit dino stuck interrupt warnings
      parisc: Fix map_pages() to not overwrite existing pte entries
      parisc: Fix exported address of os_hpmc handler
      extract-vmlinux: Check for uncompressed image as fallback
      parisc: Include compressed vmlinux file in vmlinuz boot kernel
      parisc: Add alternative coding infrastructure
      parisc: Use zdep for shlw macro on PA1.1 and PA2.0
      parisc: Drop two instructions from pte lookup code
      parisc: Add PDC PAT cell_info() and pd_get_pdc_revisions() functions
      parisc: Retrieve and display the PDC PAT capabilities

John David Anglin (7):
      parisc: Reorder TLB flush timing calculation
      parisc: Remove PTE load and fault check from L2_ptep macro
      parisc: Release spinlocks using ordered store
      parisc: Purge TLB entries after updating page table entry and set page accessed flag in TLB handler
      parisc: Fix address in HPMC IVA
      parisc: Remove pte_inserted define
      parisc: Optimze cache flush algorithms

Masahiro Yamada (1):
      parisc: remove check for minimum required GCC version

 arch/parisc/Makefile                      |   9 -
 arch/parisc/boot/compressed/Makefile      |   4 +-
 arch/parisc/boot/compressed/misc.c        |  95 ++++++++--
 arch/parisc/boot/compressed/vmlinux.lds.S |  10 +-
 arch/parisc/include/asm/alternative.h     |  47 +++++
 arch/parisc/include/asm/assembly.h        |   9 +-
 arch/parisc/include/asm/cache.h           |  22 ++-
 arch/parisc/include/asm/page.h            |  12 +-
 arch/parisc/include/asm/pdc.h             |   1 +
 arch/parisc/include/asm/pdcpat.h          |  62 +++++--
 arch/parisc/include/asm/pgtable.h         |  33 ++--
 arch/parisc/include/asm/sections.h        |   2 +
 arch/parisc/include/asm/spinlock.h        |   4 +-
 arch/parisc/include/asm/tlbflush.h        |   3 +-
 arch/parisc/kernel/cache.c                |  63 ++++---
 arch/parisc/kernel/entry.S                |  34 ++--
 arch/parisc/kernel/firmware.c             |  57 ++++++
 arch/parisc/kernel/hpmc.S                 |   3 +-
 arch/parisc/kernel/inventory.c            |  10 ++
 arch/parisc/kernel/pacache.S              | 280 ++++++++++++++++++++++++++----
 arch/parisc/kernel/setup.c                |  81 +++++++++
 arch/parisc/kernel/signal.c               |   1 -
 arch/parisc/kernel/syscall.S              |  12 +-
 arch/parisc/kernel/traps.c                |   7 +-
 arch/parisc/kernel/vmlinux.lds.S          |   6 +
 arch/parisc/mm/init.c                     |  23 ++-
 drivers/parisc/Makefile                   |   3 -
 drivers/parisc/ccio-dma.c                 |  12 +-
 drivers/parisc/ccio-rm-dma.c              | 202 ---------------------
 drivers/parisc/dino.c                     |   5 +-
 drivers/parisc/sba_iommu.c                |  17 +-
 scripts/extract-vmlinux                   |   6 +-
 32 files changed, 721 insertions(+), 414 deletions(-)
 create mode 100644 arch/parisc/include/asm/alternative.h
 delete mode 100644 drivers/parisc/ccio-rm-dma.c

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] parisc architecture updates for kernel v4.20
  2018-10-23 15:00 [GIT PULL] parisc architecture updates for kernel v4.20 Helge Deller
@ 2018-10-23 19:03 ` Linus Torvalds
  0 siblings, 0 replies; 2+ messages in thread
From: Linus Torvalds @ 2018-10-23 19:03 UTC (permalink / raw)
  To: deller
  Cc: Linux Kernel Mailing List, linux-parisc, James.Bottomley,
	dave.anglin, Christoph Hellwig, yamada.masahiro, Greg KH

On Tue, Oct 23, 2018 at 4:00 PM Helge Deller <deller@gmx.de> wrote:
>
> Lots of small fixes and enhancements, most noteably:

Pulled, thanks,

               Linus

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-10-23 19:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-23 15:00 [GIT PULL] parisc architecture updates for kernel v4.20 Helge Deller
2018-10-23 19:03 ` Linus Torvalds

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).