[PATCH v2 08/13] Remove glib compatibility code that is not required anymore

2024-04-12 Thread Thomas Huth
Now that we bumped the minumum glib version to 2.66, we can drop the old code. Suggested-by: Paolo Bonzini Signed-off-by: Thomas Huth --- qga/commands-posix-ssh.c | 8 util/error-report.c | 10 -- 2 files changed, 18 deletions(-) diff --git a/qga/commands-posix-ssh.c b

[PATCH v2 10/13] block/nbd: Use URI parsing code from glib

2024-04-12 Thread Thomas Huth
. Reviewed-by: Richard W.M. Jones Signed-off-by: Thomas Huth --- block/nbd.c | 76 ++--- 1 file changed, 37 insertions(+), 39 deletions(-) diff --git a/block/nbd.c b/block/nbd.c index ef05f7cdfd..589d28af83 100644 --- a/block/nbd.c +++ b/block/nbd.c

[PATCH v2 09/13] block/gluster: Use URI parsing code from glib

2024-04-12 Thread Thomas Huth
Since version 2.66, glib has useful URI parsing functions, too. Use those instead of the QEMU-internal ones to be finally able to get rid of the latter. Signed-off-by: Thomas Huth --- block/gluster.c | 71 - 1 file changed, 35 insertions(+), 36

[PATCH v2 06/13] ci: move external build environment setups to CentOS Stream 9

2024-04-12 Thread Thomas Huth
-off-by: Paolo Bonzini Reviewed-by: Thomas Huth Message-ID: <20240412103708.27650-1-pbonz...@redhat.com> Signed-off-by: Thomas Huth --- .../stream/{8 => 9}/build-environment.yml | 31 ++--- .../stream/{8 => 9}/x86_64/configure | 4 +- .../stream/{8 => 9}/x86_

[PATCH v2 11/13] block/nfs: Use URI parsing code from glib

2024-04-12 Thread Thomas Huth
Since version 2.66, glib has useful URI parsing functions, too. Use those instead of the QEMU-internal ones to be finally able to get rid of the latter. Signed-off-by: Thomas Huth --- block/nfs.c | 110 ++-- 1 file changed, 54 insertions(+), 56

[PATCH v2 00/13] Drop old distros, bump glib and switch to glib URI parsing code

2024-04-12 Thread Thomas Huth
to drop more glib compatibility hunks - Use g_autoptr() in the URI patches for simplification - Don't allow port 0 in the URIs Paolo Bonzini (1): ci: move external build environment setups to CentOS Stream 9 Thomas Huth (12): tests: Remove Ubuntu 20.04 container tests/lcitool/libvirt-ci: Update

[PATCH v2 05/13] .travis.yml: Update the jobs to Ubuntu 22.04

2024-04-12 Thread Thomas Huth
can drop the entries from the individual jobs and use the global setting again. Signed-off-by: Thomas Huth --- .travis.yml | 13 +++-- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8a3ae76a7c..56a2a01e14 100644 --- a/.travis.yml +++ b/.tra

[PATCH v2 13/13] util/uri: Remove the old URI parsing code

2024-04-12 Thread Thomas Huth
Now that we switched all consumers of the URI code to use the URI parsing functions from glib instead, we can remove our internal URI parsing code since it is not used anymore. Signed-off-by: Thomas Huth --- include/qemu/uri.h | 99 --- util/uri.c | 1466

[PATCH v2 04/13] tests: Update our CI to use CentOS Stream 9 instead of 8

2024-04-12 Thread Thomas Huth
RHEL 9 (and thus also the derivatives) are available since two years now, so according to QEMU's support policy, we can drop the active support for the previous major version 8 now. Thus upgrade our CentOS Stream container to major version 9 now. Signed-off-by: Thomas Huth --- .gitlab-ci.d

[PATCH v2 07/13] Bump minimum glib version to v2.66

2024-04-12 Thread Thomas Huth
which will allow further clean-ups in the following patches. Signed-off-by: Thomas Huth --- meson.build | 16 +--- include/glib-compat.h| 27 ++- qga/commands-posix-ssh.c | 4 ++-- 3 files changed, 5 insertions(+), 42 deletions(-) diff --git

[PATCH v2 04/13] tests: Update our CI to use CentOS Stream 9 instead of 8

2024-04-12 Thread Thomas Huth
RHEL 9 (and thus also the derivatives) are available since two years now, so according to QEMU's support policy, we can drop the active support for the previous major version 8 now. Thus upgrade our CentOS Stream container to major version 9 now. Signed-off-by: Thomas Huth --- .gitlab-ci.d

[PATCH v2 13/13] util/uri: Remove the old URI parsing code

2024-04-12 Thread Thomas Huth
Now that we switched all consumers of the URI code to use the URI parsing functions from glib instead, we can remove our internal URI parsing code since it is not used anymore. Signed-off-by: Thomas Huth --- include/qemu/uri.h | 99 --- util/uri.c | 1466

[PATCH v2 01/13] tests: Remove Ubuntu 20.04 container

2024-04-12 Thread Thomas Huth
Since Ubuntu 22.04 is now available since two years, we can stop actively supporting the previous LTS version of Ubuntu now. Signed-off-by: Thomas Huth --- tests/docker/dockerfiles/ubuntu2004.docker | 157 - tests/lcitool/refresh | 1 - 2 files changed

[PATCH v2 02/13] tests/lcitool/libvirt-ci: Update to the latest master branch

2024-04-12 Thread Thomas Huth
We need the latest fixes for the lcitool to be able to properly update our CentOS docker file to CentOS Stream 9. Signed-off-by: Thomas Huth --- tests/lcitool/libvirt-ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lcitool/libvirt-ci b/tests/lcitool/libvirt-ci index

[PATCH v2 03/13] tests/docker/dockerfiles: Run lcitool-refresh after the lcitool update

2024-04-12 Thread Thomas Huth
This update adds the removing of the EXTERNALLY-MANAGED marker files that has been added to the lcitool recently. Signed-off-by: Thomas Huth --- tests/docker/dockerfiles/alpine.docker| 3 ++- tests/docker/dockerfiles/centos8.docker | 1 + tests/docker/dockerfiles

[PATCH v2 09/13] block/gluster: Use URI parsing code from glib

2024-04-12 Thread Thomas Huth
Since version 2.66, glib has useful URI parsing functions, too. Use those instead of the QEMU-internal ones to be finally able to get rid of the latter. Signed-off-by: Thomas Huth --- block/gluster.c | 71 - 1 file changed, 35 insertions(+), 36

[PATCH v2 00/13] Drop old distros, bump glib and switch to glib URI parsing code

2024-04-12 Thread Thomas Huth
to drop more glib compatibility hunks - Use g_autoptr() in the URI patches for simplification - Don't allow port 0 in the URIs Paolo Bonzini (1): ci: move external build environment setups to CentOS Stream 9 Thomas Huth (12): tests: Remove Ubuntu 20.04 container tests/lcitool/libvirt-ci: Update

[PATCH v2 02/13] tests/lcitool/libvirt-ci: Update to the latest master branch

2024-04-12 Thread Thomas Huth
We need the latest fixes for the lcitool to be able to properly update our CentOS docker file to CentOS Stream 9. Signed-off-by: Thomas Huth --- tests/lcitool/libvirt-ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lcitool/libvirt-ci b/tests/lcitool/libvirt-ci index

[PATCH v2 06/13] ci: move external build environment setups to CentOS Stream 9

2024-04-12 Thread Thomas Huth
-off-by: Paolo Bonzini Reviewed-by: Thomas Huth Message-ID: <20240412103708.27650-1-pbonz...@redhat.com> Signed-off-by: Thomas Huth --- .../stream/{8 => 9}/build-environment.yml | 31 ++--- .../stream/{8 => 9}/x86_64/configure | 4 +- .../stream/{8 => 9}/x86_

[PATCH v2 07/13] Bump minimum glib version to v2.66

2024-04-12 Thread Thomas Huth
which will allow further clean-ups in the following patches. Signed-off-by: Thomas Huth --- meson.build | 16 +--- include/glib-compat.h| 27 ++- qga/commands-posix-ssh.c | 4 ++-- 3 files changed, 5 insertions(+), 42 deletions(-) diff --git

[PATCH v2 01/13] tests: Remove Ubuntu 20.04 container

2024-04-12 Thread Thomas Huth
Since Ubuntu 22.04 is now available since two years, we can stop actively supporting the previous LTS version of Ubuntu now. Signed-off-by: Thomas Huth --- tests/docker/dockerfiles/ubuntu2004.docker | 157 - tests/lcitool/refresh | 1 - 2 files changed

[jira] [Commented] (MYFACES-4660) WebSockets - view destroying + multiple tabs/windows

2024-04-12 Thread Thomas Andraschko (Jira)
[ https://issues.apache.org/jira/browse/MYFACES-4660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17836599#comment-17836599 ] Thomas Andraschko commented on MYFACES-4660: 1) +1, sounds good 2) sorry but i'm

[jira] [Comment Edited] (MYFACES-4660) WebSockets - view destroying + multiple tabs/windows

2024-04-12 Thread Thomas Andraschko (Jira)
[ https://issues.apache.org/jira/browse/MYFACES-4660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17836599#comment-17836599 ] Thomas Andraschko edited comment on MYFACES-4660 at 4/12/24 1:06 PM

Re: [PATCH] kselftest: Mark functions that unconditionally call exit() as __noreturn

2024-04-12 Thread Thomas Gleixner
On Thu, Apr 11 2024 at 11:45, Nathan Chancellor wrote: > I have based this change on timers/urgent, as the commit that introduces > this particular warning is there and it is marked for stable, even > though this appears to be a generic kselftest issue. I think it makes > the most sense for this

Re: RFR: 8327247: C2 uses up to 2GB of RAM to compile complex string concat in extreme cases

2024-04-12 Thread Thomas Stuefe
On Fri, 12 Apr 2024 10:07:48 GMT, Claes Redestad wrote: > I guess Lilliput adds some hard or soft limit on the number of classes loaded? Yes, we are concerned with that, especially for a possible future where Lilliput is the sole default. Atm we can address about 4 million classes. There are

CVS commit: src/distrib/sets/lists

2024-04-12 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Fri Apr 12 11:40:10 UTC 2024 Modified Files: src/distrib/sets/lists/base32: md.amd64 src/distrib/sets/lists/debug32: md.amd64 Log Message: mark *32 libc++ with libcxx To generate a diff of this commit: cvs rdiff -u -r1.2

CVS commit: src/distrib/sets/lists

2024-04-12 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Fri Apr 12 11:40:10 UTC 2024 Modified Files: src/distrib/sets/lists/base32: md.amd64 src/distrib/sets/lists/debug32: md.amd64 Log Message: mark *32 libc++ with libcxx To generate a diff of this commit: cvs rdiff -u -r1.2

Re: [PATCH 1/2] hw: Fix problem with the A*MPCORE switches in the Kconfig files

2024-04-12 Thread Thomas Huth
On 12/04/2024 13.10, Philippe Mathieu-Daudé wrote: On 12/4/24 08:20, Thomas Huth wrote: A9MPCORE, ARM11MPCORE and A15MPCORE are defined twice, once in hw/cpu/Kconfig and once in hw/arm/Kconfig. This is only possible by accident, since hw/cpu/Kconfig is never included from hw/Kconfig. Fix

Re: [PATCH for-9.1 4/9] Bump minimum glib version to v2.66

2024-04-12 Thread Thomas Huth
On 12/04/2024 12.16, Paolo Bonzini wrote: On Thu, Mar 28, 2024 at 3:06 PM Thomas Huth wrote: Now that we dropped support for CentOS 8 and Ubuntu 20.04, we can look into bumping the glib version to a new minimum for further clean-ups. According to repology.org, available versions

[gentoo-commits] repo/gentoo:master commit in: sci-electronics/xnec2c/

2024-04-12 Thread Thomas Beierlein
commit: f990faba2acdda6fc5fbf62c7720a5007dce1650 Author: Thomas Beierlein gentoo org> AuthorDate: Fri Apr 12 10:57:59 2024 + Commit: Thomas Beierlein gentoo org> CommitDate: Fri Apr 12 10:57:59 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9

Re: [PATCH for-9.1 4/9] Bump minimum glib version to v2.66

2024-04-12 Thread Thomas Huth
On 12/04/2024 12.16, Paolo Bonzini wrote: On Thu, Mar 28, 2024 at 3:06 PM Thomas Huth wrote: Now that we dropped support for CentOS 8 and Ubuntu 20.04, we can look into bumping the glib version to a new minimum for further clean-ups. According to repology.org, available versions

Re: [PATCH] ci: move external build environment setups to CentOS Stream 9

2024-04-12 Thread Thomas Huth
e to me! Reviewed-by: Thomas Huth

Re: [PATCH] selftests: timers: Fix valid-adjtimex signed left-shift undefined behavior

2024-04-12 Thread Thomas Gleixner
Shuah! On Thu, Apr 11 2024 at 15:01, Shuah Khan wrote: > > Applied to linux-kselftest next for Linux6.10-rc1. I took this already through my tree as I have more timer selftest related stuff pending and coming up soon along with actual kernel changes. Thanks, tglx

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-12 Thread Thomas Broyer
On Friday, April 12, 2024 at 7:50:42 AM UTC+2 Mathias wrote: -My dependencies should be ok since i can build it with the plugin, so i'm a bit at a loss as to how make this work. Dependencies for gwt:compile and gwt:codeserver aren't the same:

Re: [PATCH 2/2] hw: Add a Kconfig switch for the TYPE_CPU_CLUSTER device

2024-04-12 Thread Thomas Huth
On 12/04/2024 08.20, Thomas Huth wrote: The cpu-cluster device is only needed for some few arm and riscv machines. Let's avoid compiling and linking it if it is not really necessary. Signed-off-by: Thomas Huth --- hw/arm/Kconfig | 3 +++ hw/cpu/Kconfig | 3 +++ hw/cpu/meson.build

Re: [blink-dev] Re: Intent to Ship: Gamepad API Trigger-Rumble Extension

2024-04-12 Thread 'Thomas Steiner' via blink-dev
Updated the developer-facing gamepad article: https://web.dev/articles/gamepad#the_vibration_actuator. -- You received this message because you are subscribed to the Google Groups "blink-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [PATCH] drm/gma500: Check power status before accessing lid data in opregion

2024-04-12 Thread Thomas Zimmermann
Hi Am 12.04.24 um 10:16 schrieb Patrik Jakobsson: On Fri, Apr 12, 2024 at 10:02 AM Thomas Zimmermann wrote: Hi, the issue of hanging during boot is still resent. Thanks for testing. Then it cannot be that psb_lid_timer_func runs before initialization. The BUG from Enrico hints

Re: [PATCH] drm/gma500: Check power status before accessing lid data in opregion

2024-04-12 Thread Thomas Zimmermann
Am 12.04.24 um 10:02 schrieb Thomas Zimmermann: Hi, the issue of hanging during boot is still resent. 'present' Best regards Thomas Am 12.04.24 um 09:24 schrieb Patrik Jakobsson: Due to changes in the order of initialization the psb_lid_timer_func could get called without the device

Re: [PATCH] drm/gma500: Check power status before accessing lid data in opregion

2024-04-12 Thread Thomas Zimmermann
Hi, the issue of hanging during boot is still resent. Best regards Thomas Am 12.04.24 um 09:24 schrieb Patrik Jakobsson: Due to changes in the order of initialization the psb_lid_timer_func could get called without the device being powered. Fix this by checking the power status before

[Bug 819835] Re: PANIC: unprotected error in call to Lua API

2024-04-12 Thread Thomas Alexander Frederiksen
Adding to this since I'm seeing the exact same issue: fmtutil [INFO]: log file copied to: /var/lib/texmf/web2c/pdftex/pdfetex.log fmtutil [INFO]: /var/lib/texmf/web2c/pdftex/pdfetex.fmt installed. fmtutil [ERROR]: running `luatex -ini -jobname=luatex -progname=luatex luatex.ini

[Desktop-packages] [Bug 819835] Re: PANIC: unprotected error in call to Lua API

2024-04-12 Thread Thomas Alexander Frederiksen
Adding to this since I'm seeing the exact same issue: fmtutil [INFO]: log file copied to: /var/lib/texmf/web2c/pdftex/pdfetex.log fmtutil [INFO]: /var/lib/texmf/web2c/pdftex/pdfetex.fmt installed. fmtutil [ERROR]: running `luatex -ini -jobname=luatex -progname=luatex luatex.ini

Re: [PATCH] contrib/check-params-in-docs.py: Ignore target-specific params

2024-04-12 Thread Thomas Schwinge
Hi! On 2024-04-12T09:08:13+0200, Filip Kastl wrote: > On Thu 2024-04-11 20:51:55, Thomas Schwinge wrote: >> On 2024-04-11T19:52:51+0200, Martin Jambor wrote: >> > contrib/check-params-in-docs.py is a script that checks that all >> > options reported with ./

Re: RFR: 8327247: C2 uses up to 2GB of RAM to compile complex string concat in extreme cases

2024-04-12 Thread Thomas Stuefe
On Tue, 9 Apr 2024 12:01:49 GMT, Claes Redestad wrote: > This patch suggests a workaround to an issue with huge SCF MH expression > trees taking excessive JIT compilation resources by reviving (part of) the > simple bytecode-generating strategy that was originally available as an >

Re: [PATCH, OpenACC 2.7, v3] Adjust acc_map_data/acc_unmap_data interaction with reference counters

2024-04-12 Thread Thomas Schwinge
Hi Chung-Lin! On 2024-04-11T22:08:47+0800, Chung-Lin Tang wrote: > On 2024/3/15 7:24 PM, Thomas Schwinge wrote: >> - if (n->refcount != REFCOUNT_INFINITY) >> + if (n->refcount != REFCOUNT_INFINITY >> + && n->refcount != RE

Re: RFR: 8327247: C2 uses up to 2GB of RAM to compile complex string concat in extreme cases

2024-04-12 Thread Thomas Stuefe
On Tue, 9 Apr 2024 12:01:49 GMT, Claes Redestad wrote: > There are a few trade-offs at play here which influence the choice of > threshold. The simple high arity strategy will for example not see any reuse > of LambdaForms but strictly always generate a class per indy callsite, which > means

[PATCH 1/2] hw: Fix problem with the A*MPCORE switches in the Kconfig files

2024-04-12 Thread Thomas Huth
/ folder) and by making sure that the file hw/cpu/Kconfig is now properly included from hw/Kconfig. Signed-off-by: Thomas Huth --- hw/Kconfig | 1 + hw/arm/Kconfig | 15 --- hw/cpu/Kconfig | 12 +--- 3 files changed, 10 insertions(+), 18 deletions(-) diff --git a/hw

[PATCH 2/2] hw: Add a Kconfig switch for the TYPE_CPU_CLUSTER device

2024-04-12 Thread Thomas Huth
The cpu-cluster device is only needed for some few arm and riscv machines. Let's avoid compiling and linking it if it is not really necessary. Signed-off-by: Thomas Huth --- hw/arm/Kconfig | 3 +++ hw/cpu/Kconfig | 3 +++ hw/cpu/meson.build | 2 +- hw/riscv/Kconfig | 2 ++ 4 files

[PATCH 0/2] Improvements for switches in hw/cpu/Kconfig

2024-04-12 Thread Thomas Huth
First patch fixes the problem that the file hw/cpu/Kconfig is currently ignored and the switches there are duplicated in hw/arm/. The second patch introduces a proper config switch for the cpu-cluster device. Thomas Huth (2): hw: Fix problem with the A*MPCORE switches in the Kconfig files hw

Re: RFR: 8322043: HeapDumper should use parallel dump by default

2024-04-12 Thread Thomas Stuefe
On Fri, 12 Apr 2024 02:17:34 GMT, Alex Menkov wrote: > The fix makes VM heap dumping parallel by default. > `jcmd GC.heap_dump` and `jmap -dump` had parallel dumping by default, the fix > affects `HotSpotDiagnosticMXBean.dumpHeap()`, `-XX:+HeapDumpBeforeFullGC`, > `-XX:+HeapDumpAfterFullGC`

[FOSSGIS-Talk] Attributtabelle von 2 unterschiedlichen Layern zusammenfassen

2024-04-12 Thread Thomas Schmidt via FOSSGIS-Talk-Liste
Hallo liebe Liste, Ich habe einen Punktlayer, der der die Bahnkilometer innerhalb Niedersachsens anzeigt. Als zweiten Layer habe ich die Gemeindegrenzen Niedersachsens. Ich möchte jetzt in der Attributtabelle des Punktlayer auch die Gemeinde des zweiten Layer anzeigen lassen. Ist das möglich

Re: Performance implications of 8K pread()s

2024-04-11 Thread Thomas Munro
On Wed, Jul 12, 2023 at 1:11 AM Dimitrios Apostolou wrote: > So would it make sense for postgres to perform reads in bigger blocks? Is it > easy-ish to implement (where would one look for that)? Or must the I/O unit be > tied to postgres' page size? FYI as of last week we can do a little bit of

[visualization-api] Re: Google Sheet Query Language

2024-04-11 Thread 'Ray Thomas' via Google Visualization API
use in > Italy the decimal representation is made with commas. I have to deal with > this built-in characteristic in this country. > > I looked at the link anyway, it's really interesting! Thank you for using > my use case to help the community, and me too! > > Il giorno mercoledì

RE: [PestList] Fumigation Recommendations

2024-04-11 Thread Thomas, Sabrina
information if you’d like to contact me directly. Thanks, Sabrina Sabrina Thomas Assistant Collections Manager Mayborn Museum Complex sabrina_tho...@baylor.edu<mailto:sabrina_tho...@baylor.edu> From: 'lrestemyer' via MuseumPests Sent: Thursday, April 11, 2024 12:45 PM To: MuseumPests Subje

[digikam] [Bug 484237] 8.3.0: Crash when generating fingerprints on Windows 11

2024-04-11 Thread Thomas Pietrowski
https://bugs.kde.org/show_bug.cgi?id=484237 --- Comment #9 from Thomas Pietrowski --- This is exactly what I noticed here, too. Windows is my secondary system and using Debian primary here. -- You are receiving this mail because: You are watching all bug changes.

Re: [kvm-unit-tests PATCH v8 06/35] gitlab-ci: Run migration selftest on s390x and powerpc

2024-04-11 Thread Thomas Huth
-migration-kvm We're running under TCG in the Gitlab CI. I'm a little bit confused why we're running a KVM-only test here. The build-s390x job is TCG, indeed, but we have the "s390x-kvm" job that runs on a KVM-capable s390x host, so it could be added there? Thomas

[pve-devel] applied: [PATCH v2 pve-zsync] parse disks: improve error messages

2024-04-11 Thread Thomas Lamprecht
On 12/09/2023 14:29, Fiona Ebner wrote: > The one with the backup flag was reported in the community forum: > https://forum.proxmox.com/threads/77254/ > > Signed-off-by: Fiona Ebner > --- > > Changes in v2: > * Further improve message as suggested by Sterzy. > > pve-zsync | 5 +++-- > 1

Re: [PATCH] contrib/check-params-in-docs.py: Ignore gcn-preferred-vectorization-factor

2024-04-11 Thread Thomas Schwinge
following after the generic section? (Easily achieved with a special marker in 'gcc/doc/invoke.texi', just before: The following choices of @var{name} are available on AArch64 targets: ..., and adjusting the 'takewhile' in 'contrib/check-params-in-docs.py' accordingly? Grüße Thomas &g

[pve-devel] partially-applied: [PATCH qemu v3 06/22] backup: add minimum cluster size to performance options

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 11:29, Fiona Ebner wrote: > Useful to make discard-source work in the context of backup fleecing > when the fleecing image has a larger granularity than the backup > target. > > Backup/block-copy will use at least this granularity for copy operations > and in particular, discard

obsolete manhtml files not deleted

2024-04-11 Thread Thomas Klausner
in the manhtml set - does the "postinstall fix" step for cleaning up obsolete files need changes for supporting manhtml? Thomas

[pve-devel] applied: [PATCH guest-common v3 10/22] vzdump: schema: make storage for fleecing semi-optional

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 11:29, Fiona Ebner wrote: > so it doesn't need to be set when explicitly disabling fleecing. Needs > a custom verifier to enforce it being set when enabled. > > Suggested-by: Fabian Grünbichler > Signed-off-by: Fiona Ebner > --- > src/PVE/VZDump/Common.pm | 14 +- > 1

Re: [pve-devel] [PATCH guest-common v3 10/22] vzdump: schema: make storage for fleecing semi-optional

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 11:29, Fiona Ebner wrote: > so it doesn't need to be set when explicitly disabling fleecing. Needs > a custom verifier to enforce it being set when enabled. > > Suggested-by: Fabian Grünbichler > Signed-off-by: Fiona Ebner > --- > src/PVE/VZDump/Common.pm | 14 +- > 1

[pve-devel] applied: Re: [PATCH guest-common v3 09/22] vzdump: schema: add fleecing property string

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 11:29, Fiona Ebner wrote: > It's a property string, because that avoids having an implicit > "enabled" as part of a 'fleecing-storage' property. And there likely > will be more options in the future, e.g. threshold/limit for the > fleecing image size. > > Storage is non-optional, so

[pve-devel] applied: [PATCH common v3 08/22] json schema: add format description for pve-storage-id standard option

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 11:29, Fiona Ebner wrote: > so that the option can be used as part of a property string. > > Signed-off-by: Fiona Ebner > --- > src/PVE/JSONSchema.pm | 1 + > 1 file changed, 1 insertion(+) > > applied, thanks! ___ pve-devel mailing

Re: [pve-devel] [RFC qemu-server v3 17/22] parse config: allow config keys with minus sign

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 11:29, Fiona Ebner wrote: > In preparation for the upcoming 'fleecing-images' key. To avoid mixing > of options with - and options with _, which is not very user-friendly, > it would be nice to add aliases for existing options with _. And > long-term, backup restore handlers could

Re: crippling nvidia display issue.

2024-04-11 Thread Thomas Cameron
I don't have better advice, but I feel like something went south in the RPMFusion packages. -- Thomas -- ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Cod

Re: [pve-devel] [PATCH manager 1/9] report: add kernel command line including boot time

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 19:07, Alexander Zeidler wrote: > On Mon, 2024-03-25 at 08:52 +0100, Thomas Lamprecht wrote: >> journalctl --list-boots > > On slow servers / storage drives this execution can easily take 10 seconds > or longer. But there is an alternative that is quite f

Re: [pve-devel] [PATCH guest-common v2 2/5] mapping: pci: rework properties check

2024-04-11 Thread Thomas Lamprecht
On 10/04/2024 13:03, Dominik Csapak wrote: > refactors the actual checking out to its own sub, so we can reuse it > later > > Signed-off-by: Dominik Csapak > --- > src/PVE/Mapping/PCI.pm | 43 +- > 1 file changed, 26 insertions(+), 17 deletions(-) > >

Re: Monitoring discards from async logging

2024-04-11 Thread Thomas, Adam
uple to a non-public API (such as reflecting into private fields), and doubly so when it is code I do not control. -Adam From: Volkan Yazıcı Date: Thursday, April 11, 2024 at 4:09 AM To: Adam Thomas Cc: "dev@logging.apache.org" Subject: RE: Monitoring discards from async logging

[pve-devel] applied: Re: [PATCH guest-common v2 1/5] mapping: pci: fix missing description/default for mdev

2024-04-11 Thread Thomas Lamprecht
On 10/04/2024 13:03, Dominik Csapak wrote: > Signed-off-by: Dominik Csapak > --- > src/PVE/Mapping/PCI.pm | 2 ++ > 1 file changed, 2 insertions(+) > > applied, thanks! ___ pve-devel mailing list pve-devel@lists.proxmox.com

[pve-devel] applied-series: [PATCH-SERIES v2 guest-common] replication improvements

2024-04-11 Thread Thomas Lamprecht
On 13/12/2023 15:17, Fiona Ebner wrote: > Improve error when finding a common base snapshot and fix the check if > a snapshot is needed by replication when there are volumes with > replicate setting turned off. > > First version: >

[plasmashell] [Bug 466458] In Plasma wayland session, "Telegram Desktop"'s icon pinned to Task Manager disappears when window is closed after switching chats at least once

2024-04-11 Thread Thomas Moerschell
https://bugs.kde.org/show_bug.cgi?id=466458 Thomas Moerschell changed: What|Removed |Added CC||tmoersch...@gmail.com --- Comment #12 from

CVS commit: src/distrib/sets/lists

2024-04-11 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Thu Apr 11 15:29:16 UTC 2024 Modified Files: src/distrib/sets/lists/base32: md.amd64 src/distrib/sets/lists/debug32: md.amd64 Log Message: add libc++ files to *32 sets To generate a diff of this commit: cvs rdiff -u -r1.1

CVS commit: src/distrib/sets/lists

2024-04-11 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Thu Apr 11 15:29:16 UTC 2024 Modified Files: src/distrib/sets/lists/base32: md.amd64 src/distrib/sets/lists/debug32: md.amd64 Log Message: add libc++ files to *32 sets To generate a diff of this commit: cvs rdiff -u -r1.1

header installation not make-jobs safe?

2024-04-11 Thread Thomas Klausner
bmake[4]: stopped in /disk/storage-202004/archive/foreign/src/crypto/external/bsd/heimdal/lib/libasn1 A second try of the same command on the same machine with the same sources succeeded. Full log available on request. Thomas

Re: [pve-devel] [PATCH manager v9 3/3] ui: machine: add viommu ComboBox

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 12:48, Markus Frank wrote: > Added a proxmoxKVComboBox for selecting a vIOMMU implementation for a > VM. If i440fx is selected, a hint tells that q35 is required for Intel vIOMMU. > > The UI also needs to parse the new machine parameter as PropertyString. > > Signed-off-by: Markus

Re: Retrieve server.built, server.number

2024-04-11 Thread Mark Thomas
On 11/04/2024 15:49, Bill Stewart wrote: On Wed, Apr 10, 2024 at 2:14 PM Mark Thomas wrote: ... and it might represent an information leakage vulnerability in your application. Be Careful. Shall we start the flame war now on whether exposing the current version you are running

[pve-devel] applied: Re: [PATCH docs v9 2/3] add vIOMMU documentation

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 12:48, Markus Frank wrote: > Signed-off-by: Markus Frank > --- > qm-pci-passthrough.adoc | 50 + > qm.adoc | 1 + > 2 files changed, 51 insertions(+) > > applied, thanks! ___

[pve-devel] applied: Re: [PATCH qemu-server v9 1/3] fix #3784: config: Parameter for guest vIOMMU + test-cases

2024-04-11 Thread Thomas Lamprecht
On 11/04/2024 12:48, Markus Frank wrote: > vIOMMU enables the option to passthrough pci devices to L2 VMs > in L1 VMs via Nested Virtualisation and adds an extra isolation. > > Uses the new property-string from the "config: define machine schema > as property-string"-commit to add the viommu

[Yahoo-eng-team] [Bug 2060974] [NEW] neutron-dhcp-agent attemps to read pid.haproxy but can't

2024-04-11 Thread Thomas Goirand
Public bug reported: Hi, >From neutron-dhcp-agent.log, I can see it's trying to access: /var/lib/neutron/external/pids/*.pid.haproxy It used to be that these files where having the unix rights (at least in Debian 11, aka Bullseye): -rw-r--r-- However, in Debian 12 (aka Bookworm), for a

Re: [PATCH, OpenACC 2.7] Connect readonly modifier to points-to analysis

2024-04-11 Thread Thomas Schwinge
_TO_READONLY and its relaying to > SSA_NAME_POINTS_TO_READONLY_MEMORY here, is actually quite similar to a > default-def > for an PARM_DECL, at least conceptually. > > (If offloading was structured significantly differently, say if child > functions > were se

[digikam] [Bug 484237] 8.3.0: Crash when generating fingerprints on Windows 11

2024-04-11 Thread Thomas Pietrowski
https://bugs.kde.org/show_bug.cgi?id=484237 --- Comment #7 from Thomas Pietrowski --- Created attachment 168392 --> https://bugs.kde.org/attachment.cgi?id=168392=edit Broken JPEG file 3 -- You are receiving this mail because: You are watching all bug changes.

[digikam] [Bug 484237] 8.3.0: Crash when generating fingerprints on Windows 11

2024-04-11 Thread Thomas Pietrowski
https://bugs.kde.org/show_bug.cgi?id=484237 --- Comment #6 from Thomas Pietrowski --- I disabled parallel processing and here's another one: [23040] digikam.dimg: "/IMG-20210330-WA0004.jpg" : "JPEG" file identified [23040] digikam.dimg.jpeg: Start of Image ( 1 ) [23040] dig

Re: [PATCH] selftests/timers/posix_timers: reimplement check_timer_distribution()

2024-04-11 Thread Thomas Gleixner
On Thu, Apr 11 2024 at 13:44, Mark Brown wrote: > On Sat, Apr 06, 2024 at 05:09:51PM +0200, Oleg Nesterov wrote: >> Thomas says: >> >> The signal distribution test has a tendency to hang for a long >> time as the signal delivery is not really evenly distribute

Re: [edk2-devel] [RFC PATCH] OvmfPkg/SecurityPkg: Add build option for coexistance of vTPM and RTMR.

2024-04-11 Thread Lendacky, Thomas via groups.io
On 4/11/24 05:33, Ard Biesheuvel wrote: On Thu, 11 Apr 2024 at 12:29, Gerd Hoffmann wrote: On Thu, Apr 11, 2024 at 09:56:48AM +, Yao, Jiewen wrote: Please allow me to clarify what you are proposing: Do you mean in vTPM case, we extend both, but we only need TCG event log, NOT CC event

Re: First two bytes of 'stdout' are lost

2024-04-11 Thread Thomas Passin via Python-list
On 4/11/2024 8:42 AM, Olivier B. via Python-list wrote: I am trying to use StringIO to capture stdout, in code that looks like this: import sys from io import StringIO old_stdout = sys.stdout sys.stdout = mystdout = StringIO() print( "patate") mystdout.seek(0) sys.stdout = old_stdout

[okular] [Bug 456225] Rescaling of text is ugly when zooming in or out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225 Thomas Bertels changed: What|Removed |Added Summary|Rescaling of text is ugly |Rescaling of text is ugly

[okular] [Bug 456225] Rescaling of text is ugly when zooming in or out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225 Thomas Bertels changed: What|Removed |Added Summary|Rescaling of text is ugly |Rescaling of text is ugly

[okular] [Bug 456225] Rescaling of text is ugly when zooming in our out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225 Thomas Bertels changed: What|Removed |Added See Also||https://bugs.kde.org/show_b

[okular] [Bug 456225] Rescaling of text is ugly when zooming in our out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225 Thomas Bertels changed: What|Removed |Added See Also||https://bugs.kde.org/show_b

[okular] [Bug 437401] Jagged freehand annotations when using a high-resolution stylus

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=437401 Thomas Bertels changed: What|Removed |Added See Also||https://bugs.kde.org/show_b

[okular] [Bug 437401] Jagged freehand annotations when using a high-resolution stylus

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=437401 Thomas Bertels changed: What|Removed |Added See Also||https://bugs.kde.org/show_b

Re: [PATCH for-9.0] meson.build: Disable -fzero-call-used-regs on OpenBSD

2024-04-11 Thread Thomas Huth
On 11/04/2024 14.08, Thomas Huth wrote: QEMU currently does not work on OpenBSD since the -fzero-call-used-regs That should be "OpenBSD 7.5" ... older versions are fine since they are using an older version of Clang that does not have -fzero-call-used-regs yet, I think. Thomas

[okular] [Bug 473470] Zooming results in ugly text

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=473470 Thomas Bertels changed: What|Removed |Added CC||tbert...@gmail.com Resolution

[okular] [Bug 456225] Rescaling of text is ugly when zooming in our out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225 --- Comment #4 from Thomas Bertels --- *** Bug 473470 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are the assignee for the bug.

[okular] [Bug 456225] Rescaling of text is ugly when zooming in our out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225 --- Comment #4 from Thomas Bertels --- *** Bug 473470 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.

[okular] [Bug 473470] Zooming results in ugly text

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=473470 Thomas Bertels changed: What|Removed |Added CC||tbert...@gmail.com Resolution

[okular] [Bug 456225] Rescaling of text is ugly when zooming in our out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225 Thomas Bertels changed: What|Removed |Added CC||tbert...@gmail.com --- Comment #3 from Thomas

[okular] [Bug 456225] Rescaling of text is ugly when zooming in our out

2024-04-11 Thread Thomas Bertels
https://bugs.kde.org/show_bug.cgi?id=456225 Thomas Bertels changed: What|Removed |Added CC||tbert...@gmail.com --- Comment #3 from Thomas

[PATCH for-9.0] meson.build: Disable -fzero-call-used-regs on OpenBSD

2024-04-11 Thread Thomas Huth
ves: https://gitlab.com/qemu-project/qemu/-/issues/2278 Signed-off-by: Thomas Huth --- Note: Given that we're close to the release, I think the host_os check is the best we can do ... the problem does not seem to trigger in all functions, only if certain registers are used by the compiler,

Re: MACOS M2 Ventura

2024-04-11 Thread Thomas Passin
 AM UTC-4 Geoff Evans wrote: > Thanks Thomas, > When I worked up the courage to adjust my qt.conf file as suggested, > everything worked! :-) > I'll have to get used to the options living at the top of the main screen > and not the top of the leo window. But that's a minor i

<    4   5   6   7   8   9   10   11   12   13   >