[PULL 0/5] tcg patch queue for 6.0

Richard Henderson posted 5 patches 3 years ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210324014332.6331-1-richard.henderson@linaro.org
Maintainers: Richard Henderson <richard.henderson@linaro.org>
configure                |  19 ---------
meson.build              |  21 ++++++++-
include/exec/cpu-all.h   |  15 ++-----
include/exec/page-vary.h |  34 +++++++++++++++
exec-vary.c              | 108 -----------------------------------------------
page-vary-common.c       |  54 ++++++++++++++++++++++++
page-vary.c              |  41 ++++++++++++++++++
tcg/tcg.c                |  22 +++++-----
MAINTAINERS              |   2 +
9 files changed, 167 insertions(+), 149 deletions(-)
create mode 100644 include/exec/page-vary.h
delete mode 100644 exec-vary.c
create mode 100644 page-vary-common.c
create mode 100644 page-vary.c
[PULL 0/5] tcg patch queue for 6.0
Posted by Richard Henderson 3 years ago
The following changes since commit 266469947161aa10b1d36843580d369d5aa38589:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2021-03-23' into staging (2021-03-23 22:28:58 +0000)

are available in the Git repository at:

  https://github.com/rth7680/qemu.git tags/pull-tcg-20210323

for you to fetch changes up to 44b99a6d5f24afcd8476d0d2701e1ca4ab9b35c1:

  exec: Build page-vary-common.c with -fno-lto (2021-03-23 19:36:47 -0600)

----------------------------------------------------------------
Workaround for macos mprotect
Workaround for target_page vs -flto

----------------------------------------------------------------
Richard Henderson (5):
      tcg: Do not set guard pages on the rx portion of code_gen_buffer
      tcg: Workaround macOS 11.2 mprotect bug
      exec: Rename exec-vary.c as page-vary.c
      exec: Extract 'page-vary.h' header
      exec: Build page-vary-common.c with -fno-lto

 configure                |  19 ---------
 meson.build              |  21 ++++++++-
 include/exec/cpu-all.h   |  15 ++-----
 include/exec/page-vary.h |  34 +++++++++++++++
 exec-vary.c              | 108 -----------------------------------------------
 page-vary-common.c       |  54 ++++++++++++++++++++++++
 page-vary.c              |  41 ++++++++++++++++++
 tcg/tcg.c                |  22 +++++-----
 MAINTAINERS              |   2 +
 9 files changed, 167 insertions(+), 149 deletions(-)
 create mode 100644 include/exec/page-vary.h
 delete mode 100644 exec-vary.c
 create mode 100644 page-vary-common.c
 create mode 100644 page-vary.c

Re: [PULL 0/5] tcg patch queue for 6.0
Posted by Peter Maydell 3 years ago
On Wed, 24 Mar 2021 at 01:43, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> The following changes since commit 266469947161aa10b1d36843580d369d5aa38589:
>
>   Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2021-03-23' into staging (2021-03-23 22:28:58 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/rth7680/qemu.git tags/pull-tcg-20210323
>
> for you to fetch changes up to 44b99a6d5f24afcd8476d0d2701e1ca4ab9b35c1:
>
>   exec: Build page-vary-common.c with -fno-lto (2021-03-23 19:36:47 -0600)
>
> ----------------------------------------------------------------
> Workaround for macos mprotect
> Workaround for target_page vs -flto
>
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.0
for any user-visible changes.

-- PMM