All of lore.kernel.org
 help / color / mirror / Atom feed
From: Will Deacon <will.deacon@arm.com>
To: torvalds@linux-foundation.org
Cc: catalin.marinas@arm.com, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] arm64: fixes for -rc1
Date: Fri, 4 Jan 2019 18:24:27 +0000	[thread overview]
Message-ID: <20190104182427.GD6299@fuggles.cambridge.arm.com> (raw)

Hi Linus,

I'm safely chained back up to my desk, so please pull these arm64 fixes
for -rc1 that address some issues that cropped up during the merge window.

Details in the tag.

Cheers,

Will

--->8

The following changes since commit 12f799c8c739518e12248bbd000eb0a246e8e5f8:

  arm64: kaslr: print PHYS_OFFSET in dump_kernel_offset() (2018-12-14 09:33:49 +0000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git tags/arm64-fixes

for you to fetch changes up to 7e0b44e870cf265bb4a73fd25e0508c7363fcbd6:

  arm64: compat: Hook up io_pgetevents() for 32-bit tasks (2019-01-04 14:18:01 +0000)

----------------------------------------------------------------
arm64 fixes for -rc1

- Prevent KASLR from mapping the top page of the virtual address space

- Fix device-tree probing of SDEI driver

- Fix incorrect register offset definition in Hisilicon DDRC PMU driver

- Fix compilation issue with older binutils not liking unsigned immediates

- Fix uapi headers so that libc can provide its own sigcontext definition

- Fix handling of private compat syscalls

- Hook up compat io_pgetevents() syscall for 32-bit tasks

- Cleanup to arm64 Makefile (including now to avoid silly conflicts)

----------------------------------------------------------------
Dave Martin (2):
      arm64/sve: ptrace: Fix SVE_PT_REGS_OFFSET definition
      arm64/sve: Disentangle <uapi/asm/ptrace.h> from <uapi/asm/sigcontext.h>

James Morse (1):
      firmware: arm_sdei: Fix DT platform device creation

Mark Rutland (1):
      arm64: entry: remove unused register aliases

Masahiro Yamada (1):
      arm64: replace arm64-obj-* in Makefile with obj-*

Nicolas Saenz Julienne (1):
      firmware: arm_sdei: fix wrong of_node_put() in init function

Shaokun Zhang (2):
      arm64: smp: Fix compilation error
      drivers/perf: hisi: Fixup one DDRC PMU register offset

Will Deacon (3):
      arm64: compat: Avoid sending SIGILL for unallocated syscall numbers
      arm64: compat: Don't pull syscall number from regs in arm_compat_syscall
      arm64: compat: Hook up io_pgetevents() for 32-bit tasks

Yueyi Li (1):
      arm64: kaslr: Reserve size of ARM64_MEMSTART_ALIGN in linear region

 arch/arm64/include/asm/smp.h                  |  8 ++--
 arch/arm64/include/asm/unistd.h               |  7 +--
 arch/arm64/include/asm/unistd32.h             |  2 +
 arch/arm64/include/uapi/asm/ptrace.h          | 39 ++++++++---------
 arch/arm64/include/uapi/asm/sigcontext.h      | 56 ++++++++++++------------
 arch/arm64/include/uapi/asm/sve_context.h     | 53 +++++++++++++++++++++++
 arch/arm64/kernel/Makefile                    | 61 +++++++++++++--------------
 arch/arm64/kernel/entry.S                     | 12 +-----
 arch/arm64/kernel/sys_compat.c                | 11 +++--
 arch/arm64/kernel/syscall.c                   |  9 ++--
 arch/arm64/mm/init.c                          |  2 +-
 drivers/firmware/arm_sdei.c                   |  6 ---
 drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c |  4 +-
 13 files changed, 153 insertions(+), 117 deletions(-)
 create mode 100644 arch/arm64/include/uapi/asm/sve_context.h

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

WARNING: multiple messages have this Message-ID (diff)
From: Will Deacon <will.deacon@arm.com>
To: torvalds@linux-foundation.org
Cc: linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, catalin.marinas@arm.com
Subject: [GIT PULL] arm64: fixes for -rc1
Date: Fri, 4 Jan 2019 18:24:27 +0000	[thread overview]
Message-ID: <20190104182427.GD6299@fuggles.cambridge.arm.com> (raw)

Hi Linus,

I'm safely chained back up to my desk, so please pull these arm64 fixes
for -rc1 that address some issues that cropped up during the merge window.

Details in the tag.

Cheers,

Will

--->8

The following changes since commit 12f799c8c739518e12248bbd000eb0a246e8e5f8:

  arm64: kaslr: print PHYS_OFFSET in dump_kernel_offset() (2018-12-14 09:33:49 +0000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git tags/arm64-fixes

for you to fetch changes up to 7e0b44e870cf265bb4a73fd25e0508c7363fcbd6:

  arm64: compat: Hook up io_pgetevents() for 32-bit tasks (2019-01-04 14:18:01 +0000)

----------------------------------------------------------------
arm64 fixes for -rc1

- Prevent KASLR from mapping the top page of the virtual address space

- Fix device-tree probing of SDEI driver

- Fix incorrect register offset definition in Hisilicon DDRC PMU driver

- Fix compilation issue with older binutils not liking unsigned immediates

- Fix uapi headers so that libc can provide its own sigcontext definition

- Fix handling of private compat syscalls

- Hook up compat io_pgetevents() syscall for 32-bit tasks

- Cleanup to arm64 Makefile (including now to avoid silly conflicts)

----------------------------------------------------------------
Dave Martin (2):
      arm64/sve: ptrace: Fix SVE_PT_REGS_OFFSET definition
      arm64/sve: Disentangle <uapi/asm/ptrace.h> from <uapi/asm/sigcontext.h>

James Morse (1):
      firmware: arm_sdei: Fix DT platform device creation

Mark Rutland (1):
      arm64: entry: remove unused register aliases

Masahiro Yamada (1):
      arm64: replace arm64-obj-* in Makefile with obj-*

Nicolas Saenz Julienne (1):
      firmware: arm_sdei: fix wrong of_node_put() in init function

Shaokun Zhang (2):
      arm64: smp: Fix compilation error
      drivers/perf: hisi: Fixup one DDRC PMU register offset

Will Deacon (3):
      arm64: compat: Avoid sending SIGILL for unallocated syscall numbers
      arm64: compat: Don't pull syscall number from regs in arm_compat_syscall
      arm64: compat: Hook up io_pgetevents() for 32-bit tasks

Yueyi Li (1):
      arm64: kaslr: Reserve size of ARM64_MEMSTART_ALIGN in linear region

 arch/arm64/include/asm/smp.h                  |  8 ++--
 arch/arm64/include/asm/unistd.h               |  7 +--
 arch/arm64/include/asm/unistd32.h             |  2 +
 arch/arm64/include/uapi/asm/ptrace.h          | 39 ++++++++---------
 arch/arm64/include/uapi/asm/sigcontext.h      | 56 ++++++++++++------------
 arch/arm64/include/uapi/asm/sve_context.h     | 53 +++++++++++++++++++++++
 arch/arm64/kernel/Makefile                    | 61 +++++++++++++--------------
 arch/arm64/kernel/entry.S                     | 12 +-----
 arch/arm64/kernel/sys_compat.c                | 11 +++--
 arch/arm64/kernel/syscall.c                   |  9 ++--
 arch/arm64/mm/init.c                          |  2 +-
 drivers/firmware/arm_sdei.c                   |  6 ---
 drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c |  4 +-
 13 files changed, 153 insertions(+), 117 deletions(-)
 create mode 100644 arch/arm64/include/uapi/asm/sve_context.h

             reply	other threads:[~2019-01-04 18:24 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-04 18:24 Will Deacon [this message]
2019-01-04 18:24 ` [GIT PULL] arm64: fixes for -rc1 Will Deacon
2019-01-05 20:20 ` pr-tracker-bot
2019-01-05 20:20   ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2026-02-20 15:41 [GIT PULL] arm64 " Will Deacon
2026-02-20 20:50 ` pr-tracker-bot
2025-10-07  8:28 Will Deacon
2025-10-07 16:13 ` pr-tracker-bot
2025-06-05 13:41 Will Deacon
2025-06-05 18:53 ` pr-tracker-bot
2024-07-26  8:42 Will Deacon
2024-07-26 18:07 ` pr-tracker-bot
2024-05-23 10:20 Will Deacon
2024-05-23 10:20 ` Will Deacon
2024-05-23 19:28 ` pr-tracker-bot
2024-05-23 19:28   ` pr-tracker-bot
2024-01-19 16:05 Will Deacon
2024-01-19 16:05 ` Will Deacon
2024-01-19 16:34 ` Rob Herring
2024-01-19 16:34   ` Rob Herring
2024-01-19 16:58   ` Rob Herring
2024-01-19 16:58     ` Rob Herring
2024-01-19 22:50 ` pr-tracker-bot
2024-01-19 22:50   ` pr-tracker-bot
2023-09-08 15:30 Will Deacon
2023-09-08 15:30 ` Will Deacon
2023-09-08 20:00 ` pr-tracker-bot
2023-09-08 20:00   ` pr-tracker-bot
2023-05-04 14:22 Will Deacon
2023-05-04 14:22 ` Will Deacon
2023-05-04 19:49 ` pr-tracker-bot
2023-05-04 19:49   ` pr-tracker-bot
2022-12-16 15:51 Will Deacon
2022-12-16 15:51 ` Will Deacon
2022-12-16 19:50 ` pr-tracker-bot
2022-12-16 19:50   ` pr-tracker-bot
2021-11-10 18:52 Will Deacon
2021-11-10 18:52 ` Will Deacon
2021-11-10 20:09 ` pr-tracker-bot
2021-11-10 20:09   ` pr-tracker-bot
2021-02-26 11:09 [GIT PULL] arm64: Fixes " Will Deacon
2021-02-26 11:09 ` Will Deacon
2021-02-26 18:31 ` pr-tracker-bot
2021-02-26 18:31   ` pr-tracker-bot
2019-09-20 13:37 Will Deacon
2019-09-20 13:37 ` Will Deacon
2019-09-20 19:10 ` pr-tracker-bot
2019-09-20 19:10   ` pr-tracker-bot
2017-03-01  4:51 [GIT PULL] arm64 fixes " Will Deacon
2017-03-01  4:51 ` Will Deacon
2016-08-05 15:48 [GIT PULL] arm64: " Will Deacon
2016-08-05 15:48 ` Will Deacon
2014-12-16 17:50 Will Deacon
2014-12-16 17:50 ` Will Deacon

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=20190104182427.GD6299@fuggles.cambridge.arm.com \
    --to=will.deacon@arm.com \
    --cc=catalin.marinas@arm.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.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.