Commit: patch 9.1.1296: completion: incorrect truncation logic

2025-04-12 Thread Christian Brabandt
truncation logic (after: v9.1.1284) Solution: replace string allocation with direct screen rendering and fixe RTL/LTR truncation calculations (glepnir) closes: #17081 Signed-off-by: glepnir Signed-off-by: Christian Brabandt diff --git a/runtime/doc

Re: cygstart: buffer overflow when a URI is passed (cygutils-1.4.17-[23])

2025-04-12 Thread Christian Franke via Cygwin
f (wchar_t));   ...   // *** buffer overflow detected *** because the length parameter   // should specify the number of characters instead of bytes:   if (mbstowcs (*wcs_path, mbs_path, (len + 1) * sizeof (wchar_t)) ...   ... } -- Regards, Christian -- Problem reports: https://cygwin.com/pro

Re: Problem with finding css file with orgmode blogging setup

2025-04-12 Thread Christian Moe
ally, or configure an org-publish subproject with :base-extension "css" :publishing-function org-publish-attachment to tell org-publish to look for .css files and publish them to the server just as they are, as in Rohit's example config. Yours, Christian "Ashish Panigr

Commit: patch 9.1.1295: clientserver: does not handle :stopinsert correctly

2025-04-12 Thread Christian Brabandt
patch 9.1.1295: clientserver: does not handle :stopinsert correctly Commit: https://github.com/vim/vim/commit/cf665ccd3771d59584f2f44a7c644c017a2ad84f Author: Christian Brabandt Date: Sat Apr 12 18:09:28 2025 +0200 patch 9.1.1295: clientserver: does not handle :stopinsert correctly

Commit: runtime(doc): disable last-position-jump in diff mode

2025-04-12 Thread Christian Brabandt
runtime(doc): disable last-position-jump in diff mode Commit: https://github.com/vim/vim/commit/6f6c0dba9f578787af0f259a832c972807a884cd Author: Christian Brabandt Date: Sat Apr 12 18:07:39 2025 +0200 runtime(doc): disable last-position-jump in diff mode This has been bothering

Commit: runtime(doc): Improve 'wildmode' setting desciption

2025-04-12 Thread Christian Brabandt
//github.com/vim/vim/issues/17100 Signed-off-by: Girish Palya Signed-off-by: Christian Brabandt diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index a2f5f1f09..9fab3f46d 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -9638,55 +9638,65 @@

Re: UCRT compile error

2025-04-12 Thread Christian Brabandt
can you please share a complete log? Thanks, Christian -- Everyone who comes in here wants three things: (1) They want it quick. (2) They want it good. (3) They want it cheap. I tell 'em to pick two and call me back. -- sign on the back wall of a sm

Re: Heads-up: DSA key support being removed from OpenSSH

2025-04-12 Thread Christian Weisgerber
.5. https://packages.debian.org/stable/net/openssh-client-ssh1 -- Christian "naddy" Weisgerber na...@mips.inka.de

[PATCH] Cygwin: kill(1): fix parsing of negative pid

2025-04-12 Thread Christian Franke
process $ /bin/kill -9 -11 # BAD, same as /bin/kill -9 -- -9 -11 kill: -9: No such process kill: -11: No such process The above works as expected with the bash builtin and with /usr/bin/kill from Debian 12. -- Regards, Christian From 0ce4615d80cd1a5f417511d7988c90cd7cc6ebc7 Mon Sep 17 00:00:00

Re: [PATCH 08/10] hw/9pfs: Allow using hw/9pfs with emscripten

2025-04-12 Thread Christian Schoenebeck
On Saturday, April 12, 2025 12:21:47 PM CEST Christian Schoenebeck wrote: > On Saturday, April 12, 2025 10:21:47 AM CEST Christian Schoenebeck wrote: > > On Friday, April 11, 2025 12:47:29 PM CEST Kohei Tokunaga wrote: [...] > Let my answer my own question: I just checked the wasi

Re: [PATCH 08/10] hw/9pfs: Allow using hw/9pfs with emscripten

2025-04-12 Thread Christian Schoenebeck
On Saturday, April 12, 2025 12:21:47 PM CEST Christian Schoenebeck wrote: > On Saturday, April 12, 2025 10:21:47 AM CEST Christian Schoenebeck wrote: > > On Friday, April 11, 2025 12:47:29 PM CEST Kohei Tokunaga wrote: [...] > Let my answer my own question: I just checked the wasi

Re: [ITP] stress-ng 0.18.04

2025-04-12 Thread Christian Franke via Cygwin-apps
t's a bit awkward to get into place. Does taskkill /f not work? Of course it works, see related patch on cygwin-patches. For some unknown reason, I forgot about this tool. Thanks for the reminder. -- Thanks, Christian

Re: [PATCH 08/10] hw/9pfs: Allow using hw/9pfs with emscripten

2025-04-12 Thread Christian Schoenebeck
On Saturday, April 12, 2025 10:21:47 AM CEST Christian Schoenebeck wrote: > On Friday, April 11, 2025 12:47:29 PM CEST Kohei Tokunaga wrote: > > Hi Christian, > > > > > > Emscripten's fiber does not support submitting coroutines to other > > > > thread

Re: [PATCH 08/10] hw/9pfs: Allow using hw/9pfs with emscripten

2025-04-12 Thread Christian Schoenebeck
On Saturday, April 12, 2025 10:21:47 AM CEST Christian Schoenebeck wrote: > On Friday, April 11, 2025 12:47:29 PM CEST Kohei Tokunaga wrote: > > Hi Christian, > > > > > > Emscripten's fiber does not support submitting coroutines to other > > > > thread

Re: [PATCH 2/4] Cygwin: CI: Run stress-ng

2025-04-12 Thread Christian Franke
Christian Franke wrote: Jon Turney wrote: ---   .github/workflows/cygwin.yml  |  22 +-   winsup/testsuite/stress/cygstress | 603 ++ Attached is a minor update of my local version for current Cygwin and stress-ng HEADs. Mostly changed comments, but also adds

Commit: patch 9.1.1294: gui tabline menu does not use confirm when closing tabs

2025-04-12 Thread Christian Brabandt
Problem: gui tabline menu does not use confirm when closing tabs Solution: use ":confirm tabclose" explicitly (JMcKiern) closes: #17093 Signed-off-by: JMcKiern Signed-off-by: Christian Brabandt diff --git a/src/normal.c b/src/normal.c index e7915d6ff..6cd900

Commit: patch 9.1.1293: comment plugin does not handle 'exclusive' selection for comment object

2025-04-12 Thread Christian Brabandt
fixes: #17023 closes: #17098 Signed-off-by: Maxim Kim Signed-off-by: Christian Brabandt diff --git a/runtime/pack/dist/opt/comment/autoload/comment.vim b/runtime/pack/dist/opt/comment/autoload/comment.vim index 183351d19..a0ee7a72f 100644 --- a/runtime/pack/dist/opt/comment

Commit: runtime(sh): Do not look up a "sh" utility in $PATH for "sh_13.sh"

2025-04-12 Thread Christian Brabandt
"sh" utility in $PATH for "sh_13.sh" Dash may not be installed on a BSD CI runner, list it in the shebang line. See #17084 closes: #17094 Signed-off-by: Aliaksei Budavei <0x000...@gmail.com> Signed-off-by: Christian Brabandt diff -

Commit: runtime(doc): correct backslash escaping comma example

2025-04-12 Thread Christian Brabandt
/vim/vim/issues/17096 Signed-off-by: Qiming zhao Signed-off-by: Christian Brabandt diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 8530196aa..a2f5f1f09 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1,4 +1,4 @@ -*options.txt* For Vim version

Commit: patch 9.1.1292: statusline not correctly evaluated

2025-04-12 Thread Christian Brabandt
correctly evaluated (Peter Kenny, after v9.1.1291) Solution: revert part of patch v9.1.1291 (Hirohito Higashi) fixes: #17095 closes: #17094 Signed-off-by: Hirohito Higashi Signed-off-by: Christian Brabandt diff --git a/src/buffer.c b/src/buffer.c

Re: [PATCH 08/10] hw/9pfs: Allow using hw/9pfs with emscripten

2025-04-12 Thread Christian Schoenebeck
On Friday, April 11, 2025 12:47:29 PM CEST Kohei Tokunaga wrote: > Hi Christian, > > > > Emscripten's fiber does not support submitting coroutines to other > > > threads. So this commit modifies hw/9pfs/coth.h to disable this behavior > > > when compiled with

Re: [PATCH 08/10] hw/9pfs: Allow using hw/9pfs with emscripten

2025-04-12 Thread Christian Schoenebeck
On Friday, April 11, 2025 12:47:29 PM CEST Kohei Tokunaga wrote: > Hi Christian, > > > > Emscripten's fiber does not support submitting coroutines to other > > > threads. So this commit modifies hw/9pfs/coth.h to disable this behavior > > > when compiled with

Re: Reverting back to the previous Chromium version

2025-04-11 Thread Christian Britz
You could grab the .deb files from snapshot.debian.org Am 12.04.25 um 06:12 schrieb local10: Hi, Is there an easy way to revert back to the previous version of Chromium? I'm running Debian 12 Bookworm. I tried the following but it didn't work: # aptitude install chromium=135.0.7049.52-1~deb1

Re: RFR: 8305186: Reference.waitForReferenceProcessing should be more accessible to tests [v6]

2025-04-11 Thread Brent Christian
ferenceProcessing()` available to tests via the `WhiteBox` and > `ForceGC` test libraries. Brent Christian has updated the pull request incrementally with two additional commits since the last revision: - Make *the method* static, also - Make Method static - Changes: - all: ht

Re: RFR: 8305186: Reference.waitForReferenceProcessing should be more accessible to tests [v5]

2025-04-11 Thread Brent Christian
On Fri, 11 Apr 2025 21:36:28 GMT, Roger Riggs wrote: >> Brent Christian has updated the pull request incrementally with one >> additional commit since the last revision: >> >> wFRP throws InterruptedException, pass through from >> InvocationTargetException; do

Re: RFR: 8354335: No longer deprecate wrapper class constructors for removal

2025-04-11 Thread Brent Christian
On Thu, 10 Apr 2025 22:05:04 GMT, Roger Riggs wrote: > Remove forRemoval = true from @Deprecated annotation of Boolean, Byte, > Character, Double, Float, Integer, Long, Short. > And add `SuppressWarnings("deprecation") `where needed; and remove > `SuppressWarnings("removal")` LGTM ---

Re: RFR: 8354335: No longer deprecate wrapper class constructors for removal

2025-04-11 Thread Brent Christian
On Thu, 10 Apr 2025 22:05:04 GMT, Roger Riggs wrote: > Remove forRemoval = true from @Deprecated annotation of Boolean, Byte, > Character, Double, Float, Integer, Long, Short. > And add `SuppressWarnings("deprecation") `where needed; and remove > `SuppressWarnings("removal")` LGTM ---

Re: RFR: 8305186: Reference.waitForReferenceProcessing should be more accessible to tests [v3]

2025-04-11 Thread Brent Christian
On Fri, 11 Apr 2025 02:25:20 GMT, Stuart Marks wrote: >> I disagree. IMO, for a test library, it's an unnecessary burden to make >> callers catch a checked exception. > > Hm. In general, if something blocks interruptibly, it should be declared to > throw InterruptedException instead of catching

Re: RFR: 8305186: Reference.waitForReferenceProcessing should be more accessible to tests [v5]

2025-04-11 Thread Brent Christian
ferenceProcessing()` available to tests via the `WhiteBox` and > `ForceGC` test libraries. Brent Christian has updated the pull request incrementally with one additional commit since the last revision: wFRP throws InterruptedException, pass through from InvocationTargetException; don't

Re: [PATCH 1/3] drm/nouveau: Prevent signaled fences in pending list

2025-04-11 Thread Christian König
Am 11.04.25 um 14:44 schrieb Philipp Stanner: > On Fri, 2025-04-11 at 13:05 +0200, Christian König wrote: >>  Am 11.04.25 um 11:29 schrieb Philipp Stanner: >>   >>> [SNIP] >>>   >>> It could be, however, that at the same moment >>> nouveau_fen

core.git: Branch 'libreoffice-25-2' - configure.ac solenv/bin

2025-04-11 Thread Christian Lohmaier (via logerrit)
configure.ac |3 +-- solenv/bin/modules/installer/windows/msiglobal.pm |2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) New commits: commit fdc77b3c40f8fb4091ebe15c670522877644b75e Author: Christian Lohmaier AuthorDate: Fri Apr 11 12:49:14

Re: [PATCH] drm: function to get process name and pid

2025-04-11 Thread Christian König
ich makes use of the new function. Regards, Christian. > > Signed-off-by: Sunil Khatri > --- > drivers/gpu/drm/drm_file.c | 30 ++ > include/drm/drm_file.h | 1 + > 2 files changed, 31 insertions(+) > > diff --git a/drivers/gpu/drm/drm_fi

[ptxdist] [PATCH] linux-firmware: Version bump. 20250311 -> 20250410

2025-04-11 Thread Christian Melki
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/log/?h=20250410 * Added new license for Aeonsemi Ethernet nics. Signed-off-by: Christian Melki --- rules/linux-firmware.make | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rules/linux

[ptxdist] [PATCH] libffi: Version bump. 3.4.7 -> 3.4.8

2025-04-11 Thread Christian Melki
Minor changes. https://github.com/libffi/libffi/releases/tag/v3.4.8 * Adjust patch offsets. Applies cleanly. Signed-off-by: Christian Melki --- ...libffi-Fix-location-of-libraries-for-multilib-toolch.patch | 2 +- ...002-libffi-ensure-sysroot-paths-are-not-in-libffi.pc.patch | 4 ++-- patches

Re: [PATCH] drm/amdgpu/gfx: replace a comma with a semicolon

2025-04-11 Thread Christian König
Am 11.04.25 um 16:20 schrieb Alex Deucher: > Not techincally wrong, but I think a semicolon was > intended here. > > Fixes: 6cc6e61788f7 ("drm/amdgpu: use a dummy owner for sysfs triggered > cleaner shaders v3") > Cc: Christian König > Signed-off-by: Alex Deucher

Re: [ITP] stress-ng 0.18.04

2025-04-11 Thread Christian Franke via Cygwin-apps
Jon Turney wrote: On 07/04/2025 16:34, Christian Franke via Cygwin-apps wrote: Jon Turney via Cygwin-apps wrote: On 15/09/2024 16:11, Jon Turney via Cygwin-apps wrote: On 13/09/2024 18:33, Christian Franke via Cygwin-apps wrote: I would like to contribute stress-ng. Also present in Debian

Re: [PATCH 3/4] Cygwin: CI: Make stress test terser

2025-04-11 Thread Christian Franke
Jon Turney wrote: Don't echo the command being run OK, but this breaks -n option which is occasionally useful, see below. Capture stress-ng output to file Only show test output if it fails Capture all test output in an artifact Are messages cygwin prints itself also captured? See below.

Re: [PATCH 2/4] Cygwin: CI: Run stress-ng

2025-04-11 Thread Christian Franke
This works (on main only) thanks to the "termios: Implement tcflow(), tcdrain(), TCXONC, TIOCINQ" patch. -- Regards, Christian diff --git a/cygstress b/cygstress index 493ff3e..9e31325 100644 --- a/cygstress +++ b/cygstress @@ -25,13 +25,13 @@ Usage: ${0##*/} [OPTION...] {CI|WORK

Re: [PATCH] drm/amdgpu: Add NULL check for 'bo_va' in update_bo_mapping

2025-04-11 Thread Christian König
last_update = vm->last_update; > 138 else > --> 139 last_update = bo_va->last_pt_update; > ^ This pointer is > dereferenced without being checked. > > 140 break; > > Fi

[OAUTH-WG] Re: Second WGLC for Token Status List

2025-04-11 Thread Christian Bormann
Hi Denis, We went through your feedback and each point individually in https://github.com/oauth-wg/draft-ietf-oauth-status-list/issues/281. We didn’t agree with all points you made, but did a small editorial PR fixing some of them. Best Regards,Christian From: Denis Date: Monday, 7. April 2025 at

Re: [PATCH v3 0/8] drm: Introduce sparse GEM shmem

2025-04-11 Thread Christian König
Am 11.04.25 um 15:00 schrieb Boris Brezillon: > On Fri, 11 Apr 2025 14:45:49 +0200 > Christian König wrote: > >> Am 11.04.25 um 14:02 schrieb Boris Brezillon: >>>>> I guess this leaves older GPUs that don't support incremental >>>>> renderi

Re: [PATCH 0/3] uio/dma-buf: Give UIO users access to DMA addresses.

2025-04-11 Thread Christian König
Hi Bastien, Am 11.04.25 um 10:14 schrieb Bastien Curutchet: > Hi Christian, > > On 4/11/25 9:30 AM, Christian König wrote: >> Hi Thomas, >> >> Am 10.04.25 um 21:43 schrieb Thomas Petazzoni: >>> Hello Christian, >>> >>> Thanks for you

[PATCH] Cygwin: kill(1): skip kill(2) call if '-f -s -' is used

2025-04-11 Thread Christian Franke
In rare cases, '/bin/kill -f PID' hangs because kill(2) is always tried first. With this patch, this could be prevented with '/bin/kill -f -s - PID'. -- Regards, Christian From cb07ca02a856be378a2435f2095835c264b62bd9 Mon Sep 17 00:00:00 2001 From: Christian Franke Date:

Re: [linus:master] [fs/dax] bde708f1a6: WARNING:at_mm/truncate.c:#truncate_folio_batch_exceptionals

2025-04-11 Thread Christian Brauner
> didn't lift off and DAX ended up being kind of niche, I think the effort > to maintain DAX in ext2 is not justified and we should just drop it (and > direct existing users to use ext4 driver instead for the cases where they > need it). I'll have a look into it. +1

[PATCH] drm/amdgpu: cleanup amdgpu_vm_flush v6

2025-04-11 Thread Christian König
fix the logic v6: separate cleaner shader checks as suggested by Srini Signed-off-by: Christian König Reviewed-by: Srinivasan Shanmugam --- drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | 6 +- drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | 106 ++--- drivers/gpu/drm/amd/amdgpu

Re: [PATCH next] drm/syncobj: Fix leak in drm_syncobj_import_sync_file_fence()

2025-04-11 Thread Christian König
e_private, >> dma_fence_put(fence); >> drm_syncobj_put(syncobj); >> return 0; >> + >> +err_put_syncobj: >> + drm_syncobj_put(syncobj); >> +err_put_fence: >> + dma_fence_put(fence); >> + >> + return ret; > I suppose you could just initialize ret to zero and collapse the two > return paths? Either way, Yep, good point. With that done Reviewed-by: Christian König as well. Regards, Christian. > > Reviewed-by: Rob Clark > >> } >> >> static int drm_syncobj_export_sync_file(struct drm_file *file_private, >> -- >> 2.47.2 >>

Re: [PATCH v2] dma-buf/sw_sync: Decrement refcount on error in sw_sync_ioctl_get_deadline()

2025-04-11 Thread Christian König
ot;) > Signed-off-by: Dan Carpenter Reviewed and pushed to drm-misc-fixes. Sorry for the delay, I was fighting a bit with dim after the migration. Thanks, Christian. > --- > v2: style changes. > > drivers/dma-buf/sw_sync.c | 19 ++- > 1 file changed, 14 ins

Bug#1102651: drkonqi: tries to launch multiple times per second and fails

2025-04-11 Thread Christian Britz
-coredump-launcher.socket - Socket to launch DrKonqi for a systemd-coredump crash was skipped because of an unmet condition check (ConditionUser=!@system). [...] Regards, Christian -- System Information: Debian Release: trixie/sid APT prefers testing APT policy: (500, 'testing') Ar

Bug#1102651: drkonqi: tries to launch multiple times per second and fails

2025-04-11 Thread Christian Britz
-coredump-launcher.socket - Socket to launch DrKonqi for a systemd-coredump crash was skipped because of an unmet condition check (ConditionUser=!@system). [...] Regards, Christian -- System Information: Debian Release: trixie/sid APT prefers testing APT policy: (500, 'testing') Ar

Re: [PATCH 1/3] drm/nouveau: Prevent signaled fences in pending list

2025-04-11 Thread Christian König
Am 11.04.25 um 14:44 schrieb Philipp Stanner: > On Fri, 2025-04-11 at 13:05 +0200, Christian König wrote: >>  Am 11.04.25 um 11:29 schrieb Philipp Stanner: >>   >>> [SNIP] >>>   >>> It could be, however, that at the same moment >>> nouveau_fen

Re: [PATCH v1] s390/virtio_ccw: don't allocate/assign airqs for non-existing queues

2025-04-11 Thread Christian Borntraeger
Am 11.04.25 um 14:42 schrieb Heiko Carstens: On Fri, Apr 11, 2025 at 01:11:55PM +0200, Christian Borntraeger wrote: Am 10.04.25 um 20:44 schrieb David Hildenbrand: [...] --- So, given that (a) people are actively running into this (b) we'll have to backport this quite a lot (c) the

Re: [PATCH v3 0/8] drm: Introduce sparse GEM shmem

2025-04-11 Thread Christian König
d to pass that to the vulkan > driver as part of the device lost processing, so that it can keep that as > the starting point for the userspace dynamic memory requirement > guesstimate as a lower bound. Together with the (scaled to that > requirement) gpu driver memory pool and the core mm w

Re: [PATCH v3 0/8] drm: Introduce sparse GEM shmem

2025-04-11 Thread Christian König
ERNEL) and crash if it fails or times out", yes. Oh, please absolutely don't! Using GFP_KERNEL here is as evil as it can be. Background is that you don't get a crash, nor error message, nor anything indicating what is happening. You just get a deadlocked system with the user wondering why the heck the system doesn't response any more. Christian.

Re: [PATCH] drm: function to get process name and pid

2025-04-11 Thread Christian König
ich makes use of the new function. Regards, Christian. > > Signed-off-by: Sunil Khatri > --- > drivers/gpu/drm/drm_file.c | 30 ++ > include/drm/drm_file.h | 1 + > 2 files changed, 31 insertions(+) > > diff --git a/drivers/gpu/drm/drm_fi

core.git: configure.ac solenv/bin

2025-04-11 Thread Christian Lohmaier (via logerrit)
configure.ac |3 +-- solenv/bin/modules/installer/windows/msiglobal.pm |2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) New commits: commit 6b10b00d7d4d877d98c92ae81c9482fd76486a85 Author: Christian Lohmaier AuthorDate: Fri Apr 11 12:49:14

[Qbs] qbs 2.6.1 released

2025-04-11 Thread Christian Kandeler via Qbs
Hi, we have released qbs 2.6.1 today. As usual, sources, binaries, change log etc can be found here: https://download.qt.io/official_releases/qbs/2.6.1/ This release of qbs is also part of Qt Creator 16.0.1. Christian ___ Qbs mailing list Qbs@qt

Re: [PATCH v1] s390/virtio_ccw: don't allocate/assign airqs for non-existing queues

2025-04-11 Thread Christian Borntraeger
Am 10.04.25 um 20:44 schrieb David Hildenbrand: [...] --- So, given that (a) people are actively running into this (b) we'll have to backport this quite a lot (c) the spec issue is not a s390x-only issue (d) it's still unclear how to best deal with the spec issue I suggest getting this fix he

Re: [PATCH 1/3] drm/nouveau: Prevent signaled fences in pending list

2025-04-11 Thread Christian König
performance hacky fastpath functions such as > nouveau_fence_is_signaled() completely. It seems redundant to me. That would work for me as well. > > Or we might add locking to it, but IDK what was achieved with RCU here. > In any case it's definitely bad that Nouveau has so many re

Re: [PATCH 1/3] drm/nouveau: Prevent signaled fences in pending list

2025-04-11 Thread Christian König
performance hacky fastpath functions such as > nouveau_fence_is_signaled() completely. It seems redundant to me. That would work for me as well. > > Or we might add locking to it, but IDK what was achieved with RCU here. > In any case it's definitely bad that Nouveau has so many re

Re: [PATCH v3 0/8] drm: Introduce sparse GEM shmem

2025-04-11 Thread Christian König
Am 11.04.25 um 10:38 schrieb Boris Brezillon: > On Fri, 11 Apr 2025 10:04:07 +0200 > Christian König wrote: > >> Am 10.04.25 um 20:41 schrieb Boris Brezillon: >>> On Thu, 10 Apr 2025 14:01:03 -0400 >>> Alyssa Rosenzweig wrote: >>> >>>>&

[Git][archlinux/packaging/packages/asio][main] upgpkg: 1.34.2-1: New upstream release

2025-04-11 Thread Christian Heusel (@gromit)
Christian Heusel pushed to branch main at Arch Linux / Packaging / Packages / asio Commits: 5891ca89 by Christian Heusel at 2025-04-11T12:50:10+02:00 upgpkg: 1.34.2-1: New upstream release - - - - - 2 changed files: - .SRCINFO - PKGBUILD Changes

[Git][archlinux/packaging/packages/asio] Pushed new tag 1.34.2-1

2025-04-11 Thread Christian Heusel (@gromit)
Christian Heusel pushed new tag 1.34.2-1 at Arch Linux / Packaging / Packages / asio -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/asio/-/tree/1.34.2-1 You're receiving this email because of your account on gitlab.archlinux.org.

Re: Random ideas for 3.7

2025-04-11 Thread Christian Franke
mplement this, sorry) -- Regards, Christian

[hibernate-dev] Re: New member - Luca Molteni

2025-04-11 Thread Christian Beikov
+1 Am 11.04.2025 um 10:25 schrieb Yoann Rodiere via hibernate-dev: Hello, Luca Molteni (lucamolteni [1] on GitHub, volothamp in CC) recently moved to my team at Red hat, with the explicit purpose of having him work full-time on Hibernate projects and their integrations in downstream projects.

[Pkg-kde-extras] Bug#987648: quassel-core: Add hardening options to service file

2025-04-11 Thread Christian Göttsche via pkg-kde-extras
I am currently running the following hardening settings: LockPersonality=yes MemoryDenyWriteExecute=yes NoNewPrivileges=yes PrivateDevices=yes PrivateTmp=yes ProtectClock=yes ProtectControlGroups=yes ProtectHome=yes ProtectHostname=yes ProtectKernelLogs=yes ProtectKernelModules=yes ProtectKernelT

Bug#987648: quassel-core: Add hardening options to service file

2025-04-11 Thread Christian Göttsche
I am currently running the following hardening settings: LockPersonality=yes MemoryDenyWriteExecute=yes NoNewPrivileges=yes PrivateDevices=yes PrivateTmp=yes ProtectClock=yes ProtectControlGroups=yes ProtectHome=yes ProtectHostname=yes ProtectKernelLogs=yes ProtectKernelModules=yes ProtectKernelT

Re: [PATCH v3 0/8] drm: Introduce sparse GEM shmem

2025-04-11 Thread Christian König
n. 3. Userspace detects error, re-allocates buffer with increased size. 4. Userspace re-submits to incremental complete the submission. 5. Eventually repeat until fully completed. That would work but is likely just not the most performant solution. So faulting in memory on demand is basically just an optimization and that is ok as far as I can see. That is then a rather good justification for your work Boris. Because a common component makes it possible to implement a common fault injection functionality to make sure that the fallback path is properly exercised in testing. Regards, Christian.

Re: [PATCH 0/3] uio/dma-buf: Give UIO users access to DMA addresses.

2025-04-11 Thread Christian König
Hi Thomas, Am 10.04.25 um 21:43 schrieb Thomas Petazzoni: > Hello Christian, > > Thanks for your feedback! > > On Thu, 10 Apr 2025 18:29:12 +0200 > Christian König wrote: > >>> Many UIO users performing DMA from their UIO device need to access the >>>

Re: [FFmpeg-user] *_vulkan filters segmentation fault 11

2025-04-10 Thread Christian Ebert
* Christian Ebert on Monday, April 07, 2025 at 16:31:05 +0100: I cannot get hwaccel vulkan filters to work. Every filter I tried segfaults, see nlmeans_vulkan example below. Happy (well, not entirely) to report it as a bug, but maybe I am missing something? $ sw_vers ProductName

Re: [PATCH 1/3] drm/nouveau: Prevent signaled fences in pending list

2025-04-10 Thread Christian König
7;s one of it's own fences, and if yes does some special handling. E.g. checking the fence status bits etc... So this dma_fence_is_signaled() is for all non-nouveau fences and then not touching the internal flags is perfectly correct as far as I can see. Regards, Christian. > } > > static long

[Git][archlinux/packaging/packages/nvidia-open-lts] Pushed new tag 570.133.07-4

2025-04-10 Thread Christian Hesse (@eworm)
Christian Hesse pushed new tag 570.133.07-4 at Arch Linux / Packaging / Packages / nvidia-open-lts -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/nvidia-open-lts/-/tree/570.133.07-4 You're receiving this email because of your account on gitlab.archlinux.org.

Re: [PATCH] alsaaudio: Set try-poll to false by default

2025-04-10 Thread Christian Schoenebeck
On Friday, April 4, 2025 1:34:27 PM CEST BALATON Zoltan wrote: > On Fri, 4 Apr 2025, Christian Schoenebeck wrote: > > On Monday, March 31, 2025 3:05:24 PM CEST BALATON Zoltan wrote: > >> On Sun, 23 Mar 2025, Christian Schoenebeck wrote: > >>> On Sunday, March 16, 2025

Re: [RESEND] virtiofs: add filesystem context source name check

2025-04-10 Thread Christian Brauner
On Mon, Apr 07, 2025 at 07:50:49PM +0800, Xiangsheng Hou wrote: > In certain scenarios, for example, during fuzz testing, the source > name may be NULL, which could lead to a kernel panic. Therefore, an > extra check for the source name should be added. Oha, that's not great and easily reproducibl

Re: [PATCH 1/2] dma-fence: Rename dma_fence_is_signaled()

2025-04-10 Thread Christian König
ts for the dma_fence_is_signaled() documentation. What we should improve is the documentation of the dma_fence_ops->enable_signaling and dma_fence_ops->signaled callbacks. Especially see the comment about reference counts on enable_signaling which is missing on the signaled callback. That is most likely the root cause why nouveau implemented enable_signaling correctly but not the other one. But putting that aside I think we should make nails with heads and let the framework guarantee that the fences stay alive until they are signaled (one way or another). This completely removes the burden to keep a reference on unsignaled fences from the drivers / implementations and make things more over all more defensive. Regards, Christian. > > P. > >> P. >> >> >>> Regards, >>> >>> Boris

Commit: patch 9.1.1287: quickfix code can be further improved

2025-04-10 Thread Christian Brabandt
_stack() - qf_resize_stack() --> qf_resize_stack_base() Now qf_alloc_stack() can handle both quickfix/location lists. closes: #17068 Signed-off-by: Hirohito Higashi Signed-off-by: Christian Brabandt diff --git a/src/main.c b/src/main.c index a3caac8fb..9a862c4

[Bug 2106092] Re: ppc/spapr: fix default cpu for pre-9.0 machines (Backport)

2025-04-10 Thread Christian Ehrhardt
Yeah, machine types the most common place for mistakes if you ask me. Good: For noble this is a no-op - the offending change was in 9.0 (oracular) so noble is not affected in the first place. Good: Plucky is not yet released, this change looks fine, and we'll try to fix it asap before release to

Re: RFR: 8305186: Reference.waitForReferenceProcessing should be more accessible to tests [v3]

2025-04-10 Thread Brent Christian
On Thu, 10 Apr 2025 05:33:18 GMT, Kim Barrett wrote: >> Brent Christian has updated the pull request incrementally with one >> additional commit since the last revision: >> >> reflection improvements > > test/lib/jdk/test/whitebox/WhiteBox.java line 572: &

[PATCH v2 05/14] mmc: mediatek: permit to also build for Airoha arch

2025-04-10 Thread Christian Marangi
Airoha new SoC implement the same Mediatek driver for MMC. Permit to also build for Airoha arch. Signed-off-by: Christian Marangi --- drivers/mmc/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/Kconfig b/drivers/mmc/Kconfig index 4827834b4aa..2e33dbd3fb7

Re: RFR: 8305186: Reference.waitForReferenceProcessing should be more accessible to tests [v3]

2025-04-10 Thread Brent Christian
On Thu, 10 Apr 2025 06:08:37 GMT, Kim Barrett wrote: >> Brent Christian has updated the pull request incrementally with one >> additional commit since the last revision: >> >> reflection improvements > > test/lib/jdk/test/whitebox/WhiteBox.java line 5

Re: RFR: 8305186: Reference.waitForReferenceProcessing should be more accessible to tests [v3]

2025-04-10 Thread Brent Christian
On Thu, 10 Apr 2025 05:51:04 GMT, Kim Barrett wrote: >> Brent Christian has updated the pull request incrementally with one >> additional commit since the last revision: >> >> reflection improvements > > test/lib/jdk/test/whitebox/WhiteBox.java line 570: >

Re: RFR: 8305186: Reference.waitForReferenceProcessing should be more accessible to tests [v4]

2025-04-10 Thread Brent Christian
ferenceProcessing()` available to tests via the `WhiteBox` and > `ForceGC` test libraries. Brent Christian has updated the pull request incrementally with one additional commit since the last revision: Separate method to setup Method, per Kim; also simplify exception handling --

[kwin] [Bug 502156] Crash when enabling DisplayPort MST

2025-04-10 Thread christian tacke
https://bugs.kde.org/show_bug.cgi?id=502156 --- Comment #3 from christian tacke --- Created attachment 180094 --> https://bugs.kde.org/attachment.cgi?id=180094&action=edit sudo coredumpctl debug kwin_wayland -- You are receiving this mail because: You are watching all bug changes.

Re: [lvc-project] [PATCH] drm/amdgpu: check a user-provided number of BOs in list

2025-04-10 Thread Christian König
ybe a separate function which takes a maximum as parameter? BTW we have been running into the kvmalloc() check on valid use cases as well. For example on a system with a >256TiB of system memory having a single descriptor array >4GiB is perfectly valid. It's just not valid in any p

[PATCH v2 12/14] spi: airoha: Add Airoha SPI NAND driver

2025-04-10 Thread Christian Marangi
Add Airoha SPI NAND driver to permit usage of attached SNAND on the Airoha AN7581 SoC. While SPI controller supports DMA transation, due to U-Boot limitation we currently limit it to single command in Manual mode. Signed-off-by: Christian Marangi --- drivers/spi/Kconfig | 9

Re: [PATCH] drm/amdgpu: check a user-provided number of BOs in list

2025-04-10 Thread Christian König
check. As far as I can see that is already checked by kvmalloc_array(). So adding this additional check manually is completely superfluous. Regards, Christian. > > Found by Linux Verification Center (linuxtesting.org) with SVACE. > > Fixes: 964d0fbf6301 ("drm/amdgpu: Allow to cr

[Git][archlinux/packaging/packages/tp_smapi-lts] Pushed new tag 0.44-93

2025-04-10 Thread Christian Hesse (@eworm)
Christian Hesse pushed new tag 0.44-93 at Arch Linux / Packaging / Packages / tp_smapi-lts -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/tp_smapi-lts/-/tree/0.44-93 You're receiving this email because of your account on gitlab.archlinux.org.

[Git][archlinux/packaging/packages/minio] Pushed new tag 2025.04.08-1

2025-04-10 Thread Christian Heusel (@gromit)
Christian Heusel pushed new tag 2025.04.08-1 at Arch Linux / Packaging / Packages / minio -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/minio/-/tree/2025.04.08-1 You're receiving this email because of your account on gitlab.archlinux.org.

Bug#1102479: RFS: libapache-mod-evasive/2.4.0-2 -- evasive module to minimize HTTP DoS or brute force attacks

2025-04-10 Thread Christian Göttsche
yright: refer to URL instead of postal address in GPL license Regards, -- Christian Göttsche

[PATCH 1/2] drm/amdgpu: use a dummy owner for sysfs triggered cleaner shaders v3

2025-04-10 Thread Christian König
Otherwise triggering sysfs multiple times without other submissions in between only runs the shader once. v2: add some comment v3: re-add missing cast Signed-off-by: Christian König --- drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions

Re: [PATCH 08/10] hw/9pfs: Allow using hw/9pfs with emscripten

2025-04-10 Thread Christian Schoenebeck
anslated as possible in future. > + */ > +if (err == ENAMETOOLONG) { > +err = 36; /* ==ENAMETOOLONG on Linux */ > +} else if (err == ENOTEMPTY) { > +err = 39; /* ==ENOTEMPTY on Linux */ > +} else if (err == ELOOP) { > +err = 40; /* ==ELO

Commit: runtime(filetype): make shell filetype detection more robust

2025-04-10 Thread Christian Brabandt
robust closes: https://github.com/vim/vim/issues/17063 Signed-off-by: Aliaksei Budavei <0x000...@gmail.com> Signed-off-by: Christian Brabandt diff --git a/runtime/autoload/dist/ft.vim b/runtime/autoload/dist/ft.vim index a74030522..4053e51f0 100644 --- a/runtime/autoload

Commit: patch 9.1.1291: too many strlen() calls in buffer.c

2025-04-10 Thread Christian Brabandt
in buffer.c Solution: refactor buffer.c and remove strlen() calls (John Marriott) closes: #17063 Signed-off-by: John Marriott Signed-off-by: Christian Brabandt diff --git a/src/buffer.c b/src/buffer.c index 90ca59678..955800e3a 100644 --- a/src/buffer.c

[PATCH v2 06/14] arch: arm: dts: an7581: Add eMMC nodes

2025-04-10 Thread Christian Marangi
Add eMMC nodes with the fixed regulator and fixed clock. It's also needed to assign the clock and set it to 200MHz as it's set to 150Mhz by default. Signed-off-by: Christian Marangi --- arch/arm/dts/an7581-u-boot.dtsi | 33 + 1 file changed, 33

[PATCH v2 07/14] airoha: Add eMMC config to defconfig

2025-04-10 Thread Christian Marangi
Enable Mediatek MMC driver in Airoha AN7581 EVB defconfig to add support for it in default images. Signed-off-by: Christian Marangi --- configs/an7581_evb_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/an7581_evb_defconfig b/configs/an7581_evb_defconfig index f5bd647cb6e

Re: [PATCH v3 0/8] drm: Introduce sparse GEM shmem

2025-04-10 Thread Christian König
gt; they are designed to work this way. > >> What we should do instead is to add this as not ok approaches to the >> documentation and move on. > Well, that's what happened with panfrost, lima and panthor, and see > where we are now: 3 drivers that you consider broken (probably > rightfully), and more to come if we don't come up with a plan for HW > that have the same requirements (as I said, I wouldn't be surprised > if most tilers were relying on the same kind of on-demand-allocation). Well we have HW features in major drivers which we simply don't use because of that. > As always, I appreciate your valuable inputs, and would be happy to > try anything you think might be more adapted than what is proposed > here, but saying "this is broken HW/driver, so let's ignore it" is > not really an option, at least if you don't want the bad design > pattern to spread. Yeah, I'm not sure what to do either. We *know* from experience that this approach will fail. We have already tried that. Regards, Christian. > > Regards, > > Boris

Commit: runtime(keymaps): include 2 Brazilian Keymaps

2025-04-10 Thread Christian Brabandt
Signed-off-by: Elsarques Signed-off-by: Christian Brabandt diff --git a/.github/MAINTAINERS b/.github/MAINTAINERS index 01adaa935..277a2831d 100644 --- a/.github/MAINTAINERS +++ b/.github/MAINTAINERS @@ -416,6 +416,8 @@ runtime/indent/xml.vim @chrisbra runtime

Re: [RESEND PATCH] clk: fix crash on clk_set_rate clean rate cache

2025-04-10 Thread Christian Marangi
On Sat, Mar 15, 2025 at 10:24:14AM +0100, Christian Marangi wrote: > It's currently possible to make the bootloader crash on calling > clk_set_rate caused by the loop in clk_clean_rate_cache. > > The loop assume that every child of the clock node are also clock > device but th

Commit: patch 9.1.1290: tests: missing cleanup in test_filetype.vim

2025-04-10 Thread Christian Brabandt
: missing cleanup in test_filetype.vim, wrong name in test_plugin_matchparen Solution: Add :bwipe corresponding to :split, rename test case closes: #17088 Signed-off-by: zeertzjq Signed-off-by: Christian Brabandt diff --git a/src/testdir/test_filetype.vim b/src

Re: [PATCH 1/2] dma-fence: Rename dma_fence_is_signaled()

2025-04-10 Thread Christian König
ts for the dma_fence_is_signaled() documentation. What we should improve is the documentation of the dma_fence_ops->enable_signaling and dma_fence_ops->signaled callbacks. Especially see the comment about reference counts on enable_signaling which is missing on the signaled callback. That is most likely the root cause why nouveau implemented enable_signaling correctly but not the other one. But putting that aside I think we should make nails with heads and let the framework guarantee that the fences stay alive until they are signaled (one way or another). This completely removes the burden to keep a reference on unsignaled fences from the drivers / implementations and make things more over all more defensive. Regards, Christian. > > P. > >> P. >> >> >>> Regards, >>> >>> Boris

[ptxdist] [PATCH] libmbim: Version bump. 1.30.0 -> 1.32.0

2025-04-10 Thread Christian Melki
Long due, minor enhancements. https://gitlab.freedesktop.org/mobile-broadband/libmbim/-/blob/mbim-1-32/NEWS * Rearrange options for handling. Signed-off-by: Christian Melki --- rules/libmbim.make | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/rules

  1   2   3   4   5   6   7   8   9   10   >