All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] second batch of s390 updates for 5.15 merge window
@ 2021-09-09 12:48 Heiko Carstens
  2021-09-09 20:03 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Heiko Carstens @ 2021-09-09 12:48 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Vasily Gorbik, Christian Borntraeger, linux-s390, linux-kernel

Hi Linus,

please pull the second batch of s390 updates for the 5.15 merge
window. Besides the xpram device driver removal it is all about
fixes and cleanups.

Thanks,
Heiko

The following changes since commit c7a5238ef68b98130fe36716bb3fa44502f56001:

  Merge tag 's390-5.15-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux (2021-08-30 13:07:15 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git tags/s390-5.15-2

for you to fetch changes up to bb9c14ad267d25dd77ceccbcfd69804bdb7240f5:

  hugetlbfs: s390 is always 64bit (2021-09-08 18:58:35 +0200)

----------------------------------------------------------------
2nd batch of s390 updates for 5.15 merge window

- Fix topology update on cpu hotplug, so notifiers see expected masks. This bug
  was uncovered with SCHED_CORE support.

- Fix stack unwinding so that the correct number of entries are omitted like
  expected by common code. This fixes KCSAN selftests.

- Add kmemleak annotation to stack_alloc to avoid false positive kmemleak
  warnings.

- Avoid layering violation in common I/O code and don't unregister subchannel
  from child-drivers.

- Remove xpram device driver for which no real use case exists since the kernel
  is 64 bit only. Also all hypervisors got required support removed in the
  meantime, which means the xpram device driver is dead code.

- Fix -ENODEV handling of clp_get_state in our PCI code.

- Enable KFENCE in debug defconfig.

- Cleanup hugetlbfs s390 specific Kconfig dependency.

- Quite a lot of trivial fixes to get rid of "W=1" warnings, and and other
  simple cleanups.

----------------------------------------------------------------
David Hildenbrand (1):
      hugetlbfs: s390 is always 64bit

Heiko Carstens (12):
      s390/entry: make oklabel within CHKSTG macro local
      s390/mm: fix kernel doc comments
      s390/cpum_cf: move array from header to C file
      s390/con3270: use proper type for tasklet function
      s390/ctrlchar: fix kernel doc comment
      s390/cio: fix kernel doc comment
      s390: remove xpram device driver
      s390/hmcdrv_ftp: fix kernel doc comment
      s390/sclp: add __nonstring annotation
      scsi: zfcp: fix kernel doc comments
      s390/zcrypt: remove incorrect kernel doc indicators
      s390/ftrace: remove incorrect __va usage

Niklas Schnelle (1):
      s390/pci: fix clp_get_state() handling of -ENODEV

Pierre Morel (1):
      s390/pci: read clp_list_pci_req only once

Sven Schnelle (3):
      s390: add kmemleak annotation in stack_alloc()
      s390/configs: enable CONFIG_KFENCE in debug_defconfig
      s390/topology: fix topology information when calling cpu hotplug notifiers

Vasily Gorbik (1):
      s390/unwind: use current_frame_address() to unwind current task

Vineeth Vijayan (1):
      s390/cio: dont unregister subchannel from child-drivers

 arch/s390/Kconfig                      |   1 +
 arch/s390/configs/debug_defconfig      |   1 +
 arch/s390/configs/defconfig            |   1 -
 arch/s390/configs/zfcpdump_defconfig   |   1 -
 arch/s390/include/asm/cpu_mcf.h        |   7 -
 arch/s390/include/asm/smp.h            |   1 +
 arch/s390/include/asm/stacktrace.h     |  20 +-
 arch/s390/include/asm/unwind.h         |   8 +-
 arch/s390/kernel/entry.S               |   4 +-
 arch/s390/kernel/ftrace.c              |   4 +-
 arch/s390/kernel/perf_cpum_cf.c        |   8 +
 arch/s390/kernel/setup.c               |  10 +-
 arch/s390/kernel/smp.c                 |   9 +-
 arch/s390/kernel/topology.c            |  13 +-
 arch/s390/mm/gmap.c                    |  11 +-
 arch/s390/mm/pgtable.c                 |   4 +-
 arch/s390/pci/pci_clp.c                |   9 +-
 drivers/s390/block/Kconfig             |  11 -
 drivers/s390/block/Makefile            |   1 -
 drivers/s390/block/xpram.c             | 416 ---------------------------------
 drivers/s390/char/con3270.c            |   7 +-
 drivers/s390/char/ctrlchar.c           |  11 +-
 drivers/s390/char/hmcdrv_ftp.c         |   2 +-
 drivers/s390/char/sclp.c               |   2 +-
 drivers/s390/cio/blacklist.c           |   5 +-
 drivers/s390/cio/device.c              |  21 +-
 drivers/s390/cio/device_id.c           |   2 +-
 drivers/s390/crypto/zcrypt_api.c       |  14 +-
 drivers/s390/crypto/zcrypt_cex2a.c     |   8 +-
 drivers/s390/crypto/zcrypt_cex2c.c     |  10 +-
 drivers/s390/crypto/zcrypt_cex4.c      |   8 +-
 drivers/s390/crypto/zcrypt_msgtype50.c |  18 +-
 drivers/s390/crypto/zcrypt_msgtype6.c  |  38 +--
 drivers/s390/scsi/zfcp_dbf.c           |   4 +-
 drivers/s390/scsi/zfcp_fsf.c           |   2 +-
 drivers/s390/scsi/zfcp_qdio.c          |   2 +-
 drivers/s390/scsi/zfcp_unit.c          |   4 +-
 fs/Kconfig                             |   3 +-
 38 files changed, 139 insertions(+), 562 deletions(-)
 delete mode 100644 drivers/s390/block/xpram.c

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

* Re: [GIT PULL] second batch of s390 updates for 5.15 merge window
  2021-09-09 12:48 [GIT PULL] second batch of s390 updates for 5.15 merge window Heiko Carstens
@ 2021-09-09 20:03 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2021-09-09 20:03 UTC (permalink / raw)
  To: Heiko Carstens
  Cc: Linus Torvalds, Vasily Gorbik, Christian Borntraeger, linux-s390,
	linux-kernel

The pull request you sent on Thu, 9 Sep 2021 14:48:18 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git tags/s390-5.15-2

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

Thank you!

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

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

end of thread, other threads:[~2021-09-09 20:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-09 12:48 [GIT PULL] second batch of s390 updates for 5.15 merge window Heiko Carstens
2021-09-09 20:03 ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.