Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Fri, 9 Aug 2024 10:14:10 GMT, Johan Sjölen wrote: >> - `VMATree` is used instead of `SortedLinkList` in new class >> `VirtualMemoryTrackerWithTree`. >> - A wrapper/helper `RegionTree` is made around VMATree to make some calls >> easier. >> - Both old and

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Tue, 20 Aug 2024 07:33:06 GMT, Afshin Zafari wrote: >> src/hotspot/share/nmt/nmtNativeCallStackStorage.hpp line 94: >> >>> 92: if (si._stack_index < 0 || si._stack_index >= _stacks.length()) { >>> 93: return _fake_stack; >>> 94: } >> >> Is that a leftover from debugging? >> >>

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Mon, 5 Aug 2024 17:23:46 GMT, Afshin Zafari wrote: >> It is considered that `malloc` or other external events are the same for two >> cases. If we know that there might be some noise for one or another, we >> should check and disable them. This is the approach I have talked. How can >> we a

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Mon, 5 Aug 2024 16:54:40 GMT, Afshin Zafari wrote: >> This applies the reserve/commit regardless of outcome, so slightly different. > > The main purpose of the `if (...)` cases is to find if the request to apply > the delta is valid or not. There are related assertions in VirtualMemory but >

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Mon, 5 Aug 2024 08:41:49 GMT, Johan Sjölen wrote: >> In `MemoryFileTracker`, the changes in commit/reserve are applied to a local >> `VirtualMemorySnapshot`. Here we have to apply them to the global >> `VirtualMemorySummary`. > > Yeah, that doesn't seem like a

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Mon, 5 Aug 2024 16:50:00 GMT, Afshin Zafari wrote: >> The bool argument is just passed along. >> >> ```c++ >> RegionsTree(bool with_storage) : VMATree(), _ncs_storage(with_storage) { >> } > > Done. > For my curiosity, what is the advantage? 1. No malloc 2. No indirection, so no cache mis

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Mon, 14 Oct 2024 08:50:52 GMT, Afshin Zafari wrote: >> Why is this assert triggered? That sounds like a bug. > > The assertion that happens during building jdk-image: > > # > # A fatal error has been detected by the Java Runtime Environment: > # > # Internal Error > (/home/afshin/scratch/83

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Fri, 27 Sep 2024 09:57:35 GMT, Afshin Zafari wrote: >> Removed. > > No, returned back. > This assert is triggered: > > # Internal Error > (/home/afshin/scratch/833XX_nmt_VMT_with_tree/src/hotspot/share/utilities/growableArray.hpp:142), > pid=1972883, tid=1972931 > # assert(0 <= i && i < _

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Mon, 14 Oct 2024 13:22:54 GMT, Afshin Zafari wrote: > > Yes, but this code is incorrect. So we should have a test detecting this, > > but we do not, and so this is under-tested. > > This code finds committed regions within a Stack region if they are not > accounted by NMT so far, IIUC. By r

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Mon, 14 Oct 2024 10:24:54 GMT, Afshin Zafari wrote: > > ```c++ > > region->add_committed_region(committed_start, committed_size, ncs); // <-- > > LOST! > > ``` > > The `region` is not a VMATree::node, it is a `ReservedMemoryRegion*`. I don't understand what you're trying to say here. Do you

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
bility of the new implementation > > > before it reaches any customers. During those 6 months it will go through > > > all of our testing multiple times over, and be used by OpenJDK > > > developers. What do you think of this idea? > > > > > > No objectio

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
f the default is to have the new implementation be disabled, then how are we ever going to find any real use bugs? Cheers, Johan - PR Comment: https://git.openjdk.org/jdk/pull/20425#issuecomment-2379082883

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Fri, 27 Sep 2024 09:52:07 GMT, Afshin Zafari wrote: > > What is the consensus on having two implementations alive at the same time? > > I'd like to see us delete the old VirtualMemoryTracker and only have the > > tree implementation left as part of this PR. What is the status of our > > tes

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
see what the lambda can alter in the outside scope. With a while-loop, > > you really have to read the whole thing. > > **The reason** that I write these kinds of iterators is that they're much > > simpler to implement and maintain and, _to me_, STL-style iterators aren

Re: RFR: 8337217: Port VirtualMemoryTracker to use VMATree

2024-11-08 Thread Johan Sjölen
On Thu, 1 Aug 2024 15:44:32 GMT, Afshin Zafari wrote: > - `VMATree` is used instead of `SortedLinkList` in new class > `VirtualMemoryTrackerWithTree`. > - A wrapper/helper `RegionTree` is made around VMATree to make some calls > easier. > - Both old and new versions exist in the code and ca

Re: qrtr/mhi: NULL-deref with in-kernel pd-mapper

2024-11-08 Thread Johan Hovold
On Thu, Nov 07, 2024 at 05:19:19PM +0100, Johan Hovold wrote: > On Tue, Nov 05, 2024 at 10:26:40AM -0800, Chris Lew wrote: > > On 11/4/2024 9:08 PM, Johan Hovold wrote: > > > I naively tried adding a sleep after registering the endpoint, but that > > > is at least no

Re: RFR: 8342454: Remove calls to doPrivileged in javafx.graphics/com.sun.glass [v3]

2024-11-07 Thread Johan Vos
On Tue, 5 Nov 2024 13:40:55 GMT, Kevin Rushforth wrote: >> Jayathirth D V has updated the pull request incrementally with one >> additional commit since the last revision: >> >> Update execute action > > modules/javafx.graphics/src/main/java/com/sun/glass/ui/ios/IosApplication.java > line 40

Re: RFR: 8342454: Remove calls to doPrivileged in javafx.graphics/com.sun.glass [v3]

2024-11-07 Thread Johan Vos
On Thu, 7 Nov 2024 07:15:59 GMT, Jayathirth D V wrote: >> This PR removes AccessController.doPrivileged() calls in >> javafx.graphics/com.sun.glass. It is part of umbrella task >> [JDK-8342441](https://bugs.openjdk.org/browse/JDK-8342441). >> >> Also wherever classes are implementing Privilege

Re: qrtr/mhi: NULL-deref with in-kernel pd-mapper

2024-11-07 Thread Johan Hovold
On Tue, Nov 05, 2024 at 10:26:40AM -0800, Chris Lew wrote: > On 11/4/2024 9:08 PM, Johan Hovold wrote: > > On Mon, Nov 04, 2024 at 04:26:15PM -0800, Chris Lew wrote: > >> This looks like the null pointer would happen if qrtr tried to send > >> before mhi_channel_prepare

Re: BRT copying feature

2024-11-07 Thread Johan Hendriks
'zdata4': property 'feature@block_cloning' can only be set to 'disabled' at creation time So to install a new 14.2 system you need to do some manual work to create the root pool with the options you prefer. Regards, Ronald. *Van:* Johan Hendriks *Datum:* woensd

[OSM-talk-be] Fwd: Call for Participation: Geospatial devroom at FOSDEM 2025

2024-11-06 Thread Johan Van de Wauw
-- Forwarded message - From: Edward Betts Date: Fri, Nov 1, 2024 at 12:19 PM Subject: Call for Participation: Geospatial devroom at FOSDEM 2025 To: , , < geospatial-devr...@lists.fosdem.org> After three years, the Geospatial devroom is back at FOSDEM. We need your expertise. Sub

Re: Integrated: 8340982: [win] Dead key followed by Space generates two characters instead of one

2024-11-06 Thread Johan Corveleyn
Hi Johan, Thanks for explaining. I've taken a look at that JEP 14 document, and I can certainly understand the reasoning behind it. And indeed, this is a P4 bug, not particularly critical. Though the fix is small and low-risk, it is still a change and it inevitably takes resources to bac

Re: Proposal: JavaFX Incubator Modules

2024-11-06 Thread Johan Vos
sandbox development, which really allows for testing/feedback. If we allow incubating modules to skip this sandbox stage, then I'm not sure there is more value left in the sandbox repository. - Johan On Wed, Nov 6, 2024 at 1:59 PM Nir Lisker wrote: > Being able to add an API without

[Openvpn-devel] IRC community meeting summary

2024-11-06 Thread Johan Draaisma via Openvpn-devel
C network every Wednesday at 14:00 Central European Time. Kind regards, Johan Draaisma ___ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openvpn-devel

BRT copying feature

2024-11-06 Thread Johan Hendriks
feature on the root pool as it is a feature that can only be set at creation time. Is there a way to use this feature only on selected pools? regards, Johan Hendriks

Re: CFV: New OpenJFX Reviewer: Michael Strauß

2024-11-05 Thread Johan Vos
Vote: YES On Tue, Nov 5, 2024 at 4:02 PM Kevin Rushforth wrote: > I hereby nominate Michael Strauß [1] to OpenJFX Reviewer. > > Michael is an OpenJFX community member, who has contributed 41 commits > [2] to OpenJFX. Michael regularly participates in code reviews, > especially in the areas of Ja

Re: RFR: 8342860: Fix more NULL usage backsliding

2024-11-05 Thread Johan Sjölen
On Fri, 1 Nov 2024 13:35:56 GMT, theoweidmannoracle wrote: > - Changed several "NULL" in comments to "null" > - Changed several `NULL` in code to `nullptr` Thank you, these changes looks good to me. - Marked as reviewed by jsjolen (Reviewer). PR Review: https://git.openjdk.org/jdk

Re: Integrated: 8340982: [win] Dead key followed by Space generates two characters instead of one

2024-11-05 Thread Johan Vos
Hi Johan, Sorry for not replying earlier. Since this is a real small fix, I think it makes sense to backport it to 17/21. I'm a bit hesitant because of JEP 14 [1] and the current discussions on the Tip&Tail approach [2] , where it is explicitly discouraged to backport anything a

Re: Integrated: 8340982: [win] Dead key followed by Space generates two characters instead of one

2024-11-05 Thread Johan Corveleyn
On Mon, Oct 7, 2024 at 5:01 PM Johan Corveleyn wrote: > > On Tue, Oct 1, 2024 at 10:30 PM Johan Corveleyn wrote: > > > > On Mon, Sep 30, 2024 at 5:23 PM Kevin Rushforth > > wrote: > > > > > > Gluon maintains JavaFX 17 and 21, so Johan can answer that.

Re: qrtr/mhi: NULL-deref with in-kernel pd-mapper

2024-11-04 Thread Johan Hovold
On Mon, Nov 04, 2024 at 04:26:15PM -0800, Chris Lew wrote: > On 11/1/2024 8:01 AM, Johan Hovold wrote: > > [8.825593] Unable to handle kernel NULL pointer dereference at virtual > > address 0034 > > . > > [9.002030] CPU: 10 UID: 0 PID: 11 Comm

Re: RFR: 8342917: GHA: Intermittent build failure on Linux while downloading ant

2024-11-04 Thread Johan Vos
On Mon, 4 Nov 2024 17:42:01 GMT, Kevin Rushforth wrote: > We are getting frequent intermittent failures downloading `ant` on Linux. The > fix is to use the package manager to install ant rather than downloading it > from `apache.org`. > > This only impacts GHA test builds, so the only verifica

Re: RFR: 8304824: NMT should not use ThreadCritical [v9]

2024-11-04 Thread Johan Sjölen
On Mon, 4 Nov 2024 14:52:06 GMT, Robert Toyonaga wrote: >>>This include is not needed because there are no uses that require the >>>definition of Thread. >> >> Right, seems like the forward declaration used to be provided by >> `memory/allocation.hpp`. Let's get rid of the include and use a fo

Re: RFR: 8304824: NMT should not use ThreadCritical [v9]

2024-11-03 Thread Johan Sjölen
On Fri, 1 Nov 2024 21:56:36 GMT, Markus Grönlund wrote: >This include is not needed because there are no uses that require the >definition of Thread. Right, seems like the forward declaration used to be provided by `memory/allocation.hpp`. Let's get rid of the include and use a forward declar

[OSGeo-Discuss] Fwd: Call for Participation: Geospatial devroom at FOSDEM 2025

2024-11-02 Thread Johan Van de Wauw via Discuss
-- Forwarded message - From: Edward Betts Date: Fri, Nov 1, 2024 at 12:19 PM Subject: Call for Participation: Geospatial devroom at FOSDEM 2025 To: , , < geospatial-devr...@lists.fosdem.org> After three years, the Geospatial devroom is back at FOSDEM. We need your expertise. Sub

[cctalk] Re: Ward Christensen NY Times Obituary

2024-11-02 Thread Johan Helsingius via cctalk
On 11/2/24 01:15, Bill Degnan via cctalk wrote: For a few year VMS was the OS of the "internet". I remember wondering in 1991 or 1992 if UNIX would still be around by 2000 From what I can recall, there were a lot of VAXen on the net, but the vast majority was running BSD. Julf

[cctalk] Re: Ward Christensen NY Times Obituary

2024-11-01 Thread Johan Helsingius via cctalk
UNIX might have been unobtainium in your home, but a lot of BBS's used UUCP to get email and USENET connectivity, and a huge amount of students had modem access to an UNIX computer at their university. Julf On 10/24/24 04:36, Doug Jackson via cctalk wrote: Yes, UUCP was literally a thi

qrtr/mhi: NULL-deref with in-kernel pd-mapper

2024-11-01 Thread Johan Hovold
number of bugs elsewhere due to changes in timing, but I'm not sure if the pd-mapper is involved here or not. See serial console log below. Last time I think the machine survived so that I could save a cleaner log of the oops. That one is included after the serial log for completeness.

Re: [PATCH v2] drm/bridge: Fix assignment of the of_node of the parent to aux bridge

2024-11-01 Thread Johan Hovold
On Fri, Nov 01, 2024 at 11:49:07AM +0800, Sui Jingfeng wrote: > On 2024/11/1 00:23, Johan Hovold wrote: > > On Thu, Oct 31, 2024 at 11:06:38PM +0800, Sui Jingfeng wrote: > > > >> But I think Johan do need more times to understand what exactly > >> the rea

Re: [PATCH v2] drm/bridge: Fix assignment of the of_node of the parent to aux bridge

2024-10-31 Thread Johan Hovold
On Thu, Oct 31, 2024 at 11:06:38PM +0800, Sui Jingfeng wrote: > But I think Johan do need more times to understand what exactly > the real problem is. We do need times to investigate new method. No, I know perfectly well what the (immediate) problem is here (I was the one adding support f

Re: [PATCH v2] drm/bridge: Fix assignment of the of_node of the parent to aux bridge

2024-10-31 Thread Johan Hovold
On Thu, Oct 31, 2024 at 05:48:24PM +0200, Dmitry Baryshkov wrote: > On Mon, 21 Oct 2024 at 10:23, Johan Hovold wrote: > > > > On Fri, Oct 18, 2024 at 03:49:34PM +0300, Abel Vesa wrote: > > > The assignment of the of_node to the aux bridge needs to mark the > &g

Re: [PATCH v2] drm/bridge: Fix assignment of the of_node of the parent to aux bridge

2024-10-31 Thread Johan Hovold
On Thu, Oct 31, 2024 at 06:13:45PM +0200, Abel Vesa wrote: > On 24-10-31 15:05:52, Johan Hovold wrote: > > On Mon, Oct 21, 2024 at 09:23:24AM +0200, Johan Hovold wrote: > > > On Fri, Oct 18, 2024 at 03:49:34PM +0300, Abel Vesa wrote: > > > > Cc: sta...@vger.kernel.or

Re: [PATCH v2] drm/bridge: Fix assignment of the of_node of the parent to aux bridge

2024-10-31 Thread Johan Hovold
On Mon, Oct 21, 2024 at 09:23:24AM +0200, Johan Hovold wrote: > On Fri, Oct 18, 2024 at 03:49:34PM +0300, Abel Vesa wrote: > > The assignment of the of_node to the aux bridge needs to mark the > > of_node as reused as well, otherwise resource providers like pinctrl will >

Re: [PATCH v2] drm/bridge: Fix assignment of the of_node of the parent to aux bridge

2024-10-31 Thread Johan Hovold
I had better things to do so I let this one pass, but now it seems you insist that you did nothing wrong here. We do development in public and we should have had that discussion in public, if only so that no one thinks I'm ok with this. Johan

[Galette-users] Re: Saisie de don

2024-10-31 Thread Johan Cwiklinski
Salut, Le 31/10/2024 à 07:40, Johan Cwiklinski a écrit : > *Message :* Undefined array key 0 > > *Fichier :* /var/www/clients/client0/web3/web/lib/Galette/Controllers/ > Crud/ContributionsController.php Cette erreur se produit effectivement si aucun type don n'existe en b

Re: RFR: 8304824: NMT should not use ThreadCritical [v9]

2024-10-31 Thread Johan Sjölen
On Thu, 31 Oct 2024 10:53:12 GMT, Thomas Stuefe wrote: > I had to analyze this again, to understand why we need this locking, since my > mind slips. > > I updated my findings in https://bugs.openjdk.org/browse/JDK-8325890 . Please > see details there. > > But I don't think the current locking

[Galette-users] Re: Saisie de don

2024-10-30 Thread Johan Cwiklinski
fait possible d'utiliser une version git, mais ce type de problème ne sera pas corrigé. ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-le...@mailman3.com

[cooperation-wg] Re: Amended RIPE89 Cooperation WG session schedule

2024-10-30 Thread Johan Helsingius via cooperation-wg
Clicked "send" a bit too soon Correct version: Cooperation WG session at RIPE89, 14:00-15:30 on Thursday, 31 October 14:00-14:10 Administrivia 14:10-14:50 Panel: WSIS +20 Review and GDC Callum Voge, Internet Society Tala Debs, WSIS&SDG Project Coordinator ITU (remote) Mar

[cooperation-wg] Amended RIPE89 Cooperation WG session schedule

2024-10-30 Thread Johan Helsingius via cooperation-wg
Current version of the Cooperation WG session at RIPE89 (14:00-15:30 on Thursday, 31 october) 14:00-14:10 Administrivia 14:10-14:50 Panel: WSIS +20 Review and GDC Callum Voge, Internet Society Tala Debs, WSIS&SDG Project Coordinator ITU (remote) Marlene Straub, Ger

Re: RFR: 8304824: NMT should not use ThreadCritical [v3]

2024-10-30 Thread Johan Sjölen
On Wed, 30 Oct 2024 13:39:00 GMT, Robert Toyonaga wrote: >I'm not certain, but looking at it again, it seems that the ThreadCritical >uses in ChunkPool::deallocate_chunk and ChunkPool::prune() are only needed for >NMT and are independent of the other ThreadCritical uses in that code. At least

[Openvpn-devel] IRC community meeting summary

2024-10-30 Thread Johan Draaisma via Openvpn-devel
but not yet sent in - plaisthos indicates he wants to test and implement it with openvpn3 before submitting it to openvpn2./ As always you're welcome to join at #openvpn-meeting on Libera IRC network every Wednesday at 14:00 Central European Time. Kind regards

Re: RFR: 8304824: NMT should not use ThreadCritical [v3]

2024-10-30 Thread Johan Sjölen
On Wed, 18 Sep 2024 05:53:05 GMT, Thomas Stuefe wrote: >> Hi @roberttoyonaga >> >> (Pinging @afshin-zafari and @jdksjolen) >> >> First off, it is good that you ran into this since it highlights a possible >> real deadlock. Both locks are quite coarse. I cannot think from the top of >> my hea

Re: Improving startup time

2024-10-29 Thread Johan Stuyts
This might happen due to long SecureRandom initialization You can speed-up start by using 'urandom' But this one is less secure This is a myth. Only in a few very specific cases is 'random' needed: https://www.thomas-huehn.com/myths-about-urandom/ -- Best re

[jfx21u] RFR: 8331616: ChangeListener is not triggered when the InvalidationListener is removed

2024-10-29 Thread Johan Vos
8331616: ChangeListener is not triggered when the InvalidationListener is removed - Commit messages: - Backport 35880cec5a998598c64eecbc7b3ae56b6ee3a6d8 Changes: https://git.openjdk.org/jfx21u/pull/74/files Webrev: https://webrevs.openjdk.org/?repo=jfx21u&pr=74&range=00 Issue:

Re: RFR: 8301121: RichTextArea Control (Incubator) [v29]

2024-10-29 Thread Johan Vos
On Mon, 28 Oct 2024 23:01:39 GMT, Andy Goryachev wrote: >> Incubating a new feature - rich text control, **RichTextArea**, intended to >> bridge the functional gap with Swing and its StyledEditorKit/JEditorPane. >> The main design goal is to provide a control that is complete enough to be >> u

[Wikimedia-l] Re: Romania Wikipedia reached 500.000 articles

2024-10-28 Thread Johan Jönsson
Congratulations to Romanian Wikipedia! Thanks for all the hard work, everyone. Best, //Johan Jönsson -- Den mån 28 okt. 2024 kl 10:02 skrev Strainu : > Hello everyone, > > The Romanian Wikipedia Community is happy to announce we have reached half > a million articles! The 500.000t

[jfx21u] Integrated: 8343136: Change JavaFX release version to 21.0.6 in jfx21u

2024-10-28 Thread Johan Vos
On Mon, 28 Oct 2024 07:47:21 GMT, Johan Vos wrote: > Bump the release version in .jcheck/conf and build.properties to 21.0.6 This pull request has now been integrated. Changeset: 9e3dfb33 Author: Johan Vos URL: https://git.openjdk.org/jfx21u/com

[jfx17u] Integrated: 8343135: Change JavaFX release version to 17.0.14 in jfx17u

2024-10-28 Thread Johan Vos
On Mon, 28 Oct 2024 07:50:32 GMT, Johan Vos wrote: > Bump release version to 17.0.14 This pull request has now been integrated. Changeset: 9fecccf8 Author: Johan Vos URL: https://git.openjdk.org/jfx17u/commit/9fecccf8cf7bdb8e5aca5c82fd4a4b4b67a509e4 Stats: 2 lines in 2 fi

Re: RFR: 8341090: Remove support for security manager from JavaFX [v4]

2024-10-28 Thread Johan Vos
On Wed, 23 Oct 2024 19:36:53 GMT, Kevin Rushforth wrote: >> This PR removes support for running JavaFX applications with the Java >> Security Manager. >> >> The initial work was done in 4 separate commits as follows: >> >> * Fail fast at startup if the Security Manager is enabled >> * Remove `

Bug#1086175:

2024-10-28 Thread Johan Kröckel
btrfs scrubs and raid checks run fine without errors, btw.

Bug#1086175:

2024-10-28 Thread Johan Kröckel
btrfs scrubs and raid checks run fine without errors, btw.

Bug#1086175: linux-image-6.1.0-26-amd64: panic at shutdown with rootfs on RAID1 while initialy resyncing

2024-10-28 Thread Johan Kröckel
Package: src:linux Version: 6.1.112-1 Severity: important X-Debbugs-Cc: johan.kroec...@gmail.com Dear Maintainer, Steps I did to reproduce the bug: - install Debian on two RAID1 volumes, one for /boot and one LUKS encrypted for the root filesystem - reboot system before the initial resync of the

Bug#1086175: linux-image-6.1.0-26-amd64: panic at shutdown with rootfs on RAID1 while initialy resyncing

2024-10-28 Thread Johan Kröckel
Package: src:linux Version: 6.1.112-1 Severity: important X-Debbugs-Cc: johan.kroec...@gmail.com Dear Maintainer, Steps I did to reproduce the bug: - install Debian on two RAID1 volumes, one for /boot and one LUKS encrypted for the root filesystem - reboot system before the initial resync of the

[jfx17u] RFR: 8343135: Change JavaFX release version to 17.0.14 in jfx17u

2024-10-28 Thread Johan Vos
Bump release version to 17.0.14 - Commit messages: - Bump release version to 17.0.14 Changes: https://git.openjdk.org/jfx17u/pull/208/files Webrev: https://webrevs.openjdk.org/?repo=jfx17u&pr=208&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8343135 Stats: 2 lines in 2 f

[jfx21u] RFR: 8343136: Change JavaFX release version to 21.0.6 in jfx21u

2024-10-28 Thread Johan Vos
Bump the release version in .jcheck/conf and build.properties to 21.0.6 - Commit messages: - 8343136: increase release version to 21.0.6 Changes: https://git.openjdk.org/jfx21u/pull/73/files Webrev: https://webrevs.openjdk.org/?repo=jfx21u&pr=73&range=00 Issue: https://bugs.open

Re: RFR: 8331616: ChangeListener is not triggered when the InvalidationListener is removed

2024-10-28 Thread Johan Vos
On Fri, 3 May 2024 14:45:24 GMT, John Hendrikx wrote: > This PR provides a fix for the linked issue. > > The issue was that when an invalidation listener is removed, and the > `ExpressionHelper` type changes from `Generic` to `SingleChange` that it > would copy the current value of the `Generi

Re: RFR: JDK-8199216: Quadratic layout time with nested nodes and pseudo-class in style sheet [v10]

2024-10-27 Thread Johan Vos
d are needed in LTS releases. The purpose of LTS releases is to provide stability over a long time. Even though some fixed issues provide a better performance/UX, it is often not desired to backport those to LTS releases, as it may change the behavior. The fix you're talking about here is a grea

Re: [basex-talk] Unable to paste into external variable dialogue box in the GUI-Basex 11.4

2024-10-24 Thread Johan Mörén
Hi Paste works for me. On MacOS 15.0.1 and BaseX 11.4. Java is temurin-23.jdk /Johan On Thu, 24 Oct 2024 at 23:22, Martin Honnen wrote: > > On 24/10/2024 23:09, br...@kennison.name wrote: > >> Pasting into the external variable value field works fine for me with > >>

[atlas] Re: Recycling software

2024-10-24 Thread Johan ter Beest
s, we will adjust the text for the software probes but I really hope that none of you will get this email anymore because it means you (still) have an abandoned, not written off probe and that makes no one particularly happy ;) Cheers, Johan On Thu, 24 Oct 2024 at 12:12, Ernst J. Oud wrote:

Re: [PATCH v2 2/2] soc: qcom: pmic_glink: Handle GLINK intent allocation rejections

2024-10-23 Thread Johan Hovold
t; will fail. > Retry the send until intent buffers becomes available, or an actual > error occur. > Reported-by: Johan Hovold > Closes: https://lore.kernel.org/all/zqet8iinndhnx...@hovoldconsulting.com/#t > Cc: sta...@vger.kernel.org # rpmsg: glink: Handle rejected intent request >

[Openvpn-devel] IRC community meeting summary

2024-10-23 Thread Johan Draaisma via Openvpn-devel
27;re welcome to join at #openvpn-meeting on Libera IRC network every Wednesday at 14:00 Central European Time. Kind regards, Johan Draaisma ___ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openvpn-devel

Re: RFR: 8339480: Build static-jdk image with a statically linked launcher [v7]

2024-10-23 Thread Johan Vos
On Tue, 15 Oct 2024 20:22:52 GMT, Magnus Ihse Bursie wrote: >> As a prerequisite for Hermetic Java, we need a statically linked `java` >> launcher. It should behave like the normal, dynamically linked `java` >> launcher, except that all JDK native libraries should be statically, not >> dynamic

Re: RFR: 8339480: Build static-jdk image with a statically linked launcher [v7]

2024-10-23 Thread Johan Vos
On Tue, 15 Oct 2024 20:22:52 GMT, Magnus Ihse Bursie wrote: >> As a prerequisite for Hermetic Java, we need a statically linked `java` >> launcher. It should behave like the normal, dynamically linked `java` >> launcher, except that all JDK native libraries should be statically, not >> dynamic

Re: RFR: 8339480: Build static-jdk image with a statically linked launcher [v7]

2024-10-23 Thread Johan Vos
On Tue, 15 Oct 2024 20:22:52 GMT, Magnus Ihse Bursie wrote: >> As a prerequisite for Hermetic Java, we need a statically linked `java` >> launcher. It should behave like the normal, dynamically linked `java` >> launcher, except that all JDK native libraries should be statically, not >> dynamic

[KScreen] [Bug 495223] New: Monitor descriptions not updated if monitor switched while suspended

2024-10-23 Thread Karl-Johan Karlsson
https://bugs.kde.org/show_bug.cgi?id=495223 Bug ID: 495223 Summary: Monitor descriptions not updated if monitor switched while suspended Classification: Plasma Product: KScreen Version: 6.2.1 Platform: Fedora RPMs

Re: [PATCH 1/3] rockchip: block: simplify rkmtd driver

2024-10-22 Thread Johan Jonker
On 10/21/24 15:35, Heinrich Schuchardt wrote: > On 10/19/24 13:50, Simon Glass wrote: >> Hi Johan, >> >> On Fri, 18 Oct 2024 at 07:33, Johan Jonker wrote: >>> >>> >>> >>> On 10/18/24 03:30, Heinrich Schuchardt wrote: >>>> By

Re: [PATCH 1/2] rpmsg: glink: Handle rejected intent request better

2024-10-22 Thread Johan Hovold
uic_dee...@quicinc.com/ > > Fixes: c05dfce0b89e ("rpmsg: glink: Wait for intent, not just request ack") > Cc: sta...@vger.kernel.org > Signed-off-by: Bjorn Andersson Nit picks aside, this was all nice and clear. Tested-by: Johan Hovold

Re: [PATCH 2/2] soc: qcom: pmic_glink: Handle GLINK intent allocation rejections

2024-10-22 Thread Johan Hovold
-EAGAIN). > > Retry the send until intent buffers becomes available, or an actual > error occur. > > To avoid infinitely waiting for the firmware in the event that this > misbehaves and no intents arrive, an arbitrary 10 second timeout is > used. > > This patch was develope

[cooperation-wg] RIPE89 Cooperation WG session draft schedule

2024-10-21 Thread Johan Helsingius via cooperation-wg
Here is our current schedule for the Cooperation WG session at RIPE89 (14:00-15:30 on Thursday, 31 october) 14:00-14:10 Administrivia 14:10-14:55 Panel: WSIS +20 Review and GDC Callum Voge, Internet Society Tala Debs, WSIS&SDG Project Coordinator ITU (remote) Marle

Re: [PATCH v2] drm/bridge: Fix assignment of the of_node of the parent to aux bridge

2024-10-21 Thread Johan Hovold
; Cc: Dmitry Baryshkov > Signed-off-by: Abel Vesa > --- > Changes in v2: > - Re-worded commit to be more explicit of what it fixes, as Johan suggested > - Used device_set_of_node_from_dev() helper, as per Johan's suggestion > - Added Fixes tag and cc'ed stable > - L

[Galette-users] Galette 1.1.4

2024-10-20 Thread Johan Cwiklinski
eau plugin Activités ! \\o// Enjoy! -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-le...@mailman3.com

Re: RFR: 8339480: Build static-jdk image with a statically linked launcher [v7]

2024-10-18 Thread Johan Vos
On Tue, 15 Oct 2024 20:22:52 GMT, Magnus Ihse Bursie wrote: >> As a prerequisite for Hermetic Java, we need a statically linked `java` >> launcher. It should behave like the normal, dynamically linked `java` >> launcher, except that all JDK native libraries should be statically, not >> dynamic

Re: RFR: 8339480: Build static-jdk image with a statically linked launcher [v7]

2024-10-18 Thread Johan Vos
On Tue, 15 Oct 2024 20:22:52 GMT, Magnus Ihse Bursie wrote: >> As a prerequisite for Hermetic Java, we need a statically linked `java` >> launcher. It should behave like the normal, dynamically linked `java` >> launcher, except that all JDK native libraries should be statically, not >> dynamic

Re: RFR: 8339480: Build static-jdk image with a statically linked launcher [v7]

2024-10-18 Thread Johan Vos
On Tue, 15 Oct 2024 20:22:52 GMT, Magnus Ihse Bursie wrote: >> As a prerequisite for Hermetic Java, we need a statically linked `java` >> launcher. It should behave like the normal, dynamically linked `java` >> launcher, except that all JDK native libraries should be statically, not >> dynamic

Performance of 'svnlook changed' is O(revsize)

2024-10-18 Thread Johan Corveleyn
often used in hook scripts. In a pre-commit hook one would run 'svnlook changed -t $TXN' on the transaction if one would like to validate some things -- at that point 'svn log -v' cannot be used as an alternative because there is no revision yet. I would hope that any possible improvement would also apply to transactions as well as to revisions. -- Johan

Re: [PATCH 1/3] rockchip: block: simplify rkmtd driver

2024-10-18 Thread Johan Jonker
imon. https://source.denx.de/u-boot/u-boot/-/blob/master/test/dm/host.c?ref_type=heads#L71 This rkmtd driver makes use of devm_kzalloc(). All the memory that rkmtd reserves is freed. But if I remember well somehow I was not able to free all memory on unbind and was not able to find the source, so I did

[Galette-users] Re: Déclencheurs dans la base de données ?

2024-10-18 Thread Johan Cwiklinski
être assez complexes à gérer et difficile - voire impossible à tester). Si une automatisation devait être mise en place, ce serait de toutes façons côté code. ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-le...@mailman3.com

Re: RFR: 8341090: Remove support for security manager from JavaFX [v2]

2024-10-18 Thread Johan Vos
On Thu, 17 Oct 2024 21:47:00 GMT, Kevin Rushforth wrote: >> This PR removes support for running JavaFX applications with the Java >> Security Manager. >> >> The initial work was done in 4 separate commits as follows: >> >> * Fail fast at startup if the Security Manager is enabled >> * Remove `

[clang] [Sema] Fix warnings in SemaFunctionEffects.cpp (PR #112857)

2024-10-18 Thread Karl-Johan Karlsson via cfe-commits
arl-Johan Karlsson Date: Fri, 18 Oct 2024 10:39:09 +0200 Subject: [PATCH] [Sema] Fix warnings in SemaFunctionEffects.cpp Fix gcc warnings like: SemaFunctionEffects.cpp:1531:5: warning: this statement may fall through [-Wimplicit-fallthrough=] --- clang/lib/Sema/SemaFunctionEffects.cpp | 3 +++ 1 f

[Galette-users] Re: Déclencheurs dans la base de données ?

2024-10-18 Thread Johan Cwiklinski
ait empêcher la modification d'un champ sur lequel il repose (ça empêcherait la mise à jour). Je pense qu'il est plus probable que le trigger ne bloque rien, mais ne fonctionne plus ensuite (ou marche de travers). Par ailleurs, la défaillance d'un trigger

Re: RFR: 8306707: Support pluggable image loading via javax.imageio

2024-10-18 Thread Johan Vos
maintainers could leverage that module as well, and remove the internals from java.desktop, but that is not something we should discuss on this list. - Johan

Re: [PATCH] drm/bridge: Mark the of_node of the aux bridge device as reused

2024-10-17 Thread Johan Hovold
lease use the intended device_set_of_node_from_dev() helper for this. > ret = auxiliary_device_init(adev); > if (ret) { Johan

[Openvpn-devel] IRC community meeting summary

2024-10-16 Thread Johan Draaisma via Openvpn-devel
nesday at 14:00 Central European Time. Kind regards, Johan Draaisma ___ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openvpn-devel

[clang] [Sema] Fix warning in SemaOpenACC.cpp (PR #112481)

2024-10-16 Thread Karl-Johan Karlsson via cfe-commits
https://github.com/karka228 closed https://github.com/llvm/llvm-project/pull/112481 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Sema] Fix warning in SemaOpenACC.cpp (PR #112481)

2024-10-15 Thread Karl-Johan Karlsson via cfe-commits
arl-Johan Karlsson Date: Wed, 16 Oct 2024 07:48:11 +0200 Subject: [PATCH] [Sema] Fix warning in SemaOpenACC.cpp Fix gcc warning: clang/lib/Sema/SemaOpenACC.cpp:2208:5: warning: this statement may fall through [-Wimplicit-fallthrough=] --- clang/lib/Sema/SemaOpenACC.cpp | 2 +- 1 file changed

Re: [jfx23u] RFR: 8341911: Create release notes for JavaFX 23.0.1 [v4]

2024-10-15 Thread Johan Vos
On Tue, 15 Oct 2024 12:14:52 GMT, Kevin Rushforth wrote: >> Release notes for JavaFX 23.0.1. >> >> Notes to reviewers: >> >> I used the following filter to pick the issues: >> >> https://bugs.openjdk.org/issues/?filter=46412 >> >> The original filter, with the backport IDs, is here: >> >> ht

[jfx17u] Integrated: 8315870: icu fails to compile with Visual Studio 2022 17.6.5

2024-10-15 Thread Johan Vos
On Tue, 15 Oct 2024 07:37:34 GMT, Johan Vos wrote: > Hi all, > > This pull request contains a backport of commit ed921717 from the openjdk/jfx > repository. > > The commit being backported was authored by Kevin Rushforth on 8 Sep 2023 and > was reviewed by Ambaris

[jfx17u] Integrated: 8315870: icu fails to compile with Visual Studio 2022 17.6.5

2024-10-15 Thread Johan Vos
Hi all, This pull request contains a backport of commit ed921717 from the openjdk/jfx repository. The commit being backported was authored by Kevin Rushforth on 8 Sep 2023 and was reviewed by Ambarish Rapte and Johan Vos. Thanks! - Commit messages: - Backport

[clang] [clang][analyzer] PointerSubChecker should not warn on pointers converted to numerical type (PR #111846)

2024-10-11 Thread Karl-Johan Karlsson via cfe-commits
=?utf-8?q?Balázs_Kéri?= Message-ID: In-Reply-To: karka228 wrote: > The change LGTM, I think we can merge it. I guess the testcase pointer-sub.c have to be fixed to work on the windows buildbot, also. Right? https://github.com/llvm/llvm-project/pull/111846 __

Re: LDC cant find lld-link when crosscompiling

2024-10-09 Thread Johan via Digitalmars-d-learn
that LDC calls to invoke the linker (at the end of the output). Another idea it to use `--link-internally`, which uses the linker built into LDC (same linker as lld-link). -Johan

[Openvpn-devel] IRC community meeting summary

2024-10-09 Thread Johan Draaisma via Openvpn-devel
ou're welcome to join at #openvpn-meeting on Libera IRC network every Wednesday at 14:00 Central European Time. Kind regards, Johan Draaisma ___ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listin

  1   2   3   4   5   6   7   8   9   10   >