Re: [PATCH v12 06/10] drm/ttm/tests: Add tests with mock resource managers

2024-05-29 Thread Thomas Hellström
gt; +static const struct ttm_resource_manager_func ttm_bad_manager_funcs > = { > + .alloc = ttm_bad_manager_alloc, > + .free = ttm_bad_manager_free, > + .compatible = ttm_bad_manager_compatible > +}; > + > +int ttm_bad_manager_init(struct ttm_device *bdev, uint32_t mem_type, > + uint32_t size) > +{ > + struct ttm_resource_manager *man; > + > + man = kzalloc(sizeof(*man), GFP_KERNEL); > + if (!man) > + return -ENOMEM; > + > + man->func = _bad_manager_funcs; > + > + ttm_resource_manager_init(man, bdev, size); > + ttm_set_driver_manager(bdev, mem_type, man); > + ttm_resource_manager_set_used(man, true); > + > + return 0; > +} > +EXPORT_SYMBOL_GPL(ttm_bad_manager_init); > + > +void ttm_bad_manager_fini(struct ttm_device *bdev, uint32_t > mem_type) > +{ > + struct ttm_resource_manager *man; > + > + man = ttm_manager_type(bdev, mem_type); > + > + ttm_resource_manager_set_used(man, false); > + ttm_set_driver_manager(bdev, mem_type, NULL); > + > + kfree(man); > +} > +EXPORT_SYMBOL_GPL(ttm_bad_manager_fini); > + > +MODULE_LICENSE("GPL"); When the module is dual-licensed IIRC the correct option to use here is "GPL and additional rights" > diff --git a/drivers/gpu/drm/ttm/tests/ttm_mock_manager.h > b/drivers/gpu/drm/ttm/tests/ttm_mock_manager.h > new file mode 100644 > index ..d2db9de9d876 > --- /dev/null > +++ b/drivers/gpu/drm/ttm/tests/ttm_mock_manager.h > @@ -0,0 +1,31 @@ > +/* SPDX-License-Identifier: GPL-2.0 AND MIT */ > +/* > + * Copyright © 2023 Intel Corporation > + */ > +#ifndef TTM_MOCK_MANAGER_H > +#define TTM_MOCK_MANAGER_H > + > +#include > + > +struct ttm_mock_manager { > + struct ttm_resource_manager man; > + struct drm_buddy mm; > + uint64_t default_page_size; > + /* protects allocations of mock buffer objects */ > + struct mutex lock; > +}; > + > +struct ttm_mock_resource { > + struct ttm_resource base; > + struct list_head blocks; > + unsigned long flags; > +}; > + > +int ttm_mock_manager_init(struct ttm_device *bdev, uint32_t > mem_type, > +   uint32_t size); > +int ttm_bad_manager_init(struct ttm_device *bdev, uint32_t mem_type, > + uint32_t size); > +void ttm_mock_manager_fini(struct ttm_device *bdev, uint32_t > mem_type); > +void ttm_bad_manager_fini(struct ttm_device *bdev, uint32_t > mem_type); > + > +#endif // TTM_MOCK_MANAGER_H Thanks, Thomas

[gentoo-commits] repo/gentoo:master commit in: net-wireless/gnuradio/

2024-05-29 Thread Thomas Beierlein
commit: 8ab0329e04b4623a16ff9e548aa1f4e96a0d0e8f Author: Thomas Beierlein gentoo org> AuthorDate: Wed May 29 12:48:05 2024 + Commit: Thomas Beierlein gentoo org> CommitDate: Wed May 29 12:49:19 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a

Re: Flubbed it in the second interation through the string: range error... HOW?

2024-05-29 Thread Thomas Passin via Python-list
On 5/29/2024 3:14 AM, Chris Angelico via Python-list wrote: On Wed, 29 May 2024 at 16:03, Cameron Simpson via Python-list wrote: By which Thomas means stuff like this: print(f'if block {name[index]} and index {index}') Notice the leading "f'". Personally I wouldn't even g

CVS: cvs.openbsd.org: ports

2024-05-29 Thread Thomas Frohwein
CVSROOT:/cvs Module name:ports Changes by: t...@cvs.openbsd.org2024/05/29 06:12:22 Modified files: games/keeperrl : Makefile distinfo games/keeperrl/patches: patch-miniunz_cpp patch-steam_base_cpp Log message: update to keeperrl 1.0pl19. While upstream is

Re: [PATCH] tests/tcg/s390x: Allow specifying extra QEMU options on the command line

2024-05-29 Thread Thomas Huth
$(EXTFLAGS) -kernel LINK_SCRIPT=$(S390X_SRC)/softmmu.ld CFLAGS+=-ggdb -O0 LDFLAGS=-nostdlib -static Reviewed-by: Thomas Huth (sorry, I missed this for my pull request today ... I'll queue this patch for my next one)

[PULL 00/22] s390x, build-oss-fuzz and Clang -fsanitize=undefined fixes

2024-05-29 Thread Thomas Huth
of noreturn in translate_one tests/tcg/s390x: Add per.S Thomas Huth (3): hw/s390x: Remove unused macro VMSTATE_ADAPTER_ROUTES scripts/update-linux-headers.sh: Remove temporary directory inbetween scripts/update-linux-headers.sh: Fix the path of setup_data.h include/hw/s390x

[PULL 20/22] qemu-keymap: Make references to allocations static

2024-05-29 Thread Thomas Huth
Reviewed-by: Philippe Mathieu-Daudé Message-ID: <20240524-xkb-v4-1-2de564e5c...@daynix.com> Signed-off-by: Thomas Huth --- qemu-keymap.c | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/qemu-keymap.c b/qemu-keymap.c index 8c80f7a4ed..701e4332af 100644 ---

[PULL 19/22] scripts/update-linux-headers.sh: Fix the path of setup_data.h

2024-05-29 Thread Thomas Huth
re? Fixes: 66210a1a30 ("scripts/update-linux-headers: Add setup_data.h to import list") Message-ID: <20240527060126.12578-1-th...@redhat.com> Reviewed-by: Cornelia Huck Signed-off-by: Thomas Huth --- scripts/update-linux-headers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletio

[PULL 22/22] qapi: Do not cast function pointers

2024-05-29 Thread Thomas Huth
the type casts. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2346 Signed-off-by: Akihiko Odaki Reviewed-by: Markus Armbruster Message-ID: <20240524-xkb-v4-3-2de564e5c...@daynix.com> [thuth: Improve commit message according to Markus' suggestions] Signed-off-by: Thomas Huth --- includ

[PULL 01/22] target/s390x: Do not use unwind for per_check_exception

2024-05-29 Thread Thomas Huth
and is passed to the exception handler. Sync cc_op before the call, which we would have gotten from unwind. Signed-off-by: Richard Henderson Reviewed-by: Ilya Leoshkevich Message-ID: <20240502054417.234340-2-richard.hender...@linaro.org> [thuth: Silence checkpatch.pl errors] Signed-off-by: Thoma

[PULL 18/22] scripts/update-linux-headers.sh: Remove temporary directory inbetween

2024-05-29 Thread Thomas Huth
-th...@redhat.com> Reviewed-by: Michael S. Tsirkin Acked-by: Cornelia Huck Signed-off-by: Thomas Huth --- scripts/update-linux-headers.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index 8963c39189..fbf7e119bc 100755 --- a/s

[PULL 16/22] fuzz: disable leak-detection for oss-fuzz builds

2024-05-29 Thread Thomas Huth
Message-ID: <20240527150001.325565-1-alx...@bu.edu> Signed-off-by: Thomas Huth --- scripts/oss-fuzz/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/oss-fuzz/build.sh b/scripts/oss-fuzz/build.sh index 5238f83343..7398298173 100755 --- a/scripts/oss-fuzz/build.sh +++ b/s

[PULL 11/22] target/s390x: Fix helper_per_ifetch flags

2024-05-29 Thread Thomas Huth
o.org> Signed-off-by: Thomas Huth --- target/s390x/helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/s390x/helper.h b/target/s390x/helper.h index 5611155ba1..31bd193322 100644 --- a/target/s390x/helper.h +++ b/target/s390x/helper.h @@ -361,7 +361,7 @@ DEF_HELP

[PULL 08/22] target/s390x: Split per_breaking_event from per_branch_*

2024-05-29 Thread Thomas Huth
From: Richard Henderson The breaking-event-address register is updated regardless of PER being enabled. Reviewed-by: Ilya Leoshkevich Signed-off-by: Richard Henderson Message-ID: <20240502054417.234340-9-richard.hender...@linaro.org> Signed-off-by: Thomas Huth --- target/s39

[PULL 06/22] target/s390x: Introduce help_goto_indirect

2024-05-29 Thread Thomas Huth
From: Richard Henderson Add a small helper to handle unconditional indirect jumps. Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Ilya Leoshkevich Signed-off-by: Richard Henderson Message-ID: <20240502054417.234340-7-richard.hender...@linaro.org> Signed-off-by: Thomas Huth ---

[PULL 21/22] lockable: Do not cast function pointers

2024-05-29 Thread Thomas Huth
Odaki Reviewed-by: Philippe Mathieu-Daudé Message-ID: <20240524-xkb-v4-2-2de564e5c...@daynix.com> Signed-off-by: Thomas Huth --- include/qemu/lockable.h | 23 +++ 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/include/qemu/lockable.h b/include/qemu/lock

[PULL 12/22] target/s390x: Simplify per_ifetch, per_check_exception

2024-05-29 Thread Thomas Huth
-13-richard.hender...@linaro.org> [thuth: Silence checkpatch.pl errors] Signed-off-by: Thomas Huth --- target/s390x/helper.h | 4 ++-- target/s390x/tcg/misc_helper.c | 23 +-- target/s390x/tcg/translate.c | 20 3 files changed, 23 insertions(

[PULL 17/22] hw/s390x: Remove unused macro VMSTATE_ADAPTER_ROUTES

2024-05-29 Thread Thomas Huth
It's not used anywhere, so let's simply remove it. Message-ID: <20240527121351.211266-1-th...@redhat.com> Reviewed-by: Cédric Le Goater Reviewed-by: Eric Farman Signed-off-by: Thomas Huth --- include/hw/s390x/s390_flic.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/hw

[PULL 14/22] tests/tcg/s390x: Add per.S

2024-05-29 Thread Thomas Huth
From: Richard Henderson Add a small test to avoid regressions. Signed-off-by: Richard Henderson Acked-by: Ilya Leoshkevich Tested-by: Ilya Leoshkevich Message-ID: <20240502054417.234340-15-richard.hender...@linaro.org> Signed-off-by: Thomas Huth --- tests/tcg/s390x/Makefile.softmmu-

[PULL 15/22] fuzz: specify audiodev for usb-audio

2024-05-29 Thread Thomas Huth
From: Alexander Bulekov Fixes test-failure on Fedora 40 CI. Reported-by: Thomas Huth Signed-off-by: Alexander Bulekov Reviewed-by: Thomas Huth Message-ID: <20240527040711.311865-1-alx...@bu.edu> Signed-off-by: Thomas Huth --- tests/qtest/fuzz/generic_fuzz_configs.h | 3 ++- 1 file c

[PULL 02/22] target/s390x: Move cpu_get_tb_cpu_state out of line

2024-05-29 Thread Thomas Huth
From: Richard Henderson Signed-off-by: Richard Henderson Reviewed-by: Thomas Huth Reviewed-by: Ilya Leoshkevich Message-ID: <20240502054417.234340-3-richard.hender...@linaro.org> Signed-off-by: Thomas Huth --- target/s390x/cpu.h | 23 ++- target/s390x/cpu.

[PULL 04/22] target/s390x: Record separate PER bits in TB flags

2024-05-29 Thread Thomas Huth
-by: Ilya Leoshkevich Message-ID: <20240502054417.234340-5-richard.hender...@linaro.org> Signed-off-by: Thomas Huth --- target/s390x/cpu.h | 44 -- target/s390x/cpu.c | 22 + target/s390x/tcg/misc_helper.

[PULL 10/22] target/s390x: Raise exception from per_store_real

2024-05-29 Thread Thomas Huth
org> Signed-off-by: Thomas Huth --- target/s390x/helper.h | 2 +- target/s390x/tcg/misc_helper.c | 4 +++- target/s390x/tcg/translate.c | 7 --- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/target/s390x/helper.h b/target/s390x/helper.h index 061b379065..5611155ba1

[PULL 07/22] target/s390x: Simplify help_branch

2024-05-29 Thread Thomas Huth
of the tcg branch. Reviewed-by: Ilya Leoshkevich Signed-off-by: Richard Henderson Message-ID: <20240502054417.234340-8-richard.hender...@linaro.org> Signed-off-by: Thomas Huth --- target/s390x/tcg/translate.c | 152 --- 1 file changed, 50 insertions(+), 102 del

[PULL 13/22] target/s390x: Adjust check of noreturn in translate_one

2024-05-29 Thread Thomas Huth
ed-off-by: Thomas Huth --- target/s390x/tcg/translate.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c index c9a5a1687e..c81e035dea 100644 --- a/target/s390x/tcg/translate.c +++ b/target/s390x/tcg/trans

[PULL 03/22] target/s390x: Update CR9 bits

2024-05-29 Thread Thomas Huth
From: Richard Henderson Update from the PoO 14th edition. Signed-off-by: Richard Henderson Reviewed-by: Thomas Huth Reviewed-by: Ilya Leoshkevich Message-ID: <20240502054417.234340-4-richard.hender...@linaro.org> Signed-off-by: Thomas Huth --- target/s390x/cpu.h

[PULL 09/22] target/s390x: Raise exception from helper_per_branch

2024-05-29 Thread Thomas Huth
the normal non-exception branch path. Signed-off-by: Richard Henderson Message-ID: <20240502054417.234340-10-richard.hender...@linaro.org> Signed-off-by: Thomas Huth --- target/s390x/helper.h | 2 +- target/s390x/tcg/misc_helper.c | 15 +++ target/s390x/tcg/translate.c

[PULL 05/22] target/s390x: Disable conditional branch-to-next for PER

2024-05-29 Thread Thomas Huth
Henderson Message-ID: <20240502054417.234340-6-richard.hender...@linaro.org> Signed-off-by: Thomas Huth --- target/s390x/tcg/translate.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c index de98

Re: Database Connection Requests Initiated but Not Sent on the Wire (Some, Not All)

2024-05-29 Thread Mark Thomas
On 29/05/2024 10:26, Mark Thomas wrote: On 28/05/2024 16:26, Eric Robinson wrote: Took a bunch of thread and heap dumps during today's painful debacle. Will send a link to those as soon as I can. Thanks. I have them. I have taken a look and I am starting to form a theory. To help

Re: tests/avocado: Add LoongArch machine start test

2024-05-29 Thread Thomas Huth
On 15/05/2023 13.19, Song Gao wrote: Add a new test in tests/avocado to check LoongArch virt machine start. Reviewed-by: Thomas Huth Signed-off-by: Song Gao Reviewed-by: Cédric Le Goater Message-Id: <20230513012744.1885728-1-gaos...@loongson.cn> --- MAINTAINERS

Re: [PATCH 12/14] target/s390x: Simplify per_ifetch, per_check_exception

2024-05-29 Thread Thomas Huth
quot;\n", + env->per_address); FYI, checkpatch.pl complains: ERROR: Don't use '#' flag of printf format ('%#') in format strings, use '0x' prefix instead #84: FILE: target/s390x/tcg/misc_helper.c:651: +qemu_log_mask(CPU_LOG_INT, "PER interrupt before %#" PRIx64 I'll fix it up while picking up your patch. Thomas

Re: [PATCH] drm/tests: Add a missing Kconfig select

2024-05-29 Thread Thomas Hellström
On Wed, 2024-05-29 at 11:40 +0200, Maxime Ripard wrote: > Hi, > > Thanks for sending that patch > > On Wed, May 29, 2024 at 11:19:55AM GMT, Thomas Hellström wrote: > > Fix the following warning: > > > > WARNING: unmet direct dependencies detected for

[libreoffice-users] Table of contents problem

2024-05-29 Thread Thomas Blasejewicz
rick to do this, please let me know. Thank you Thomas -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? https://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: https://wiki.documentfoundation.org/Netiquette List arch

[Bug 2067260] Re: Mouse mapping randomly temporarily changes after Ubuntu 24.04 upgrade

2024-05-29 Thread Thomas Mortagne
Attached is a session (I rebooted to be sure) with a very basic USB cable mouse without any of the Logitech fancy features or buttons (an Amazon basics to be precise). ** Attachment added: "log.txt"

[Bug 2067260] Re: Mouse mapping randomly temporarily changes after Ubuntu 24.04 upgrade

2024-05-29 Thread Thomas Mortagne
Attached is a session (I rebooted to be sure) with a very basic USB cable mouse without any of the Logitech fancy features or buttons (an Amazon basics to be precise). ** Attachment added: "log.txt"

[platform-dev] Hannes Wellmann's new role through the Eclipse IDE WG Development Funding Effort

2024-05-29 Thread Thomas Froment via platform-dev
o join the Eclipse IDE Matrix room to ask your questions and interact directly with the community: https://chat.eclipse.org/#/room/#eclipse-ide:matrix.eclipse.org + Thomas Froment *Eclipse IDE Program Manager | Eclipse Foundation Europe GmbH*  @thomas.froment:matrix.eclipse.org <https://chat.ec

[equinox-dev] Hannes Wellmann's new role through the Eclipse IDE WG Development Funding Effort

2024-05-29 Thread Thomas Froment via equinox-dev
o join the Eclipse IDE Matrix room to ask your questions and interact directly with the community: https://chat.eclipse.org/#/room/#eclipse-ide:matrix.eclipse.org + Thomas Froment *Eclipse IDE Program Manager | Eclipse Foundation Europe GmbH*  @thomas.froment:matrix.eclipse.org <https://chat.ec

Re: Database Connection Requests Initiated but Not Sent on the Wire (Some, Not All)

2024-05-29 Thread Mark Thomas
On 28/05/2024 16:26, Eric Robinson wrote: Took a bunch of thread and heap dumps during today's painful debacle. Will send a link to those as soon as I can. Thanks. I have them. I have taken a look and I am starting to form a theory. To help with that I have a couple of questions. 1.

[PATCH] drm/tests: Add a missing Kconfig select

2024-05-29 Thread Thomas Hellström
EM [=y] && DRM [=y] && KUNIT [=y] && MMU [=y] Signed-off-by: Thomas Hellström Fixes: 54cb39e2293b ("drm/connector: hdmi: Create an HDMI sub-state") Cc: Maxime Ripard Cc: dri-devel@lists.freedesktop.org --- drivers/gpu/drm/Kconfig | 1 + 1 file changed, 1 in

Re: [libreoffice-users] center images anchored "as character"

2024-05-29 Thread Thomas Blasejewicz
On 2024/05/28 22:51, lo.harald.ber...@t-online.de wrote: Hi Thomas, create a new paragraph style as an offshoot of Default. The only change you make in it is the alignment to "Centered". Thank you! With a little luck, I might have solved the problem. I will know, when I submi

[Bug 2067260] Re: Mouse mapping randomly temporarily changes after Ubuntu 24.04 upgrade

2024-05-29 Thread Thomas Mortagne
Thanks for the analysis! > * A hardware-specific mode within the mouse itself. It would be strange that this happens only after upgrading to 24.04. Also, I tried with a simple USB cable mouse without any fancy side button and had similar problems. I will try to get some log of that as soon as

[Bug 2067260] Re: Mouse mapping randomly temporarily changes after Ubuntu 24.04 upgrade

2024-05-29 Thread Thomas Mortagne
Thanks for the analysis! > * A hardware-specific mode within the mouse itself. It would be strange that this happens only after upgrading to 24.04. Also, I tried with a simple USB cable mouse without any fancy side button and had similar problems. I will try to get some log of that as soon as

Re: [PATCH v2] ntp: remove accidental integer wrap-around

2024-05-29 Thread Thomas Gleixner
On Mon, May 27 2024 at 10:26, Miroslav Lichvar wrote: > On Fri, May 24, 2024 at 02:44:19PM +0200, Thomas Gleixner wrote: >> On Fri, May 24 2024 at 14:09, Thomas Gleixner wrote: >> > So instead of turning the clock back, we might be better off to actually >> > put

Re: [PATCH] x86/hpet: Read HPET directly if panic in progress

2024-05-29 Thread Thomas Gleixner
On Wed, May 29 2024 at 14:44, Tony W Wang-oc wrote: > Actually, this scenario is what this patch is trying to solve. > > We encountered hpet_lock deadlock from the call path of the MCE handler, > and this hpet_lock deadlock scenario may happen when others exceptions' > handler like #PF/#GP... to

Re: [PATCH] x86/hpet: Read HPET directly if panic in progress

2024-05-29 Thread Thomas Gleixner
On Wed, May 29 2024 at 12:39, Tony W Wang-oc wrote: > printk deadlock will happened at #A because in_nmi() evaluates to false > on CPU B and CPU B do not enter the panic() AT #A. > > Update user space MCE handler to NMI class context is preferred? No.

Re: [PATCH] fuzz: disable leak-detection for oss-fuzz builds

2024-05-29 Thread Thomas Huth
d -n 1)" I've applied your patch, but it seems the leak is not detected later in the individual fuzz-targets anymore. That's strange... did you have a closer look already where this leak here comes from? Thomas

Re: [PATCH] x86/hpet: Read HPET directly if panic in progress

2024-05-29 Thread Thomas Gleixner
Linus! On Tue, May 28 2024 at 16:22, Linus Torvalds wrote: > On Tue, 28 May 2024 at 15:12, Thomas Gleixner wrote: > I see the smiley, but yeah, I don't think we really care about it. Indeed. But the same problem exists on other architectures as well. drivers/clocksource alone has 4 ex

Re: [PATCH v4 0/4] Fix sanitizer errors with clang 18.1.1

2024-05-29 Thread Thomas Huth
a concern with it. To: Michael Tokarev To: Laurent Vivier To: Paolo Bonzini To: Marc-André Lureau To: Daniel P. Berrangé To: Thomas Huth To: Philippe Mathieu-Daudé To: Alex Bennée To: Wainer dos Santos Moschetta To: Beraldo Leal To: Richard Henderson To: Laurent Vivier Cc: qemu-devel@nongnu.

[gentoo-commits] repo/gentoo:master commit in: dev-python/thrift/

2024-05-29 Thread Thomas Beierlein
commit: 0e9370b45a589867220384ca6c63bc6bcaec3f74 Author: Thomas Beierlein gentoo org> AuthorDate: Wed May 29 07:37:20 2024 + Commit: Thomas Beierlein gentoo org> CommitDate: Wed May 29 07:38:08 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e

Re: [RFC PATCH v3 13/21] drm/exec: Rework contended locking

2024-05-29 Thread Thomas Hellström
On Tue, 2024-05-28 at 13:03 +0200, Christian König wrote: > Am 28.05.24 um 10:07 schrieb Thomas Hellström: > > On Tue, 2024-05-28 at 08:51 +0200, Christian König wrote: > > > > 2) Any contended lock held at loop start is completely > > > > encapsulated > > &g

Re: [PATCH] tests/qtest: Add numa test for loongarch system

2024-05-29 Thread Thomas Huth
hanged, 54 insertions(+), 1 deletion(-) Acked-by: Thomas Huth I assume this will also go through the loongarch tree? Let me know if you want to have this merged via the qtest tree instead.

Re: [PATCH] tests/libqos: Add loongarch virt machine node

2024-05-29 Thread Thomas Huth
est/libqos/loongarch-virt-machine.c @@ -0,0 +1,114 @@ +/* + * libqos driver framework + * + * Copyright (c) 2018 Emanuele Giuseppe Esposito + * Don't you want to add your information here, too? Anyway: Acked-by: Thomas Huth I assume this will go through the loongarch tree. Let me know if you want to get this merged through the qtest tree instead.

[gentoo-commits] repo/gentoo:master commit in: media-libs/hamlib/

2024-05-29 Thread Thomas Beierlein
commit: 3105bc81189ad18318b3419c015199cd06fabe00 Author: Thomas Beierlein gentoo org> AuthorDate: Wed May 29 07:05:49 2024 + Commit: Thomas Beierlein gentoo org> CommitDate: Wed May 29 07:08:19 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31

[gentoo-commits] repo/gentoo:master commit in: net-wireless/nanovna-saver/

2024-05-29 Thread Thomas Beierlein
commit: b369be79bd6df91b7bba1dd7e3c1bf7a0e3c4de3 Author: Thomas Beierlein gentoo org> AuthorDate: Wed May 29 07:07:00 2024 + Commit: Thomas Beierlein gentoo org> CommitDate: Wed May 29 07:08:19 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3

[plasmashell] [Bug 485456] With Qt 6.7, System Tray popup is inappropriately resized to a tiny nub

2024-05-29 Thread Thomas
https://bugs.kde.org/show_bug.cgi?id=485456 Thomas changed: What|Removed |Added CC|thomas.bre...@informatik.un | |i-oldenburg.de

Re: [PATCH v5 22/23] target/i386: Remove X86CPU::kvm_no_smi_migration field

2024-05-29 Thread Thomas Huth
/i386/cpu.c | 2 -- target/i386/kvm/kvm.c | 7 +-- 3 files changed, 1 insertion(+), 11 deletions(-) Reviewed-by: Thomas Huth

Re: [PATCH v5 21/23] hw/i386/pc: Simplify DEFINE_I440FX_MACHINE() macro

2024-05-29 Thread Thomas Huth
++- 1 file changed, 29 insertions(+), 33 deletions(-) Reviewed-by: Thomas Huth

Re: [PATCH v5 20/23] hw/i386/pc: Remove deprecated pc-i440fx-2.3 machine

2024-05-29 Thread Thomas Huth
docs/about/deprecated.rst | 4 ++-- docs/about/removed-features.rst | 2 +- hw/i386/pc.c| 25 - hw/i386/pc_piix.c | 19 --- 4 files changed, 3 insertions(+), 47 deletions(-) Reviewed-by: Thomas Huth

Re: [PATCH] fuzz: disable leak-detection for oss-fuzz builds

2024-05-29 Thread Thomas Huth
-n 1)" Would it maybe also make sense to check that $targets is not empty and error out in case it is? Thomas

[kmymoney] [Bug 487676] KMy Money: Change to FinTS Standard?

2024-05-28 Thread Thomas Baumgart via KMyMoney-devel
https://bugs.kde.org/show_bug.cgi?id=487676 Thomas Baumgart changed: What|Removed |Added Resolution|--- |NOT A BUG Status|REPORTED

[kmymoney] [Bug 487676] KMy Money: Change to FinTS Standard?

2024-05-28 Thread Thomas Baumgart
https://bugs.kde.org/show_bug.cgi?id=487676 Thomas Baumgart changed: What|Removed |Added Resolution|--- |NOT A BUG Status|REPORTED

Re: Flubbed it in the second interation through the string: range error... HOW?

2024-05-28 Thread Thomas Passin via Python-list
Your code is unreadable. The lines have all run together. And after that, kindly explain what you want your code sample to do. "Process" doesn't say much. From what I can make out about what you are trying to do, you would do better to index through your string with for i, chr in

Re: Upgrade to OpenBSD 7.5 broke the bsd game of cribbage

2024-05-28 Thread Thomas Dickey
net/ncurses/NEWS.html#index-t20120825 https://invisible-island.net/ncurses/announce-6.0.html#h3-lib-setbuf > know OpenBSD developers have really important things to maintain.   If > someone could spare some time for this little bug, I'd be happy.  Maybe it > could be delegated to a stude

Re: [Update from Maintainer] games/mvdsv v1.00

2024-05-28 Thread Thomas Frohwein
On Mon, Apr 01, 2024 at 11:13:45AM +0100, Tom Murphy wrote: > Hi, > > Below is a diff to update games/mvdsv from 0.36 to 1.00. > > Changelog: > > Improvements > > Reduce memory during loadmap (dsvensson) > Enable pm_bunnyspeedcap cvar (ceeeKay) > DOWNLOAD: bump download speed

Re: [PATCH] x86/hpet: Read HPET directly if panic in progress

2024-05-28 Thread Thomas Gleixner
On Tue, May 28 2024 at 07:18, Dave Hansen wrote: > On 5/27/24 23:38, Tony W Wang-oc wrote: > ...> diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c >> index c96ae8fee95e..ecadd0698d6a 100644 >> --- a/arch/x86/kernel/hpet.c >> +++ b/arch/x86/kernel/hpet.c >> @@ -804,6 +804,12 @@ static

[OSList] Committed teams through mastering collaborative decisions (X-posted OS-list/GC-list)

2024-05-28 Thread Thomas Herrmann via OSList
- organizing a training 4-5th of July<https://www.boscop.org/news-single/5tofold-the-mastery-of-decision-training-with-marai-kiele-and-thomas-herrman-july-4-5-2024-in-berlin> in Berlin. I am also happy to be offering an opportunity in Swedish, organized in cooperation with Dupal Consulting

After upgrade, what do you do about "removed" and "obsolete" packages ?

2024-05-28 Thread Thomas Schmitt
on the machine for commercial reasons. Others are gcc-{8,9,10}, hfsprogs, linux-image-* from Debian 10 and from my own kernel experiments, and lots of stuff of which i have no clue. I wonder how others sift through such a list and decide what to do. Have a nice day :) Thomas

Re: RFR: 8333047: Remove arena-size-workaround in jvmtiUtils.cpp

2024-05-28 Thread Thomas Stuefe
On Tue, 28 May 2024 12:36:41 GMT, Thomas Stuefe wrote: > In `JvmtiUtil::single_threaded_resource_area()`, we create a resource area > that is supposed to work even if the current thread is not attached yet and > there is no associated Thread or the Thread has no valid Res

Re: [PATCH] scripts/update-linux-headers.sh: Remove temporary directory inbetween

2024-05-28 Thread Thomas Huth
On 28/05/2024 17.56, Michael S. Tsirkin wrote: On Mon, May 27, 2024 at 08:02:43AM +0200, Thomas Huth wrote: We are reusing the same temporary directory for installing the headers of all targets, so there could be stale files here when switching from one target to another. Make sure to delete

[gentoo-commits] repo/gentoo:master commit in: dev-libs/libzia/

2024-05-28 Thread Thomas Beierlein
commit: 47e776639abff6a0c61e3b04d7224cb4dfc4854b Author: Thomas Beierlein gentoo org> AuthorDate: Tue May 28 17:15:27 2024 + Commit: Thomas Beierlein gentoo org> CommitDate: Tue May 28 17:15:27 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47

[gentoo-commits] repo/gentoo:master commit in: media-radio/tucnak/

2024-05-28 Thread Thomas Beierlein
commit: 642564806f4a201e47ed6537a435aab7413205f7 Author: Thomas Beierlein gentoo org> AuthorDate: Tue May 28 17:14:26 2024 + Commit: Thomas Beierlein gentoo org> CommitDate: Tue May 28 17:14:26 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64

[gentoo-commits] repo/gentoo:master commit in: sci-visualization/pythonprop/

2024-05-28 Thread Thomas Beierlein
commit: 8a3efb86c3966102abb0bafc32c2660c5ca08839 Author: Thomas Beierlein gentoo org> AuthorDate: Tue May 28 17:11:24 2024 + Commit: Thomas Beierlein gentoo org> CommitDate: Tue May 28 17:11:24 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a

Re: RFR: 8333047: Remove arena-size-workaround in jvmtiUtils.cpp

2024-05-28 Thread Thomas Stuefe
On Tue, 28 May 2024 12:36:41 GMT, Thomas Stuefe wrote: > In `JvmtiUtil::single_threaded_resource_area()`, we create a resource area > that is supposed to work even if the current thread is not attached yet and > there is no associated Thread or the Thread has no valid Res

[kmymoney] [Bug 487317] Inaccurate TL sign (₺) display

2024-05-28 Thread Thomas Baumgart via KMyMoney-devel
https://bugs.kde.org/show_bug.cgi?id=487317 Thomas Baumgart changed: What|Removed |Added Resolution|--- |FIXED Version Fixed

[kmymoney] [Bug 487317] Inaccurate TL sign (₺) display

2024-05-28 Thread Thomas Baumgart
https://bugs.kde.org/show_bug.cgi?id=487317 Thomas Baumgart changed: What|Removed |Added Resolution|--- |FIXED Version Fixed

Role Of The QScintilla Component?

2024-05-28 Thread Thomas Passin
Leo's code base has optionally included the QScintilla editor QWidget for some time. But it doesn't seem to get used, even though there's code for, e.g., an editor body mixin with it. I know there's a setting to use the component, but nothing seemed to change when I set it to True. I assume

Re: Using git-diff Commands

2024-05-28 Thread Thomas Passin
Thanks, this looks like just the right thing. On Tuesday, May 28, 2024 at 11:14:07 AM UTC-4 Edward K. Ream wrote: > On Tue, May 28, 2024 at 9:38 AM Thomas Passin wrote: > >> Sometimes I want to diff a specific external file between two git >> branches. They might be the cur

Re: [PATCH] drm/xe: replace format-less snprintf() with strscpy()

2024-05-28 Thread Thomas Hellström
   ^~~~ > > In this case there is no reason for an snprintf(), so use a simpler > string copy. > > Fixes: b10d0c5e9df7 ("drm/xe: Add process name to devcoredump") > Signed-off-by: Arnd Bergmann Reviewed-by: Thomas Hellström Thanks, Will pick up and apply as soon as our CI i

Using git-diff Commands

2024-05-28 Thread Thomas Passin
Sometimes I want to diff a specific external file between two git branches. They might be the currently checked out version and some other, or even between two different but not checked out commit hashes. Can I do this using the existing Leo commands? If so, how? I use the Git-Extensions

Re: Database Connection Requests Initiated but Not Sent on the Wire (Some, Not All)

2024-05-28 Thread Mark Thomas
Hi Eric, Follow-up observsations and comments in-line. What time does this problem start? It typically starts around 9:15 am EDT and goes until around 10:30 am. Does that match the time of highest request load from the customer? Rather than a spike, I'm wondering if the problem is

[libreoffice-users] spell check does not "ignore all"

2024-05-28 Thread Thomas Blasejewicz
, if Libreoffice could listen to the instructions and automate the tasks. What is is, that I am missing here? Thank you Thomas -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? https://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Po

[libreoffice-users] style does NOT display the specified font size

2024-05-28 Thread Thomas Blasejewicz
owing what was going on will help me with the next book. Thank you Thomas -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? https://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: https://wiki.documentfoundation.org/Netiq

[libreoffice-users] center images anchored "as character"

2024-05-28 Thread Thomas Blasejewicz
enter. What is the trick to center ONLY the image, but not the entire text? Thank you Thomas -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? https://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: https://wiki.doc

RFR: 8333047: Remove arena-size-workaround in jvmtiUtils.cpp

2024-05-28 Thread Thomas Stuefe
In `JvmtiUtil::single_threaded_resource_area()`, we create a resource area that is supposed to work even if the current thread is not attached yet and there is no associated Thread or the Thread has no valid ResourceArea. It contains a workaround: // lazily create the single threaded

[ceph-users] Re: OSD processes crashes on repair 'unexpected clone'

2024-05-28 Thread Thomas Björklund
3c3] 16: (ShardedThreadPool::shardedthreadpool_worker(unsigned int)+0x41a) [0x55c814802e6a] 17: (ShardedThreadPool::WorkThreadSharded::entry()+0x10) [0x55c814805410] 18: (()+0x7ea7) [0x7f4d509c0ea7] 19: (clone()+0x3f) [0x7f4d50549a6f] NOTE: a copy of the executable, or `objdump -rdS ` is needed to interpret this. We are unsure on how to rectify the issue and get the cluster healthy again. Best regards, Thomas Björklund ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io

Re: [PATCH 2/4] usb: add config options for the hub and hid devices

2024-05-28 Thread Thomas Huth
On 28/05/2024 11.54, Gerd Hoffmann wrote: Signed-off-by: Gerd Hoffmann --- hw/usb/Kconfig | 10 ++ hw/usb/meson.build | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) Reviewed-by: Thomas Huth

Re: [PATCH 3/4] usb/ohci-pci: deprecate, don't build by default

2024-05-28 Thread Thomas Huth
HCI_PCI pseries could certainly continue without OHCI AFAICT, but the others? Maybe this needs some discussion first... (thus putting some more people on CC:) Thomas

[ceph-users] OSD processes crashes on repair 'unexpected clone'

2024-05-28 Thread Thomas Björklund
55c814802e6a] 17: (ShardedThreadPool::WorkThreadSharded::entry()+0x10) [0x55c814805410] 18: (()+0x7ea7) [0x7f4d509c0ea7] 19: (clone()+0x3f) [0x7f4d50549a6f] NOTE: a copy of the executable, or `objdump -rdS ` is needed to interpret this.* We are unsure on how to rectify the issue and get the cluster healthy again. Best regards, Thomas Björklund ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email to ceph-users-le...@ceph.io

Re: Database Connection Requests Initiated but Not Sent on the Wire (Some, Not All)

2024-05-28 Thread Mark Thomas
Hi Eric, I have a some follow-up questions in-line. I have also read the other messages in this thread and added a couple of additional questions based on what I read in those threads. On 26/05/2024 02:58, Eric Robinson wrote: One of our hosting customers is a medical practice using a

Re: [RFC PATCH v3 13/21] drm/exec: Rework contended locking

2024-05-28 Thread Thomas Hellström
On Tue, 2024-05-28 at 08:51 +0200, Christian König wrote: > Hi Thomas, > > Am 28.05.24 um 08:36 schrieb Thomas Hellström: > > Hi, Christian. > > > > I'd appreciate if you could respond to the below, since it is a bit > > hard to try to design around a problem I d

Bug#1071628: python-pymysql: CVE-2024-36039

2024-05-28 Thread Thomas Goirand
sage, the fixes I would like to upload to bullseye and bookworm. Please allow these uploads. Note that I have uploaded latest upstream version 1.1.1-1 to unstable, that includes the patch in these debdiffs. Cheers, Thomas Goirand (zigo) diff -Nru python-pymysql-0.9.3/debian/changelog python-pym

Bug#1071628: python-pymysql: CVE-2024-36039

2024-05-28 Thread Thomas Goirand
sage, the fixes I would like to upload to bullseye and bookworm. Please allow these uploads. Note that I have uploaded latest upstream version 1.1.1-1 to unstable, that includes the patch in these debdiffs. Cheers, Thomas Goirand (zigo) diff -Nru python-pymysql-0.9.3/debian/changelog python-pym

[jira] [Commented] (CASSANDRA-19579) threads lingering after driver shutdown: session close starts thread and doesn't await its stop

2024-05-28 Thread Thomas Klambauer (Jira)
[ https://issues.apache.org/jira/browse/CASSANDRA-19579?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17849907#comment-17849907 ] Thomas Klambauer commented on CASSANDRA-19579: -- Hi y'all! any update here

Re: [PATCH 3/4] tests/vm: update centos.aarch64 image to 9

2024-05-28 Thread Thomas Huth
(+), 5 deletions(-) Reviewed-by: Thomas Huth

Re: [PATCH 2/4] docs/devel: update references to centos to later version

2024-05-28 Thread Thomas Huth
bout using @fedora instead of @centos9 ? Thomas

Re: [PATCH v2 4/6] tests/qtest/migration-test: Quieten ppc64 QEMU warnigns

2024-05-28 Thread Thomas Huth
I just noticed that there is a typo in the subject: s/warnigns/warnings/ On 28/05/2024 02.42, Nicholas Piggin wrote: Reviewed-by: Thomas Huth Signed-off-by: Nicholas Piggin --- tests/qtest/migration-test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests

Re: [PATCH v2 3/6] tests/qtest: Move common define from libqos-spapr.h to new ppc-util.h

2024-05-28 Thread Thomas Huth
+++ tests/qtest/boot-serial-test.c| 2 +- tests/qtest/prom-env-test.c | 2 +- tests/qtest/pxe-test.c| 2 +- 5 files changed, 22 insertions(+), 10 deletions(-) create mode 100644 tests/qtest/ppc-util.h Reviewed-by: Thomas Huth

Re: [RFC PATCH v3 13/21] drm/exec: Rework contended locking

2024-05-28 Thread Thomas Hellström
locking, then I think we need to separate that from the ww transaction tool and only pass the latter around to TTM. Thanks, Thomas On Wed, 2024-05-22 at 19:42 +0200, Thomas Hellström wrote: > On Wed, 2024-05-22 at 18:52 +0200, Christian König wrote: > > Am 22.05.24 um 16:32 schri

Re: [PATCH v2 1/6] tests/qtest/migration: Run test_mode_reboot outside gitlab CI

2024-05-28 Thread Thomas Huth
raints container environments ... so it might be better to check whether enough space is available than to tie this to an environment variable (or even better change away from /dev/shm if possible like you did in your other patch - but I don't have a clue whether that's ok or not for these tests) Thomas

[PATCH KTEST] add test to exercise the new mount API for bcachefs

2024-05-27 Thread Thomas Bertschinger
Signed-off-by: Thomas Bertschinger --- tests/bcachefs/single_device.ktest | 33 ++ 1 file changed, 33 insertions(+) diff --git a/tests/bcachefs/single_device.ktest b/tests/bcachefs/single_device.ktest index 7476a08..e170b8b 100755 --- a/tests/bcachefs

  1   2   3   4   5   6   7   8   9   10   >