All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Weinberger <richard@nod.at>
To: torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
	linux-um <linux-um@lists.infradead.org>
Subject: [GIT PULL] UML changes for v5.20-rc1
Date: Fri, 5 Aug 2022 22:56:14 +0200 (CEST)	[thread overview]
Message-ID: <922167294.69837.1659732974689.JavaMail.zimbra@nod.at> (raw)

Linus,

The following changes since commit 32346491ddf24599decca06190ebca03ff9de7f8:

  Linux 5.19-rc6 (2022-07-10 14:40:51 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git tags/for-linus-5.20-rc1

for you to fetch changes up to af3e16101cee95efaa72095fe06c15ec0b8eb195:

  um: include sys/types.h for size_t (2022-07-17 23:47:18 +0200)

----------------------------------------------------------------
This pull request contains the following changes for UML:

- KASAN support for x86_64
- noreboot command line option, just like qemu's -no-reboot
- Various fixes and cleanups

----------------------------------------------------------------
Benjamin Beichler (1):
      um: Remove straying parenthesis

Christopher Obbard (1):
      um: random: Don't initialise hwrng struct with zero

David Gow (2):
      arch: um: Fix build for statically linked UML w/ constructors
      mm: Add PAGE_ALIGN_DOWN macro

Guenter Roeck (1):
      um: Replace to_phys() and to_virt() with less generic function names

Haowen Bai (1):
      um: remove unused variable

Jason A. Donenfeld (3):
      um: include linux/stddef.h for __always_inline
      um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups
      um: include sys/types.h for size_t

Johannes Berg (1):
      um: x86: print RIP with symbol

Juerg Haefliger (3):
      um: Kconfig: Fix indentation
      um/drivers: Kconfig: Fix indentation
      x86/um: Kconfig: Fix indentation

Patricia Alfonso (1):
      UML: add support for KASAN under x86_64

Peter Zijlstra (1):
      um: Add missing apply_returns()

Tobias Klauser (1):
      um: remove unused mm_copy_segments

 arch/um/Kconfig                         | 17 ++++++++++-
 arch/um/drivers/Kconfig                 | 54 ++++++++++++++++-----------------
 arch/um/drivers/random.c                |  2 +-
 arch/um/include/asm/common.lds.S        |  2 ++
 arch/um/include/asm/kasan.h             | 37 ++++++++++++++++++++++
 arch/um/include/asm/page.h              |  4 +--
 arch/um/include/asm/processor-generic.h |  5 ---
 arch/um/include/asm/xor.h               |  2 +-
 arch/um/include/shared/mem.h            |  4 +--
 arch/um/include/shared/user.h           |  3 +-
 arch/um/kernel/dyn.lds.S                |  6 +++-
 arch/um/kernel/mem.c                    | 19 ++++++++++++
 arch/um/kernel/stacktrace.c             |  2 +-
 arch/um/kernel/um_arch.c                |  4 +++
 arch/um/kernel/uml.lds.S                |  1 +
 arch/um/os-Linux/mem.c                  | 22 ++++++++++++++
 arch/um/os-Linux/skas/process.c         | 23 +++++++++++---
 arch/um/os-Linux/umid.c                 |  3 +-
 arch/um/os-Linux/user_syms.c            |  4 +--
 arch/x86/um/Kconfig                     | 10 +++---
 arch/x86/um/Makefile                    |  3 +-
 arch/x86/um/shared/sysdep/stub_64.h     |  1 +
 arch/x86/um/sysrq_64.c                  |  4 +--
 arch/x86/um/vdso/Makefile               |  3 ++
 include/linux/mm.h                      |  3 ++
 mm/kasan/shadow.c                       | 29 ++++++++++++++++--
 26 files changed, 207 insertions(+), 60 deletions(-)
 create mode 100644 arch/um/include/asm/kasan.h

_______________________________________________
linux-um mailing list
linux-um@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-um


WARNING: multiple messages have this Message-ID (diff)
From: Richard Weinberger <richard@nod.at>
To: torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
	linux-um <linux-um@lists.infradead.org>
Subject: [GIT PULL] UML changes for v5.20-rc1
Date: Fri, 5 Aug 2022 22:56:14 +0200 (CEST)	[thread overview]
Message-ID: <922167294.69837.1659732974689.JavaMail.zimbra@nod.at> (raw)

Linus,

The following changes since commit 32346491ddf24599decca06190ebca03ff9de7f8:

  Linux 5.19-rc6 (2022-07-10 14:40:51 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git tags/for-linus-5.20-rc1

for you to fetch changes up to af3e16101cee95efaa72095fe06c15ec0b8eb195:

  um: include sys/types.h for size_t (2022-07-17 23:47:18 +0200)

----------------------------------------------------------------
This pull request contains the following changes for UML:

- KASAN support for x86_64
- noreboot command line option, just like qemu's -no-reboot
- Various fixes and cleanups

----------------------------------------------------------------
Benjamin Beichler (1):
      um: Remove straying parenthesis

Christopher Obbard (1):
      um: random: Don't initialise hwrng struct with zero

David Gow (2):
      arch: um: Fix build for statically linked UML w/ constructors
      mm: Add PAGE_ALIGN_DOWN macro

Guenter Roeck (1):
      um: Replace to_phys() and to_virt() with less generic function names

Haowen Bai (1):
      um: remove unused variable

Jason A. Donenfeld (3):
      um: include linux/stddef.h for __always_inline
      um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups
      um: include sys/types.h for size_t

Johannes Berg (1):
      um: x86: print RIP with symbol

Juerg Haefliger (3):
      um: Kconfig: Fix indentation
      um/drivers: Kconfig: Fix indentation
      x86/um: Kconfig: Fix indentation

Patricia Alfonso (1):
      UML: add support for KASAN under x86_64

Peter Zijlstra (1):
      um: Add missing apply_returns()

Tobias Klauser (1):
      um: remove unused mm_copy_segments

 arch/um/Kconfig                         | 17 ++++++++++-
 arch/um/drivers/Kconfig                 | 54 ++++++++++++++++-----------------
 arch/um/drivers/random.c                |  2 +-
 arch/um/include/asm/common.lds.S        |  2 ++
 arch/um/include/asm/kasan.h             | 37 ++++++++++++++++++++++
 arch/um/include/asm/page.h              |  4 +--
 arch/um/include/asm/processor-generic.h |  5 ---
 arch/um/include/asm/xor.h               |  2 +-
 arch/um/include/shared/mem.h            |  4 +--
 arch/um/include/shared/user.h           |  3 +-
 arch/um/kernel/dyn.lds.S                |  6 +++-
 arch/um/kernel/mem.c                    | 19 ++++++++++++
 arch/um/kernel/stacktrace.c             |  2 +-
 arch/um/kernel/um_arch.c                |  4 +++
 arch/um/kernel/uml.lds.S                |  1 +
 arch/um/os-Linux/mem.c                  | 22 ++++++++++++++
 arch/um/os-Linux/skas/process.c         | 23 +++++++++++---
 arch/um/os-Linux/umid.c                 |  3 +-
 arch/um/os-Linux/user_syms.c            |  4 +--
 arch/x86/um/Kconfig                     | 10 +++---
 arch/x86/um/Makefile                    |  3 +-
 arch/x86/um/shared/sysdep/stub_64.h     |  1 +
 arch/x86/um/sysrq_64.c                  |  4 +--
 arch/x86/um/vdso/Makefile               |  3 ++
 include/linux/mm.h                      |  3 ++
 mm/kasan/shadow.c                       | 29 ++++++++++++++++--
 26 files changed, 207 insertions(+), 60 deletions(-)
 create mode 100644 arch/um/include/asm/kasan.h

             reply	other threads:[~2022-08-05 20:56 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-05 20:56 Richard Weinberger [this message]
2022-08-05 20:56 ` [GIT PULL] UML changes for v5.20-rc1 Richard Weinberger
2022-08-05 21:25 ` pr-tracker-bot
2022-08-05 21:25   ` pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=922167294.69837.1659732974689.JavaMail.zimbra@nod.at \
    --to=richard@nod.at \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-um@lists.infradead.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.