Re: [PATCH] drm/amdgpu: drop MES 10.1 support

2024-05-29 Thread Christian König
Am 02.05.24 um 23:41 schrieb Alex Deucher: It was an enablement vehicle for MES 11 and was never productized. Remove it. Signed-off-by: Alex Deucher Acked-by: Christian König --- drivers/gpu/drm/amd/amdgpu/Makefile |1 - drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c

Re: pre-releases (for systemd & co) in core-testing

2024-05-29 Thread Christian Hesse
Christian Hesse on Thu, 2024/05/23 09:16: > Christian Hesse on Wed, 2024/05/15 11:08: > > Having said that - I have set up a custom repository for now with systemd > > 256rc2. To test that add these lines to your pacman.conf: > > > > [testing] > > Server =

[gentoo-commits] proj/sci:master commit in: dev-python/fusepy/

2024-05-29 Thread Horea Christian
commit: ad581fd86bfffb1751ed69959f6d7b93d9dfdb8f Author: Horea Christian chymera eu> AuthorDate: Wed May 29 09:00:18 2024 + Commit: Horea Christian gmail com> CommitDate: Wed May 29 09:00:18 2024 + URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ad581fd

Re: [PATCH 01/14] drm/amdgpu: add nbio set_reg_remap helper

2024-05-29 Thread Christian König
Acked-by: Christian König for the whole series. Am 06.05.24 um 20:45 schrieb Alex Deucher: Will be used to consolidate reg remap settings and fix HDP flushes on systems with non-4K pages. Reviewed-by: Felix Kuehling Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/amdgpu_nbio.h

[PATCH] dma-buf: add a warning when drv try to reserve 0 fence slots

2024-05-29 Thread Christian König
When dma_resv_reserve_fences() is called with num_fences=0 it usually means that a driver or other component messed up its calculation how many fences are needed. Warn in that situation. When no fence are needed the function shouldn't be called in the first place. Signed-off-by: Christian König

[gentoo-commits] proj/sci:master commit in: sci-biology/afni/

2024-05-29 Thread Horea Christian
commit: 6d9b772f10ed51682604e5c1cb6f9c278a5c6c72 Author: Horea Christian chymera eu> AuthorDate: Wed May 29 08:31:29 2024 + Commit: Horea Christian gmail com> CommitDate: Wed May 29 08:31:29 2024 + URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6d9b772

[cctalk] Re: Pragmatically [was: Experience using an Altair 8800 ("Personal computer" from 70s)]

2024-05-29 Thread Christian Corti via cctalk
On Tue, 28 May 2024, Sellam Abraham wrote: if a computer is being purchased by a non-human, i.e. corporation, to be used to benefit the corporation, it is NOT a personal computer. So then, that excludes the IBM PC / XT etc... At that time they were mostly bought by corporations. Christian

[cctalk] Re: Pragmatically [was: Experience using an Altair 8800 ("Personal computer" from 70s)]

2024-05-29 Thread Christian Corti via cctalk
ata processing, whatever. In contrast to this, a "personal" computer is a machine where by design, you actually work in front of it and interact with it personally - not in the style of a systems' operator, but for all the tasks the computer should do for _you_. Christian

Re: [bug report] drm/amdgpu: amdgpu crash on playing videos, linux 6.10-rc

2024-05-29 Thread Christian König
engines. Regards, Christian. Am 29.05.24 um 06:05 schrieb Wang Yunchen: Hello, After upgrading to Linux 6.10-rc1 (Mesa is left untouched) I identified a strange bug that could cause the GPU to crash and reset while playing videos online with VA-API. The screen would first start to jitter

Re: [PATCH v2 09/10] drm/amdgpu: fix missing reset domain locks

2024-05-29 Thread Christian König
ead_trylock(>adev->reset_domain->sem)) { + amdgpu_mes_flush_shader_debugger(dev->adev, +pdd->proc_ctx_gpu_addr); + up_read(>adev->reset_domain->sem); + } That one is most likely correct, but Felix and/or somebody else from the KFD team needs to take a look. Thanks, Christian. pdd->already_dequeued = true; }

Re: [PATCH v2 08/10] drm/amdgpu: fix locking scope when flushing tlb

2024-05-29 Thread Christian König
Am 28.05.24 um 19:23 schrieb Yunxiang Li: Which method is used to flush tlb does not depend on whether a reset is in progress or not. We should skip flush altogether if the GPU will get reset. So put both path under reset_domain read lock. Signed-off-by: Yunxiang Li Reviewed-by: Christian

Re: [PATCH v2 07/10] drm/amdgpu: use helper in amdgpu_gart_unbind

2024-05-29 Thread Christian König
Am 28.05.24 um 19:23 schrieb Yunxiang Li: When amdgpu_gart_invalidate_tlb helper is introduced this part was left out of the conversion. Avoid the code duplication here. Signed-off-by: Yunxiang Li Reviewed-by: Christian König --- drivers/gpu/drm/amd/amdgpu/amdgpu_gart.c | 5 + 1

Re: [PATCH v2 06/10] drm/amdgpu: remove tlb flush in amdgpu_gtt_mgr_recover

2024-05-29 Thread Christian König
Am 28.05.24 um 19:23 schrieb Yunxiang Li: At this point the gart is not set up, there's no point to invalidate tlb here and it could even be harmful. Signed-off-by: Yunxiang Li Reviewed-by: Christian König --- drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.c | 2 -- 1 file changed, 2

Re: [PATCH v2 05/10] drm/amd/amdgpu: remove unnecessary flush when enable gart

2024-05-29 Thread Christian König
Signed-off-by: Yunxiang Li With the commit message improved the patch is Reviewed-by: Christian König . Regards, Christian. --- drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c | 3 --- drivers/gpu/drm/amd/amdgpu/gfx_v12_0.c | 3 --- drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c | 3 --- drivers/gpu/drm/

Re: [PATCH v2 04/10] drm/amdgpu/kfd: remove is_hws_hang and is_resetting

2024-05-29 Thread Christian König
ess during reset correctly. Sounds like the correct approach to me as well, but Felix needs to take a look at this. Christian. Signed-off-by: Yunxiang Li --- drivers/gpu/drm/amd/amdkfd/kfd_device.c | 1 - .../drm/amd/amdkfd/kfd_device_queue_manager.c | 79 --- .../drm/

Re: [PATCH v2 02/10] drm/amdgpu: fix sriov host flr handler

2024-05-29 Thread Christian König
a nice cleanup to me, but that is absolutely not my field of expertise. But feel free to add an Acked-by: Christian König Regards, Christian. --- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 2 ++ drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c | 14 drivers/gpu/drm/amd/amdgpu

Re: [PATCH v2 03/10] drm/amdgpu: abort fence poll if reset is started

2024-05-29 Thread Christian König
ady started before we enter the function. Regards, Christian. + return 0; } return timeout > 0 ? timeout : 0; } diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c index 8c6b0987919f..dd22fd93f572 100644 -

Re: [PATCH v2 01/10] drm/amdgpu: add skip_hw_access checks for sriov

2024-05-29 Thread Christian König
is duplicated. On the other hand an extra check doesn't really hurt us. So either way the patch is Reviewed-by: Christian König Regards, Christian. reg_access_ctrl = >gfx.rlc.reg_access_ctrl[xcc_id]; scratch_reg0 = (void __iomem *)adev->rmmio + 4 * reg_access_ctrl->scr

Commit: patch 9.1.0448: compiler warning in eval.c

2024-05-29 Thread Christian Brabandt
v9.1.0429) Solution: refactor code (Yegappan Lakshmanan) fixes: #14847 closes: #14867 Signed-off-by: Yegappan Lakshmanan Signed-off-by: Christian Brabandt diff --git a/src/eval.c b/src/eval.c index 858361073..b08f29657 100644 --- a/src/eval.c +++ b/src/eval.c

[cctalk] Re: TVs [was: Pragmatically [was: Experience using an Altair 8800 ("Personal computer" from 70s)]

2024-05-28 Thread Christian Kennedy via cctalk
om the end of the '50s: https://www.earlytelevision.org/philco_safari.html -- Christian Kennedy, Ph.D. ch...@mainecoon.com AF6AP | DB0692 | PG00029419 http://www.mainecoon.comPGP KeyID 108DAB97 PGP fingerprint: 4E99 10B6 7253 B048 6685 6CBC 55E1 20A3 108D AB97 "Mr. McKittrick

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

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

[Git][archlinux/packaging/packages/minio][main] upgpkg: 2024.05.28-1

2024-05-28 Thread Christian Heusel (@gromit)
Christian Heusel pushed to branch main at Arch Linux / Packaging / Packages / minio Commits: ed9cda98 by Christian Heusel at 2024-05-29T02:46:36+02:00 upgpkg: 2024.05.28-1 - - - - - 2 changed files: - .SRCINFO - PKGBUILD Changes: = .SRCINFO

Xorg doesn't start and some other issues with the RC1 of kernel 6.10

2024-05-28 Thread Christian Zigotzky
On 28.05.24 22:00, Christian Zigotzky wrote: Hi All, Xorg doesn't start anymore since the RC1 of kernel 6.10. We tested it with the VirtIO GPU and with some Radeon cards. Another error message: Failed to start Setup Virtual Console. Maybe this is the issue

Xorg doesn't start and some other issues with the RC1 of kernel 6.10

2024-05-28 Thread Christian Zigotzky
, and PASEMI boards. Could you please test Xorg on your PowerPC machines. Thanks, Christian

[ksplash] [Bug 487632] theme config is ignored

2024-05-28 Thread Christian
https://bugs.kde.org/show_bug.cgi?id=487632 Christian (Fuchs) changed: What|Removed |Added Resolution|WAITINGFORINFO |LATER Status|NEEDSINFO

[jenkinsci/claim-plugin] af9b58: fix wrong claimHoverPopup to open when clicking Cl...

2024-05-28 Thread 'Christian Martin' via Jenkins Commits
Branch: refs/heads/master Home: https://github.com/jenkinsci/claim-plugin Commit: af9b58b0a0889ebb495d12619f84ae92dca373d5 https://github.com/jenkinsci/claim-plugin/commit/af9b58b0a0889ebb495d12619f84ae92dca373d5 Author: Christian Martin Date: 2024-05-28 (Tue, 28 May 2024

[xtext-dev] Xtext 2.35.0 released

2024-05-28 Thread Christian Dietrich via xtext-dev
Hello Xtexters Xtext 2.35.0 is released. It can be found at - https://download.eclipse.org/modeling/tmf/xtext/updates/releases/2.35.0/ - https://www.eclipse.org/downloads/download.php?file=/modeling/tmf/xtext/downloads/drops/2.35.0/tmf-xtext-Update-2.35.0.zip - and on maven central Matching MWE

[gentoo-commits] proj/sci:master commit in: sci-biology/afni/files/, sci-biology/afni/

2024-05-28 Thread Horea Christian
commit: 0075b0aa4f9993e0bc54e9d627329332555d16e0 Author: Horea Christian chymera eu> AuthorDate: Tue May 28 17:10:35 2024 + Commit: Horea Christian gmail com> CommitDate: Tue May 28 17:10:35 2024 + URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=0075b0a

Memory issues with PostgreSQL 15

2024-05-28 Thread Christian Schröder
seem to misunderstand how the database manages its memory. This may have changed between 9.4 and 15, so my prior knowledge may be useless. I definitely need some help. ☹ Thanks in advance, Christian -- SUPPORT: For any issues, inquiries, or assi

[FFmpeg-devel] [PATCH v4 1/1] avcodec: add external enc libvvenc for H266/VVC

2024-05-28 Thread Christian Bartnik
in configure step. Co-authored-by: Christian Bartnik chris1031...@gmail.com Signed-off-by: Thomas Siedel --- configure | 4 + doc/encoders.texi | 64 + fftools/ffmpeg_mux_init.c | 2 +- libavcodec/Makefile | 1 + libavcodec/allcodecs.c| 1 + libavcodec

[FFmpeg-devel] [PATCH v4 0/1] Add support for H266/VVC encoding

2024-05-28 Thread Christian Bartnik
this patchset. Christian Bartnik (1): avcodec: add external enc libvvenc for H266/VVC configure | 4 + doc/encoders.texi | 64 + fftools/ffmpeg_mux_init.c | 2 +- libavcodec/Makefile | 1 + libavcodec/allcodecs.c| 1 + libavcodec/libvvenc.c

[gentoo-commits] proj/sci:master commit in: sci-biology/afni-datasets/

2024-05-28 Thread Horea Christian
commit: f3153dcbca91b2c127a05f04a8eec9db28ef7024 Author: Horea Christian chymera eu> AuthorDate: Tue May 28 16:13:32 2024 + Commit: Horea Christian gmail com> CommitDate: Tue May 28 16:13:32 2024 + URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=f3153dc

Re: RFR: 8332228: TypePollution.java: Unrecognized VM option 'UseSecondarySuperCache'

2024-05-28 Thread Christian Hagedorn
On Tue, 28 May 2024 14:01:44 GMT, Martin Doerr wrote: > Fix obvious typo in micro benchmark. Looks good and trivial! - Marked as reviewed by chagedorn (Reviewer). PR Review: https://git.openjdk.org/jdk/pull/19427#pullrequestreview-2083086912

Re: [PATCH] drm/amdgpu: Add lock around VF RLCG interface

2024-05-28 Thread Christian König
Am 27.05.24 um 22:19 schrieb Victor Skvortsov: flush_gpu_tlb may be called from another thread while device_gpu_recover is running. No, that would be illegal. Where do you see that? Regards, Christian. Both of these threads access registers through the VF RLCG interface during VF Full

[Bug 1892456] Re: [MIR] malcontent

2024-05-28 Thread Christian Ehrhardt 
** Changed in: malcontent (Ubuntu) Assignee: (unassigned) => Christian Ehrhardt  (paelzer) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1892456 Title: [MIR] malcontent To man

[Bug 1892456] Re: [MIR] malcontent

2024-05-28 Thread Christian Ehrhardt 
** Changed in: malcontent (Ubuntu) Assignee: (unassigned) => Christian Ehrhardt  (paelzer) -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to malcontent in Ubuntu. https://bugs.launchpad.net/bugs/1892456 Title: [MIR] malcont

[Bug 2067373] Re: [MIR] provd

2024-05-28 Thread Christian Ehrhardt 
** Changed in: provd (Ubuntu) Assignee: (unassigned) => Lukas Märdian (slyon) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2067373 Title: [MIR] provd To manage notifications about this bug

Re: [PATCH 1/3] drm/amdgpu/gfx11: select HDP ref/mask according to gfx ring pipe

2024-05-28 Thread Christian König
Reviewed-by: Christian König for the entire series. Regards, Christian. Am 13.05.24 um 22:25 schrieb Alex Deucher: Use correct ref/mask for differnent gfx ring pipe. Ported from ZhenGuo's patch for gfx10. Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c | 2 +- 1

Re: [PATCH] drm/amdgpu: drop some kernel messages in VCN code

2024-05-28 Thread Christian König
Acked-by: Christian König Thanks, Christian. Am 23.05.24 um 19:11 schrieb Jiang, Sonny: [AMD Official Use Only - AMD Internal Distribution Only] The patch is Reviewed-by: Sonny Jiang Thanks, Sonny *From:* Dong

Re: [PATCH] drm/amdgpu: Add flags to distinguish vf/pf/pt mode

2024-05-28 Thread Christian König
Am 27.05.24 um 18:28 schrieb Asad Kamal: Add extra flag definition for ids_flag field to distinguish between vf/pf/pt modes v2: Updated kms driver minor version & removed pf check as default is 0 Signed-off-by: Asad Kamal Reviewed-by: Lijo Lazar Acked-by: Christian König --- dri

[Git][archlinux/packaging/packages/minio-client][main] upgpkg: 2024.05.24-1: new upstream release

2024-05-28 Thread Christian Heusel (@gromit)
Christian Heusel pushed to branch main at Arch Linux / Packaging / Packages / minio-client Commits: 5306ae5c by Christian Heusel at 2024-05-28T15:09:24+02:00 upgpkg: 2024.05.24-1: new upstream release - - - - - 2 changed files: - .SRCINFO - PKGBUILD Changes

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

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

[Git][archlinux/packaging/packages/minio][main] upgpkg: 2024.05.27-1: new upstream release

2024-05-28 Thread Christian Heusel (@gromit)
Christian Heusel pushed to branch main at Arch Linux / Packaging / Packages / minio Commits: 1cfa3e7f by Christian Heusel at 2024-05-28T15:06:56+02:00 upgpkg: 2024.05.27-1: new upstream release - - - - - 2 changed files: - .SRCINFO - PKGBUILD Changes

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

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

core.git: odk/settings

2024-05-28 Thread Christian Lohmaier (via logerrit)
odk/settings/settings.mk |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit 9b072ee21a31127b008323749fe343f406da0fe4 Author: Christian Lohmaier AuthorDate: Mon May 27 12:16:06 2024 +0200 Commit: Christian Lohmaier CommitDate: Tue May 28 14:10:29 2024 +0200

core.git: Makefile.in

2024-05-28 Thread Christian Lohmaier (via logerrit)
Makefile.in |1 + 1 file changed, 1 insertion(+) New commits: commit 9ec0fa7ec3a62586f95e38f070b0d95e85fce6c3 Author: Christian Lohmaier AuthorDate: Sun May 5 18:43:53 2024 +0200 Commit: Christian Lohmaier CommitDate: Tue May 28 14:10:02 2024 +0200 use internal python

translations.git: Changes to 'refs/tags/co-24.04.3-2'

2024-05-28 Thread Christian Lohmaier (via logerrit)
Tag 'co-24.04.3-2' created by Andras Timar at 2024-05-28 11:29 + co-24.04.3-2 Changes since cp-24.04.1-2-1: --- 0 files changed ---

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

2024-05-28 Thread Christian König
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 in the ww transaction and can and will be unlocked when exiting it, so this patch doesn't introduce any additional

Re: [PATCH v3 02/21] drm/ttm: Slightly clean up LRU list iteration

2024-05-28 Thread Christian König
Am 21.05.24 um 09:16 schrieb Thomas Hellström: To make the transition to using lru hitches easier, simplify the ttm_resource_manager_next() interface to only take the cursor and reuse ttm_resource_manager_next() functionality from ttm_resource_manager_first(). Cc: Christian König Cc

Re: [PATCH v3 01/21] drm/ttm: Allow TTM LRU list nodes of different types

2024-05-28 Thread Christian König
. This will slightly increase the size of a struct ttm_resource. Changes in previous series: - Update enum ttm_lru_item_type documentation. v3: - Introduce ttm_lru_first_res_or_null() (Christian König, Thomas Hellström) Cc: Christian König Cc: Somalapuram Amaranath Cc: Matthew Brost Cc: Signed-off

[cctalk] Re: First Personal Computer

2024-05-28 Thread Christian Corti via cctalk
-plugs---sockets-bs4343 IMHO, based on measurement, the BS4343 outlets have much better earth conductivity than the BS1361 Gs I want the protective devices to trip, not an electrical experience - other folk's installations provided that Tshirt Martin -Original Message- From: Christian

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

2024-05-28 Thread Christian König
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 don't believe exists, and come up with a good solution for that. In short. 1) To prefault userptr we have

Commit: runtime(stylus): remove remaining css code (#14866)

2024-05-28 Thread Christian Brabandt
) This seems to be a forgotten fixup in https://github.com/vim/vim/commit/2d919d2744a99c9bb9e79984e85b8e8f5ec14c07#r141568461 Signed-off-by: zeertzjq Signed-off-by: Christian Brabandt diff --git a/runtime/syntax/stylus.vim b/runtime/syntax/stylus.vim index fd0f33b65..d8bf641e6 100644

[jenkinsci/claim-plugin] 2c412f: Add an optional column with claim/unclaim/reclaim ...

2024-05-27 Thread 'Christian Martin' via Jenkins Commits
Branch: refs/heads/master Home: https://github.com/jenkinsci/claim-plugin Commit: 2c412faf29c310dc17cef1e9c28b998238525bfb https://github.com/jenkinsci/claim-plugin/commit/2c412faf29c310dc17cef1e9c28b998238525bfb Author: Christian Martin Date: 2024-05-27 (Mon, 27 May 2024

[Bug 2025124] Re: PC frequently fails to wake from suspend with kernel 5.4

2024-05-27 Thread Christian Henz
I found the change that caused this regression. Reported upstream: https://gitlab.freedesktop.org/drm/nouveau/-/issues/362 ** Bug watch added: gitlab.freedesktop.org/drm/nouveau/-/issues #362 https://gitlab.freedesktop.org/drm/nouveau/-/issues/362 -- You received this bug notification

[ptxdist] [PATCH] ethtool: Version bump. 6.7 -> 6.9

2024-05-27 Thread Christian Melki
Skipping version 6.8. Was never released. Minor fixes in 6.9 https://git.kernel.org/pub/scm/network/ethtool/ethtool.git/log/?h=v6.9 Signed-off-by: Christian Melki --- rules/ethtool.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/ethtool.make b/rules

[ptxdist] [PATCH] e2fsprogs: Version bump. 1.47.0 -> 1.47.1

2024-05-27 Thread Christian Melki
Bunch of fixes mostly. Post 2038 for 64-bit time_t. https://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.47.1 * Disable libarchive. Could have been used to stream tar directly as input to mke2fs. * Forward patches. Applies cleanly. Signed-off-by: Christian Melki --- .../0001-e2fsprogs

[ksplash] [Bug 487632] New: theme config is ignored

2024-05-27 Thread Christian
https://bugs.kde.org/show_bug.cgi?id=487632 Bug ID: 487632 Summary: theme config is ignored Classification: Plasma Product: ksplash Version: 6.0.5 Platform: Other OS: Linux Status: REPORTED Severity:

[ptxdist] [PATCH] ntp: Version bump. 4.2.8p17 -> 4.2.8p18

2024-05-27 Thread Christian Melki
releasing p18. Signed-off-by: Christian Melki --- rules/ntp.make | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/rules/ntp.make b/rules/ntp.make index b813df9db..ce5351186 100644 --- a/rules/ntp.make +++ b/rules/ntp.make @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_NTP) += ntp

[ptxdist] [PATCH 2/2] tpm2-tss: Version bump. 4.1.1 -> 4.1.3

2024-05-27 Thread Christian Melki
Minor fixes. https://github.com/tpm2-software/tpm2-tss/releases/tag/4.1.2 https://github.com/tpm2-software/tpm2-tss/releases/tag/4.1.3 Signed-off-by: Christian Melki --- rules/tpm2-tss.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/tpm2-tss.make b/rules/tpm2

[cctalk] Re: First Personal Computer

2024-05-27 Thread Christian Corti via cctalk
16amps where? In Europe? At least in Germany 16 amps is standard. The Schuko outlets and plugs are rated for this current. As an example, the fuse box in my appartment is splitting up the three input phases (63A each) from the main distribution panel to 3x 3 circuits/16A each. Christian

[Git][archlinux/packaging/packages/mysql-workbench][main] convert is deprecated, use magick instead

2024-05-27 Thread Christian Hesse (@eworm)
Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / mysql-workbench Commits: af423c64 by Christian Hesse at 2024-05-27T17:45:28+02:00 convert is deprecated, use magick instead - - - - - 1 changed file: - PKGBUILD Changes

Commit: runtime(doc): Add ft_hare.txt to Reference Manual TOC

2024-05-27 Thread Christian Brabandt
ft_context.txt with the rest of the list. closes: #14863 Signed-off-by: h-east Signed-off-by: Christian Brabandt diff --git a/runtime/doc/help.txt b/runtime/doc/help.txt index 7109bae54..faa5f3271 100644 --- a/runtime/doc/help.txt +++ b/runtime/doc/help.txt @@ -1,4 +1,4

[Git][archlinux/packaging/packages/lib32-systemd][main] upgpkg: 255.7-1: new upstream release

2024-05-27 Thread Christian Hesse (@eworm)
Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / lib32-systemd Commits: cf1b45ee by Christian Hesse at 2024-05-27T17:23:28+02:00 upgpkg: 255.7-1: new upstream release - - - - - 2 changed files: - .SRCINFO - PKGBUILD Changes

[Git][archlinux/packaging/packages/systemd][main] upgpkg: 255.7-1: new upstream release

2024-05-27 Thread Christian Hesse (@eworm)
Christian Hesse pushed to branch main at Arch Linux / Packaging / Packages / systemd Commits: dc6c099e by Christian Hesse at 2024-05-27T17:23:22+02:00 upgpkg: 255.7-1: new upstream release - - - - - 2 changed files: - .SRCINFO - PKGBUILD Changes

[Git][archlinux/packaging/packages/lib32-systemd] Pushed new tag 255.7-1

2024-05-27 Thread Christian Hesse (@eworm)
Christian Hesse pushed new tag 255.7-1 at Arch Linux / Packaging / Packages / lib32-systemd -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/lib32-systemd/-/tree/255.7-1 You're receiving this email because of your account on gitlab.archlinux.org.

[Git][archlinux/packaging/packages/systemd] Pushed new tag 255.7-1

2024-05-27 Thread Christian Hesse (@eworm)
Christian Hesse pushed new tag 255.7-1 at Arch Linux / Packaging / Packages / systemd -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/systemd/-/tree/255.7-1 You're receiving this email because of your account on gitlab.archlinux.org.

[jira] [Created] (SLING-12328) Metric for number of seconds current package import is running

2024-05-27 Thread Christian Schneider (Jira)
Christian Schneider created SLING-12328: --- Summary: Metric for number of seconds current package import is running Key: SLING-12328 URL: https://issues.apache.org/jira/browse/SLING-12328 Project

[llvm-branch-commits] [mlir] [draft] Dialect Conversion without Rollback (PR #93412)

2024-05-27 Thread Christian Ulmann via llvm-branch-commits
Dinistro wrote: > The final `OneShotConversionPatternRewriter` will support everything that > `ConversionPatternRewriter` supports. A few helper functions are still > missing in this PR: > > * `applySignatureConversion` > * `convertRegionTypes` > * `convertNonEntryRegionTypes` > *

Re: [PATCH v2] dma-buf: handle testing kthreads creation failure

2024-05-27 Thread Christian König
by Linux Verification Center (linuxtesting.org). Fixes: 2989f6451084 ("dma-buf: Add selftests for dma-fence") Cc: sta...@vger.kernel.org Signed-off-by: Fedor Pchelkin Reviewed-by: T.J. Mercier Just FYI: I've picked this one up and pushed it to drm-misc-fixes. Regards, Christian. -

Re: [PATCH] drm/amdgpu: drop MES 10.1 support v3

2024-05-27 Thread Christian König
Am 23.05.24 um 21:48 schrieb Alex Deucher: It was an enablement vehicle for MES 11 and was never productized. Remove it. v2: drop additional checks in the GFX10 code. v3: drop mes_api_def.h Signed-off-by: Alex Deucher Acked-by: Christian König --- drivers/gpu/drm/amd/amdgpu/Makefile

[Juggle] Philadelphia Juggling Festival

2024-05-27 Thread Christian Kästner
/event.php?EventID=6057 Also, the weekend after is the festival in Boulder Colorado and if you are interested in Passout (one-week specialized club passing festival Sep 30-Oct 6 in Wisconsin) let me know. Best regards, Christian -- Mailing list of the CMU juggling club: Masters of Flying Objects Website

[jira] [Created] (SLING-12327) Use async to send package distributed event

2024-05-27 Thread Christian Schneider (Jira)
Christian Schneider created SLING-12327: --- Summary: Use async to send package distributed event Key: SLING-12327 URL: https://issues.apache.org/jira/browse/SLING-12327 Project: Sling

Commit: runtime(vim): re-generate vim syntax from generator

2024-05-27 Thread Christian Brabandt
runtime(vim): re-generate vim syntax from generator Commit: https://github.com/vim/vim/commit/393708cff6f92ee34b450b054dfdb73a65f5bcf7 Author: Christian Brabandt Date: Mon May 27 15:50:07 2024 +0200 runtime(vim): re-generate vim syntax from generator related: https://github.com

Commit: runtime(vim): fix syntax vim bug (Close #14858) (#14861)

2024-05-27 Thread Christian Brabandt
://github.com/vim/vim/issues/14861) Signed-off-by: h-east Signed-off-by: Christian Brabandt diff --git a/runtime/syntax/generator/gen_syntax_vim.vim b/runtime/syntax/generator/gen_syntax_vim.vim index d320bdbda..4843aacac 100644 --- a/runtime/syntax/generator/gen_syntax_vim.vim +++ b

Commit: patch 9.1.0447: completion may be wrong when deleting all chars

2024-05-27 Thread Christian Brabandt
: completion may be wrong when deleting all chars Solution: reset compl_shown_match closes: #14854 Signed-off-by: glepnir Signed-off-by: Christian Brabandt diff --git a/src/insexpand.c b/src/insexpand.c index c420c0ed9..c1374d3e9 100644 --- a/src/insexpand.c +++ b/src

[cctalk] Re: Experience using an Altair 8800 ("Personal computer" from 70s)

2024-05-27 Thread Christian Liendo via cctalk
The Micral N was developed for process control as well. The only difference was that Comstar was purchased by Warmer Swasey and it was integrated to their systems so they never marketed their systems outside of that market. On Mon, May 27, 2024, 7:48 AM Christian Corti via cctalk < cct

[cctalk] Re: First Personal Computer

2024-05-27 Thread Christian Corti via cctalk
On Sat, 25 May 2024, Mike Katz wrote: Now that is an interesting refinement.  Limiting to 1800 VA, most likely eliminates almost anything vacuum tube based. The LGP-30 needs less power. Christian

[cctalk] Re: First Personal Computer

2024-05-27 Thread Christian Corti via cctalk
is 16 amps (230V/16A), sometimes 10A. So yes, we can run 3,6kW devices from a single outlet (i.e. water boilers, ovens, cloth dryers ...) Christian

[cctalk] Re: First Personal Computer

2024-05-27 Thread Christian Corti via cctalk
you don't have the 1133 I/O multiplexer. Christian

[cctalk] Re: Experience using an Altair 8800 ("Personal computer" from 70s)

2024-05-27 Thread Christian Corti via cctalk
On Fri, 24 May 2024, Bill Degnan wrote: With respect, I have studied the 1956 Royal McBee LGP-23 (and later -30) at What is an LGP-23? I know the LGP-21, the transistorised and slower successor of the LGP-30 which came out later. Christian

[cctalk] Re: Experience using an Altair 8800 ("Personal computer" from 70s)

2024-05-27 Thread Christian Corti via cctalk
100 pins) As a non-native speaker: What is the difference between buss/buses(pl.) and bus/busses(pl.)? I mean, you don't say omnibuss, do you? Christian

[cctalk] Re: ANITA ((was: Experience using an Altair 8800 ("Personal computer" from 70s)

2024-05-27 Thread Christian Corti via cctalk
relay tubes. All thyratrons act digitally, there is only an on and an off state, both very distinct. Christian

[cctalk] Re: Experience using an Altair 8800 ("Personal computer" from 70s)

2024-05-27 Thread Christian Corti via cctalk
. But it seems as it was designed as an industrial and process control system, not much for individuals as a general purpose "personal computer". Christian

[llvm-branch-commits] [mlir] [draft] Dialect Conversion without Rollback (PR #93412)

2024-05-27 Thread Christian Ulmann via llvm-branch-commits
https://github.com/Dinistro commented: IIUC, this inherits from `ConversionPatternRewriter` to ensure that the conversion patterns can be used with the new `OneShotConversionPatternRewriter`. While this makes sense from a functional perspective, the introduced inheritance relation seems a bit

Re: Package Maintainer application - Bert Peters

2024-05-27 Thread Christian Heusel
My > > > application is sponsored by Christian Heusel (gromit) and Jakub > > > Klinkovský (lahwaacz). > > > > > > This therefore marks the beginning of the discussion period which will > > last for 2 weeks until 2024-05-19 after which we will have

Re: [basex-talk] storing xml-elements

2024-05-27 Thread Christian Grün
run a dynamic query on the XML snippet to get back your original result: let $xml := session:get('xml') let $path := session:get('path') let $result := xquery:eval($path, { '': $xml }) return $result Best, Christian On Sat, May 25, 2024 at 8:45 AM Rob Stapper wrote: > Hi Christian, >

Re: [ptxdist] year 2038 Toolchain

2024-05-27 Thread Christian Melki
TIME_BITS=32 and one with TIME_BITS=64? So ppl (like me) can start testing the TIME_BITS=64 version, and ppl that know for sure they do not care about y2038 can keep using the TIME_BITS=32 version ? - Erwin Regards, Christian

Re: [basex-talk] Session problems with two BaseX installations

2024-05-27 Thread Christian Grün
be able to see if your custom session key was adopted. If that works, there should be no need anymore to change the DBA session key, as suggested in my previous reply. Hope this helps, Christian On Wed, May 22, 2024 at 4:10 PM Jack Steyn wrote: > Hi Christian, > > I think you

Re: [PATCH] drm/radeon/r100: enhance error handling in r100_cp_init_microcode

2024-05-27 Thread Christian König
robably justified, if no then I would rather not do it. Regards, Christian. return err; }

Re: [PATCH] drm/radeon/r100: enhance error handling in r100_cp_init_microcode

2024-05-27 Thread Christian König
robably justified, if no then I would rather not do it. Regards, Christian. return err; }

Re: [PATCH] drm/radeon/r100: enhance error handling in r100_cp_init_microcode

2024-05-27 Thread Christian König
robably justified, if no then I would rather not do it. Regards, Christian. return err; }

Re: [Linaro-mm-sig] [PATCH] dma-buf/sw-sync: don't enable IRQ from sync_print_obj()

2024-05-27 Thread Christian König
Am 24.05.24 um 15:26 schrieb Tetsuo Handa: On 2024/05/07 22:09, Christian König wrote: Am 05.05.24 um 16:08 schrieb Tetsuo Handa: Since commit a6aa8fca4d79 ("dma-buf/sw-sync: Reduce irqsave/irqrestore from known context") by error replaced spin_unlock_irqrestore() with spin_

[jira] [Commented] (SUREFIRE-1811) Add resources to JPMS test module

2024-05-27 Thread Christian Stein (Jira)
[ https://issues.apache.org/jira/browse/SUREFIRE-1811?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17849629#comment-17849629 ] Christian Stein commented on SUREFIRE-1811: --- An application using multiple module layers can

[Git][archlinux/packaging/packages/audacity][main] upgpkg: 1:3.5.1-3: fix crash while scrolling horizontally

2024-05-26 Thread Christian Heusel (@gromit)
Christian Heusel pushed to branch main at Arch Linux / Packaging / Packages / audacity Commits: d6042cb7 by Christian Heusel at 2024-05-26T21:50:30+02:00 upgpkg: 1:3.5.1-3: fix crash while scrolling horizontally fixes https://gitlab.archlinux.org/archlinux/packaging/packages/audacity

[Git][archlinux/packaging/packages/audacity] Pushed new tag 1-3.5.1-3

2024-05-26 Thread Christian Heusel (@gromit)
Christian Heusel pushed new tag 1-3.5.1-3 at Arch Linux / Packaging / Packages / audacity -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/audacity/-/tree/1-3.5.1-3 You're receiving this email because of your account on gitlab.archlinux.org.

Re: Release timeline for 2.24.0

2024-05-26 Thread Christian Grobmeier
branch or an additional jar file rather than the stable code base. I see it popping up so often, I start to believe it's "not there yet." Christian > > Gary > > On Fri, May 24, 2024 at 2:11 PM Piotr P. Karwasz > wrote: >> >> Hi John, >> >>

Commit: patch 9.1.0446: getregionpos() inconsistent for partly-selected multibyte char

2024-05-26 Thread Christian Brabandt
-off-by: Christian Brabandt diff --git a/src/evalfunc.c b/src/evalfunc.c index b389085ed..d53dda457 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -5788,6 +5788,7 @@ f_getregionpos(typval_T *argvars, typval_T *rettv) for (lnum = p1.lnum; lnum <= p2.lnum; lnum++) { po

Commit: runtime(typescriptreact): fix highlighting nested and escaped quotes in string props (#14852)

2024-05-26 Thread Christian Brabandt
and escaped quotes in string props (https://github.com/vim/vim/issues/14852) Signed-off-by: rhysd Signed-off-by: Christian Brabandt diff --git a/runtime/syntax/typescriptreact.vim b/runtime/syntax/typescriptreact.vim index 9dc9a2b79..061ec4d81 100644 --- a/runtime/syntax

Commit: runtime(asm): remove the indent plugin since it has too many issues

2024-05-26 Thread Christian Brabandt
runtime(asm): remove the indent plugin since it has too many issues Commit: https://github.com/vim/vim/commit/76174e71101503900d54d38e00b3a869af1fdd85 Author: Christian Brabandt Date: Sun May 26 18:04:19 2024 +0200 runtime(asm): remove the indent plugin since it has too many issues

<    2   3   4   5   6   7   8   9   10   11   >