[GIT PULL] xen: branch for v6.3-rc1

2023-02-18 Thread Juergen Gross
Linus, Please git pull the following tag: git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-6.3-rc1-tag xen: branch for v6.3-rc1 It contains the following patches: - A patch to help deprecating the /proc/xen files by making the related information available via sysfs. - 2

[linux-linus test] 177745: tolerable trouble: fail/pass/starved - PUSHED

2023-02-18 Thread osstest service owner
flight 177745 linux-linus real [real] flight 17 linux-linus real-retest [real] http://logs.test-lab.xenproject.org/osstest/logs/177745/ http://logs.test-lab.xenproject.org/osstest/logs/17/ Failures :-/ but no regressions. Tests which are failing intermittently (not blocking): test-amd64-

[PATCH v4 3/3] Automation and CI: Replace git:// and http:// with https://

2023-02-18 Thread Demi Marie Obenour
Obtaining code over an insecure transport is a terrible idea for blatently obvious reasons. Even for non-executable data, insecure transports are considered deprecated. This patch enforces the use of secure transports in automation and CI. All URLs are known to work. Signed-off-by: Demi Marie Ob

[PATCH v4 1/3] Use HTTPS for all xenbits.xen.org Git repos

2023-02-18 Thread Demi Marie Obenour
Obtaining code over an insecure transport is a terrible idea for blatently obvious reasons. Even for non-executable data, insecure transports are considered deprecated. This patch enforces the use of secure transports for all xenbits.xen.org Git repositories. It was generated with the following

[PATCH v4 2/3] Build system: Replace git:// and http:// with https://

2023-02-18 Thread Demi Marie Obenour
Obtaining code over an insecure transport is a terrible idea for blatently obvious reasons. Even for non-executable data, insecure transports are considered deprecated. This patch enforces the use of secure transports in the build system. Some URLs returned 301 or 302 redirects, so I replaced the

[PATCH v4 0/3] Stop using insecure transports

2023-02-18 Thread Demi Marie Obenour
Obtaining code over an insecure transport is a terrible idea for blatently obvious reasons. Even for non-executable data, insecure transports are considered deprecated. Changes since v3: - Drop patch 4, which is an unrelated removal of unused code. - Do not fail with an error if one tries to bu

[xen-unstable test] 177707: tolerable trouble: fail/pass/starved

2023-02-18 Thread osstest service owner
flight 177707 xen-unstable real [real] http://logs.test-lab.xenproject.org/osstest/logs/177707/ Failures :-/ but no regressions. Tests which are failing intermittently (not blocking): test-amd64-amd64-libvirt-vhd 19 guest-start/debian.repeat fail in 177659 pass in 177707 test-arm64-arm64-libvi

[PATCH v6 11/41] mm: Introduce pte_mkwrite_kernel()

2023-02-18 Thread Rick Edgecombe
The x86 Control-flow Enforcement Technology (CET) feature includes a new type of memory called shadow stack. This shadow stack memory has some unusual properties, which requires some core mm changes to function properly. One of these changes is to allow for pte_mkwrite() to create different types

[PATCH v6 13/41] mm: Make pte_mkwrite() take a VMA

2023-02-18 Thread Rick Edgecombe
The x86 Control-flow Enforcement Technology (CET) feature includes a new type of memory called shadow stack. This shadow stack memory has some unusual properties, which requires some core mm changes to function properly. One of these unusual properties is that shadow stack memory is writable, but

Re: [PATCH v3 2/4] Build system: Replace git:// and http:// with https://

2023-02-18 Thread Andrew Cooper
On 18/02/2023 2:10 pm, Marek Marczykowski-Górecki wrote: > On Fri, Feb 17, 2023 at 04:35:25PM -0500, Demi Marie Obenour wrote: >> Obtaining code over an insecure transport is a terrible idea for >> blatently obvious reasons. Even for non-executable data, insecure >> transports are considered depre

[linux-linus test] 177681: tolerable trouble: fail/pass/starved - PUSHED

2023-02-18 Thread osstest service owner
flight 177681 linux-linus real [real] http://logs.test-lab.xenproject.org/osstest/logs/177681/ Failures :-/ but no regressions. Tests which did not succeed, but are not blocking: test-amd64-amd64-xl-qemut-win7-amd64 19 guest-stopfail like 177531 test-amd64-amd64-xl-qemuu-win7-amd64

Re: [PATCH v3 2/4] Build system: Replace git:// and http:// with https://

2023-02-18 Thread Marek Marczykowski-Górecki
On Sat, Feb 18, 2023 at 03:10:16PM +0100, Marek Marczykowski-Górecki wrote: > On Fri, Feb 17, 2023 at 04:35:25PM -0500, Demi Marie Obenour wrote: > > Obtaining code over an insecure transport is a terrible idea for > > blatently obvious reasons. Even for non-executable data, insecure > > transport

Re: [PATCH v3 2/4] Build system: Replace git:// and http:// with https://

2023-02-18 Thread Marek Marczykowski-Górecki
On Fri, Feb 17, 2023 at 04:35:25PM -0500, Demi Marie Obenour wrote: > Obtaining code over an insecure transport is a terrible idea for > blatently obvious reasons. Even for non-executable data, insecure > transports are considered deprecated. > > This patch enforces the use of secure transports i

[libvirt test] 177679: tolerable trouble: pass/starved - PUSHED

2023-02-18 Thread osstest service owner
flight 177679 libvirt real [real] http://logs.test-lab.xenproject.org/osstest/logs/177679/ Failures :-/ but no regressions. Tests which did not succeed, but are not blocking: test-amd64-i386-libvirt-xsm 15 migrate-support-checkfail never pass test-amd64-amd64-libvirt 15 migrate-s

[xen-unstable test] 177659: tolerable trouble: fail/pass/starved - PUSHED

2023-02-18 Thread osstest service owner
flight 177659 xen-unstable real [real] flight 177701 xen-unstable real-retest [real] http://logs.test-lab.xenproject.org/osstest/logs/177659/ http://logs.test-lab.xenproject.org/osstest/logs/177701/ Failures :-/ but no regressions. Tests which are failing intermittently (not blocking): test-amd6

Re: [PATCH] xen: sysfs: make kobj_type structure constant

2023-02-18 Thread Juergen Gross
On 16.02.23 02:10, Thomas Weißschuh wrote: Since commit ee6d3dd4ed48 ("driver core: make kobj_type constant.") the driver core allows the usage of const struct kobj_type. Take advantage of this to constify the structure definition to prevent modification at runtime. Signed-off-by: Thomas Weißsc