[PATCH 0/2] qemu: Add support for pauth Arm CPU feature

Andrea Bolognani posted 2 patches 1 month, 3 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20240712142200.442626-1-abologna@redhat.com
src/cpu_map/arm_features.xml                  |  3 ++
...aarch64-features-pauth.aarch64-latest.args | 31 +++++++++++++++++++
.../aarch64-features-pauth.aarch64-latest.xml | 28 +++++++++++++++++
.../aarch64-features-pauth.xml                | 17 ++++++++++
tests/qemuxmlconftest.c                       |  1 +
5 files changed, 80 insertions(+)
create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.aarch64-latest.args
create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.aarch64-latest.xml
create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.xml
[PATCH 0/2] qemu: Add support for pauth Arm CPU feature
Posted by Andrea Bolognani 1 month, 3 weeks ago

Andrea Bolognani (2):
  cpu_map: Add pauth Arm CPU feature
  tests: Add coverage for pauth Arm CPU feature

 src/cpu_map/arm_features.xml                  |  3 ++
 ...aarch64-features-pauth.aarch64-latest.args | 31 +++++++++++++++++++
 .../aarch64-features-pauth.aarch64-latest.xml | 28 +++++++++++++++++
 .../aarch64-features-pauth.xml                | 17 ++++++++++
 tests/qemuxmlconftest.c                       |  1 +
 5 files changed, 80 insertions(+)
 create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.aarch64-latest.args
 create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.aarch64-latest.xml
 create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.xml

-- 
2.45.2
Re: [PATCH 0/2] qemu: Add support for pauth Arm CPU feature
Posted by Michal Prívozník 1 month, 3 weeks ago
On 7/12/24 16:21, Andrea Bolognani wrote:
> 
> 
> Andrea Bolognani (2):
>   cpu_map: Add pauth Arm CPU feature
>   tests: Add coverage for pauth Arm CPU feature
> 
>  src/cpu_map/arm_features.xml                  |  3 ++
>  ...aarch64-features-pauth.aarch64-latest.args | 31 +++++++++++++++++++
>  .../aarch64-features-pauth.aarch64-latest.xml | 28 +++++++++++++++++
>  .../aarch64-features-pauth.xml                | 17 ++++++++++
>  tests/qemuxmlconftest.c                       |  1 +
>  5 files changed, 80 insertions(+)
>  create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.aarch64-latest.args
>  create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.aarch64-latest.xml
>  create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.xml
> 

Sorry for letting this fall through cracks.

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>

Michal
Re: [PATCH 0/2] qemu: Add support for pauth Arm CPU feature
Posted by Michal Prívozník 1 month, 3 weeks ago
On 7/15/24 10:32, Michal Prívozník wrote:
> On 7/12/24 16:21, Andrea Bolognani wrote:
>>
>>
>> Andrea Bolognani (2):
>>   cpu_map: Add pauth Arm CPU feature
>>   tests: Add coverage for pauth Arm CPU feature
>>
>>  src/cpu_map/arm_features.xml                  |  3 ++
>>  ...aarch64-features-pauth.aarch64-latest.args | 31 +++++++++++++++++++
>>  .../aarch64-features-pauth.aarch64-latest.xml | 28 +++++++++++++++++
>>  .../aarch64-features-pauth.xml                | 17 ++++++++++
>>  tests/qemuxmlconftest.c                       |  1 +
>>  5 files changed, 80 insertions(+)
>>  create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.aarch64-latest.args
>>  create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.aarch64-latest.xml
>>  create mode 100644 tests/qemuxmlconfdata/aarch64-features-pauth.xml
>>
> 
> Sorry for letting this fall through cracks.

Actually, I've misread the date this was sent in. It was sent only 3
days ago, so not sorry then :-P

Michal
Re: [PATCH 0/2] qemu: Add support for pauth Arm CPU feature
Posted by Andrea Bolognani 1 month, 3 weeks ago
On Mon, Jul 15, 2024 at 10:45:10AM GMT, Michal Prívozník wrote:
> On 7/15/24 10:32, Michal Prívozník wrote:
> > On 7/12/24 16:21, Andrea Bolognani wrote:
> >> Andrea Bolognani (2):
> >>   cpu_map: Add pauth Arm CPU feature
> >>   tests: Add coverage for pauth Arm CPU feature
> >
> > Sorry for letting this fall through cracks.
>
> Actually, I've misread the date this was sent in. It was sent only 3
> days ago, so not sorry then :-P

O:-)

I just realized that I didn't update the release notes, so I've just
posted a small patch for that too (messing up the threading in the
process). Can I consider your R-b valid for patch 3/2 too?

-- 
Andrea Bolognani / Red Hat / Virtualization
[PATCH 3/2] news: Mention pauth Arm CPU feature
Posted by Andrea Bolognani 1 month, 3 weeks ago
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
---
 NEWS.rst | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/NEWS.rst b/NEWS.rst
index 775f5904ea..2fdb52c607 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -17,6 +17,8 @@ v10.6.0 (unreleased)
 
 * **New features**
 
+  * qemu: Add support for the 'pauth' Arm CPU feature
+
 * **Improvements**
 
 * **Bug fixes**
-- 
2.45.2
Re: [PATCH 3/2] news: Mention pauth Arm CPU feature
Posted by Michal Prívozník 1 month, 3 weeks ago
On 7/15/24 11:55, Andrea Bolognani wrote:
> Signed-off-by: Andrea Bolognani <abologna@redhat.com>
> ---
>  NEWS.rst | 2 ++
>  1 file changed, 2 insertions(+)
> 

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>

Michal