linux-parisc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] parisc architecture updates for kernel v5.10-rc1
@ 2020-10-15  7:20 Helge Deller
  2020-10-15 23:08 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Helge Deller @ 2020-10-15  7:20 UTC (permalink / raw)
  To: Linus Torvalds, linux-kernel, linux-parisc, James Bottomley,
	John David Anglin

Hi Linus,

please pull the fixes and updates for the parisc architecture for kernel 5.10-rc1 from:

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

This patchset includes:
* Added fw_cfg support for parisc on qemu
* Added font support in sti text console driver for byte- and word-mode ROMs
* Switch to more fine grained lws locks and improve spinlock handling
* Add ioread64_hi_lo() and iowrite64_hi_lo() to avoid 0-day linking errors
* Mark pointers volatile in __xchg8(), __xchg32() and __xchg64() to help compiler
* Header file cleanups, mostly removal of unused HP-UX compat defines
* Drop one bit from our O_NONBLOCK define to become now 000200000
* Add MAP_UNINITIALIZED define to avoid userspace compile errors
* Drop CONFIG_IDE from defconfigs
* Speed up synchronize_caches() on UP machines
* Rewrite tlb flush threshold calculation
* Comment fixes and cleanups

Thanks,
Helge

----------------------------------------------------------------
The following changes since commit 3e4fb4346c781068610d03c12b16c0cfb0fd24a3:

  Merge tag 'spdx-5.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx (2020-10-14 16:19:42 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 7ff3f14ddc355bfbc94c766f43b90606b1f79e83:

  parisc/sticon: Add user font support (2020-10-15 08:12:59 +0200)

----------------------------------------------------------------
Christoph Hellwig (1):
      parisc: disable CONFIG_IDE in defconfigs

Helge Deller (11):
      fw_cfg: Add support for parisc architecture
      parisc: Add qemu fw_cfg interface
      parisc: Avoid external interrupts when IPI finishes
      parisc: Drop HP-UX specific fcntl and signal flags
      parisc: Define O_NONBLOCK to become 000200000
      parisc: Drop useless comments in uapi/asm/signal.h
      parisc: Add ioread64_hi_lo() and iowrite64_hi_lo()
      parisc: Install vmlinuz instead of zImage file
      parisc: Add MAP_UNINITIALIZED define
      parisc/sticon: Always register sticon console driver
      parisc/sticon: Add user font support

John David Anglin (6):
      parisc: Add alternative patching to synchronize_caches define
      parisc: Fix comments and enable interrupts later
      parisc: Mark pointers volatile in __xchg8(), __xchg32() and __xchg64()
      parisc: Switch to more fine grained lws locks
      parisc: Rewrite tlb flush threshold calculation
      parisc: Improve spinlock handling

 arch/parisc/Kconfig                         |   1 +
 arch/parisc/configs/generic-32bit_defconfig |   6 +-
 arch/parisc/configs/generic-64bit_defconfig |   6 +-
 arch/parisc/include/asm/barrier.h           |   6 +-
 arch/parisc/include/asm/cmpxchg.h           |  14 +-
 arch/parisc/include/asm/futex.h             |   4 +-
 arch/parisc/include/asm/socket.h            |   4 +-
 arch/parisc/include/asm/spinlock.h          |  23 ++-
 arch/parisc/include/uapi/asm/fcntl.h        |   7 +-
 arch/parisc/include/uapi/asm/mman.h         |   1 +
 arch/parisc/include/uapi/asm/signal.h       |   5 +-
 arch/parisc/install.sh                      |   2 +-
 arch/parisc/kernel/cache.c                  |  18 +-
 arch/parisc/kernel/entry.S                  |  14 +-
 arch/parisc/kernel/inventory.c              |  30 +++
 arch/parisc/kernel/smp.c                    |   9 +-
 arch/parisc/kernel/syscall.S                |  10 +-
 arch/parisc/lib/bitops.c                    |   6 +-
 arch/parisc/lib/iomap.c                     |  18 ++
 drivers/firmware/Kconfig                    |   2 +-
 drivers/firmware/qemu_fw_cfg.c              |   3 +
 drivers/video/console/Kconfig               |   1 +
 drivers/video/console/sticon.c              | 297 ++++++++++++++++------------
 drivers/video/console/sticore.c             | 284 +++++++++++++-------------
 drivers/video/fbdev/sticore.h               |  27 ++-
 tools/arch/parisc/include/uapi/asm/mman.h   |   1 -
 26 files changed, 453 insertions(+), 346 deletions(-)

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

* Re: [GIT PULL] parisc architecture updates for kernel v5.10-rc1
  2020-10-15  7:20 [GIT PULL] parisc architecture updates for kernel v5.10-rc1 Helge Deller
@ 2020-10-15 23:08 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-10-15 23:08 UTC (permalink / raw)
  To: Helge Deller
  Cc: Linus Torvalds, linux-kernel, linux-parisc, James Bottomley,
	John David Anglin

The pull request you sent on Thu, 15 Oct 2020 09:20:25 +0200:

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

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/7286d2a37eb955c5eeec2b042844f1c1b3ff0fe1

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* Re: [GIT PULL] parisc architecture updates for kernel v5.10-rc1
  2020-10-25 12:07 Helge Deller
@ 2020-10-25 18:35 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-10-25 18:35 UTC (permalink / raw)
  To: Helge Deller
  Cc: Linus Torvalds, linux-kernel, linux-parisc, James Bottomley,
	John David Anglin

The pull request you sent on Sun, 25 Oct 2020 13:07:47 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git parisc-5.10-2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/f9c25d98645ec4af00c01a70681d2d4ab71622d0

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* [GIT PULL] parisc architecture updates for kernel v5.10-rc1
@ 2020-10-25 12:07 Helge Deller
  2020-10-25 18:35 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Helge Deller @ 2020-10-25 12:07 UTC (permalink / raw)
  To: Linus Torvalds, linux-kernel, linux-parisc, James Bottomley,
	John David Anglin

Hi Linus,

please pull a few last fixes and updates for the parisc architecture for kernel 5.10-rc1 from:

  git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git parisc-5.10-2

This patchset includes:

* During this merge window O_NONBLOCK was changed to become 000200000, but we
  missed that the syscalls timerfd_create(), signalfd4(), eventfd2(), pipe2(),
  inotify_init1() and userfaultfd() do a strict bit-wise check of the flags
  parameter. To provide backward compatibility with existing userspace we introduce
  parisc specific wrappers for those syscalls which filter out the old O_NONBLOCK
  value and replaces it with the new one.

* Prevent HIL bus driver to get stuck when keyboard or mouse isn't attached

* Improve error return codes when setting rtc time

* Minor documentation fix in pata_ns87415.c

Thanks,
Helge

----------------------------------------------------------------
The following changes since commit f9893351acaecf0a414baf9942b48d5bb5c688c6:

  Merge tag 'kconfig-v5.10' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild (2020-10-22 13:20:39 -0700)

are available in the Git repository at:

  http://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git parisc-5.10-2

for you to fetch changes up to 2e34ae02a9b49d1f459d811ae77d72d300584a69:

  ata: pata_ns87415.c: Document support on parisc with superio chip (2020-10-23 20:23:47 +0200)

----------------------------------------------------------------
Helge Deller (4):
      parisc: Improve error return codes when setting rtc time
      hil/parisc: Disable HIL driver when it gets stuck
      parisc: Add wrapper syscalls to fix O_NONBLOCK flag usage
      ata: pata_ns87415.c: Document support on parisc with superio chip

 arch/parisc/kernel/sys_parisc.c         | 73 ++++++++++++++++++++++++++++++++-
 arch/parisc/kernel/syscalls/syscall.tbl | 12 +++---
 arch/parisc/kernel/time.c               | 11 ++++-
 drivers/ata/pata_ns87415.c              |  3 +-
 drivers/input/serio/hil_mlc.c           | 21 ++++++++--
 drivers/input/serio/hp_sdc_mlc.c        |  8 ++--
 include/linux/hil_mlc.h                 |  2 +-
 7 files changed, 111 insertions(+), 19 deletions(-)

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

end of thread, other threads:[~2020-10-25 18:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-15  7:20 [GIT PULL] parisc architecture updates for kernel v5.10-rc1 Helge Deller
2020-10-15 23:08 ` pr-tracker-bot
2020-10-25 12:07 Helge Deller
2020-10-25 18:35 ` 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;
as well as URLs for NNTP newsgroup(s).