plperl version on the meson setup summary screen

2024-10-17 Thread Zharkov Roman
;api_versionstring" config variable. When the configure script parses the "perl -v" output: pgac_perl_version=`$PERL -v 2>/dev/null | sed -n 's/This is perl.*v[a-... Is this behavior correct? -- Roman Zharkovdiff --git a/meson.build b/meson.build index 58e67975e85..cde

RE: [PATCH 3/3] drm/amd/display: Add hpd_source index check for dcn401 link encoder setup

2024-10-17 Thread Li, Roman
[Public] The series Reviewed-by: Roman Li > -Original Message- > From: SHANMUGAM, SRINIVASAN > Sent: Thursday, October 17, 2024 2:56 AM > To: Siqueira, Rodrigo ; Pillai, Aurabindo > > Cc: amd-gfx@lists.freedesktop.org; SHANMUGAM, SRINIVASAN > ; Chung, ChiaHsua

Re: Roman Danyliw's Discuss on draft-ietf-bfd-unaffiliated-echo-12: (with DISCUSS and COMMENT)

2024-10-17 Thread Roman Danyliw
nline ... From: Jeffrey Haas Sent: Wednesday, October 16, 2024 10:24 AM To: Roman Danyliw Cc: The IESG; draft-ietf-bfd-unaffiliated-e...@ietf.org; bfd-cha...@ietf.org; rtg-bfd@ietf.org Subject: Re: Roman Danyliw's Discuss on draft-ietf-bfd-unaffiliated-echo-12: (with DISCUSS a

[PATCH v5 6/8] chardev/char-mux: implement backend chardev multiplexing

2024-10-17 Thread Roman Penyaev
` is a socket backend which provides biderectional communication to the virtio hvc console. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/char-fe.c | 9 ++ chardev/char-mux-be.c | 290

[PATCH v5 3/8] chardev/char: move away mux suspend/resume calls

2024-10-17 Thread Roman Penyaev
/mux_suspend_open/g s/resume_mux_open/mux_resume_open/g No functional changes are made. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/char-mux-fe.c | 63 ++--- chardev/char.c

[PATCH v5 7/8] tests/unit/test-char: add unit test for the `mux-be` multiplexer

2024-10-17 Thread Roman Penyaev
The test is trivial: several backends, 1 `mux-be`, 1 frontend do the buffer write and read. Pipe is used for EAGAIN verification. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- tests/unit/test-char.c | 323 +++

[PATCH v5 5/8] chardev/char: introduce `mux-be-id=ID` option

2024-10-17 Thread Roman Penyaev
Patch introduces `mux-be-id=ID` option for all chardev devices. This is necessary to attach chardev to `mux-be` for backend multiplexing. Actual implementation wimplementation will follow. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/

[PATCH v5 0/8] chardev: implement backend chardev multiplexing

2024-10-17 Thread Roman Penyaev
e * Proper json support of the `mux-be-id` option * Unit test for the `mux-be` multiplexer [1] https://www.qemu.org/docs/master/system/qemu-manpage.html#hxtool-6 [2] https://github.com/lf-edge/eve Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org R

[PATCH v5 2/8] chardev/char: rename `char-mux.c` to `char-mux-fe.c`

2024-10-17 Thread Roman Penyaev
In the following patches backend multiplexer will be introduced and the implementation will be named as follows: `char-mux-be.c`. This patch renames the frontend multiplexer from `char-mux.c` to `char-mux-fe.c`. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@

[PATCH v5 4/8] chardev/char: rename frontend mux calls

2024-10-17 Thread Roman Penyaev
This patch renames calls in the frontend mux implementation to reflect its frontend nature. Patch does the following: s/mux_chr/mux_fe_chr/g No functional changes are made. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/char-fe.c

[PATCH v5 8/8] qemu-options.hx: describe multiplexing of several backend devices

2024-10-17 Thread Roman Penyaev
This adds a few lines describing `mux-be` multiplexer configuration for multiplexing several backend devices with a single frontend device. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- qemu-optio

[PATCH v5 1/8] chardev/char: rename `MuxChardev` struct to `MuxFeChardev`

2024-10-17 Thread Roman Penyaev
/CHARDEV_IS_MUX_FE/g s/MUX_CHARDEV/MUX_FE_CHARDEV/g s/TYPE_CHARDEV_MUX/TYPE_CHARDEV_MUX_FE/g No json or string types are changed for the sake of compatibility. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/char-fe.c | 10 +- chardev/

[jira] [Updated] (IGNITE-23484) Do not use ByteUtils#toBytes in zones management

2024-10-17 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23484?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-23484: --- Description: Currently, Java Serialization is used to persist data in

[jira] [Created] (IGNITE-23484) Do not use ByteUtils#toBytes in zones management

2024-10-17 Thread Roman Puchkovskiy (Jira)
Roman Puchkovskiy created IGNITE-23484: -- Summary: Do not use ByteUtils#toBytes in zones management Key: IGNITE-23484 URL: https://issues.apache.org/jira/browse/IGNITE-23484 Project: Ignite

Re: [PATCH v4 7/8] tests/unit/test-char: add unit test for the `mux-be` multiplexer

2024-10-17 Thread Roman Penyaev
Hi Marc-André, On Wed, Oct 16, 2024 at 1:36 PM Marc-André Lureau wrote: > > Hi > > On Wed, Oct 16, 2024 at 2:28 PM Roman Penyaev wrote: > > > > The test is trivial: several backends, 1 `mux-be`, 1 frontend > > do the buffer write and read. Pipe is used for EAGAI

[jira] [Created] (IGNITE-23476) Do not use ByteUtils#toBytes to persist TxMeta

2024-10-17 Thread Roman Puchkovskiy (Jira)
Roman Puchkovskiy created IGNITE-23476: -- Summary: Do not use ByteUtils#toBytes to persist TxMeta Key: IGNITE-23476 URL: https://issues.apache.org/jira/browse/IGNITE-23476 Project: Ignite

[jira] [Created] (IGNITE-23473) Do not use ByteUtils#toBytes to persist IndexMeta

2024-10-17 Thread Roman Puchkovskiy (Jira)
Roman Puchkovskiy created IGNITE-23473: -- Summary: Do not use ByteUtils#toBytes to persist IndexMeta Key: IGNITE-23473 URL: https://issues.apache.org/jira/browse/IGNITE-23473 Project: Ignite

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v46]

2024-10-17 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v46]

2024-10-17 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

[jira] [Created] (IGNITE-23470) Do not use ByteUtils#toBytes to persist disaster recovery requests

2024-10-17 Thread Roman Puchkovskiy (Jira)
Roman Puchkovskiy created IGNITE-23470: -- Summary: Do not use ByteUtils#toBytes to persist disaster recovery requests Key: IGNITE-23470 URL: https://issues.apache.org/jira/browse/IGNITE-23470

[jira] [Updated] (IGNITE-23470) Do not use ByteUtils#toBytes to persist disaster recovery requests

2024-10-17 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23470?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-23470: --- Description: Currently, Java Serialization is used to persist those objects. We

[jira] [Updated] (IGNITE-23469) Do not use ByteUtils#toBytes to persist system disaster recovery messages

2024-10-17 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23469?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-23469: --- Description: Currently, Java Serialization is used to persist those objects. We

[jira] [Updated] (IGNITE-23469) Do not use ByteUtils#toBytes to persist system disaster recovery messages

2024-10-17 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23469?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-23469: --- Reviewer: (was: Kirill Tkalenko) > Do not use ByteUtils#toBytes to pers

[jira] [Created] (IGNITE-23469) Do not use ByteUtils#toBytes to persist system disaster recovery messages

2024-10-17 Thread Roman Puchkovskiy (Jira)
Roman Puchkovskiy created IGNITE-23469: -- Summary: Do not use ByteUtils#toBytes to persist system disaster recovery messages Key: IGNITE-23469 URL: https://issues.apache.org/jira/browse/IGNITE-23469

[jira] [Commented] (IGNITE-23461) Remove NaiveVarInts

2024-10-16 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23461?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17890343#comment-17890343 ] Roman Puchkovskiy commented on IGNITE-23461: Thanks! >

[jira] [Updated] (IGNITE-23461) Remove NaiveVarInts

2024-10-16 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23461?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-23461: --- Description: VarIntUtils should be used instead as NaiveVarInts only give a tiny

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v45]

2024-10-16 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v45]

2024-10-16 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

RE: [PATCH] drm/amd/display: Ensure HPD source index is valid for dcn20/dcn201 link encoders

2024-10-16 Thread Li, Roman
[Public] Reviewed-by: Roman Li > -Original Message- > From: SHANMUGAM, SRINIVASAN > Sent: Wednesday, October 16, 2024 9:19 AM > To: Siqueira, Rodrigo ; Pillai, Aurabindo > > Cc: amd-gfx@lists.freedesktop.org; SHANMUGAM, SRINIVASAN > ; Chung, ChiaHsuan (Tom) >

[gentoo-commits] repo/proj/guru:master commit in: games-fps/quakespasm/, games-fps/quakespasm/files/

2024-10-16 Thread David Roman
commit: f6a75a2ad081130e857ddd4f4d1e6f462a9231ec Author: Takuya Wakazono gmail com> AuthorDate: Wed Oct 16 14:06:16 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 14:06:16 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f6

[gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/

2024-10-16 Thread David Roman
commit: a2ff523eb6ae113bce32f5d4a2773018f008901d Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Oct 16 11:19:49 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 11:19:49 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/comm

[gentoo-commits] repo/proj/guru:master commit in: dev-libs/feedbackd/

2024-10-16 Thread David Roman
commit: aef7c5f4a8e08000c7e820d6dc783330ce114980 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Oct 16 12:11:40 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 12:11:40 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/comm

[gentoo-commits] repo/proj/guru:master commit in: dev-crystal/kemal/

2024-10-16 Thread David Roman
commit: 71d4a0e6004c5fbfc8827e8fef30780ac2815a50 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Oct 16 11:18:41 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 11:18:41 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/comm

[gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/freertos-gdb/

2024-10-16 Thread David Roman
commit: 6d5db2aebc931419d108c1d2900933292587fca3 Author: David Roman gmail com> AuthorDate: Wed Oct 16 15:11:11 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 15:11:11 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6d5db2a

[gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/esp-idf-size/

2024-10-16 Thread David Roman
commit: ed1279274af70e74a7b9eb0dea26c64c72896278 Author: David Roman gmail com> AuthorDate: Wed Oct 16 15:08:23 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 15:09:00 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed12792

[gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/esp-idf-size/

2024-10-16 Thread David Roman
commit: 02f48e0457198e62c08f8f9f6bd1af9bd9b07dd9 Author: David Roman gmail com> AuthorDate: Wed Oct 16 15:08:51 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 15:09:00 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=02f48e0

Re: [PATCH v4 6/8] chardev/char-mux: implement backend chardev multiplexing

2024-10-16 Thread Roman Penyaev
Hi, On Wed, Oct 16, 2024 at 1:14 PM Marc-André Lureau wrote: > > Hi > > On Wed, Oct 16, 2024 at 2:29 PM Roman Penyaev wrote: >> >> This patch implements multiplexing capability of several backend >> devices, which opens up an opportunity to use a single frontend

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v43]

2024-10-16 Thread Roman Kennke
On Wed, 16 Oct 2024 12:13:32 GMT, Coleen Phillimore wrote: > We're seeing failures in our nightly testing for tests > runtime/cds/appcds/SharedBaseAddress.java and > runtime/cds/SharedBaseAddress.java which I'm tracking in this bug > [JDK-8340212](https://bugs.openjdk.org/browse/JDK-8340212) >

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v44]

2024-10-16 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v44]

2024-10-16 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v43]

2024-10-16 Thread Roman Kennke
On Wed, 16 Oct 2024 12:13:32 GMT, Coleen Phillimore wrote: > We're seeing failures in our nightly testing for tests > runtime/cds/appcds/SharedBaseAddress.java and > runtime/cds/SharedBaseAddress.java which I'm tracking in this bug > [JDK-8340212](https://bugs.openjdk.org/browse/JDK-8340212) >

Roman Danyliw's Discuss on draft-ietf-bfd-unaffiliated-echo-12: (with DISCUSS and COMMENT)

2024-10-16 Thread Roman Danyliw via Datatracker
Roman Danyliw has entered the following ballot position for draft-ietf-bfd-unaffiliated-echo-12: Discuss When responding, please keep the subject line intact and reply to all email addresses included in the To and CC lines. (Feel free to cut this introductory paragraph, however.) Please refer

[jira] [Updated] (IGNITE-23462) Also listen for node join when waiting for nodes doing MG repair

2024-10-16 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-23462: --- Description: How node join works: # Node asks for a join, gets validated, and if

[jira] [Updated] (IGNITE-23462) Also listen for node join when waiting for nodes doing MG repair

2024-10-16 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-23462: --- Ignite Flags: (was: Docs Required,Release Notes Required) > Also listen for n

[jira] [Updated] (IGNITE-23462) Also listen for node join when waiting for nodes doing MG repair

2024-10-16 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-23462: --- Summary: Also listen for node join when waiting for nodes doing MG repair (was

[jira] [Assigned] (IGNITE-23462) Improve logging of Metastorage repair

2024-10-16 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy reassigned IGNITE-23462: -- Assignee: Roman Puchkovskiy > Improve logging of Metastorage rep

[jira] [Created] (IGNITE-23462) Improve logging of Metastorage repair

2024-10-16 Thread Roman Puchkovskiy (Jira)
Roman Puchkovskiy created IGNITE-23462: -- Summary: Improve logging of Metastorage repair Key: IGNITE-23462 URL: https://issues.apache.org/jira/browse/IGNITE-23462 Project: Ignite Issue

[PATCH v4 6/8] chardev/char-mux: implement backend chardev multiplexing

2024-10-16 Thread Roman Penyaev
` is a socket backend which provides biderectional communication to the virtio hvc console. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/char-fe.c | 9 ++ chardev/char-mux-be.c | 290

[PATCH v4 3/8] chardev/char: move away mux suspend/resume calls

2024-10-16 Thread Roman Penyaev
/mux_suspend_open/g s/resume_mux_open/mux_resume_open/g No functional changes are made. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/char-mux-fe.c | 63 ++--- chardev/char.c

[PATCH v4 4/8] chardev/char: rename frontend mux calls

2024-10-16 Thread Roman Penyaev
This patch renames calls in the frontend mux implementation to reflect its frontend nature. Patch does the following: s/mux_chr/mux_fe_chr/g No functional changes are made. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/char-fe.c

[PATCH v4 8/8] qemu-options.hx: describe multiplexing of several backend devices

2024-10-16 Thread Roman Penyaev
This adds a few lines describing `mux-be` multiplexer configuration for multiplexing several backend devices with a single frontend device. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- qemu-optio

[PATCH v4 2/8] chardev/char: rename `char-mux.c` to `char-mux-fe.c`

2024-10-16 Thread Roman Penyaev
In the following patches backend multiplexer will be introduced and the implementation will be named as follows: `char-mux-be.c`. This patch renames the frontend multiplexer from `char-mux.c` to `char-mux-fe.c`. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@

[PATCH v4 5/8] chardev/char: introduce `mux-be-id=ID` option

2024-10-16 Thread Roman Penyaev
Patch introduces `mux-be-id=ID` option for all chardev devices. This is necessary to attach chardev to `mux-be` for backend multiplexing. Actual implementation wimplementation will follow. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/

[PATCH v4 1/8] chardev/char: rename `MuxChardev` struct to `MuxFeChardev`

2024-10-16 Thread Roman Penyaev
/CHARDEV_IS_MUX_FE/g s/MUX_CHARDEV/MUX_FE_CHARDEV/g s/TYPE_CHARDEV_MUX/TYPE_CHARDEV_MUX_FE/g No json or string types are changed for the sake of compatibility. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- chardev/char-fe.c | 10 +- chardev/

[PATCH v4 7/8] tests/unit/test-char: add unit test for the `mux-be` multiplexer

2024-10-16 Thread Roman Penyaev
The test is trivial: several backends, 1 `mux-be`, 1 frontend do the buffer write and read. Pipe is used for EAGAIN verification. Signed-off-by: Roman Penyaev Cc: "Marc-André Lureau" Cc: qemu-devel@nongnu.org --- tests/unit/test-char.c | 306 +++

[PATCH v4 0/8] chardev: implement backend chardev multiplexing

2024-10-16 Thread Roman Penyaev
mux-be` multiplexer [1] https://www.qemu.org/docs/master/system/qemu-manpage.html#hxtool-6 [2] https://github.com/lf-edge/eve Roman Penyaev (8): chardev/char: rename `MuxChardev` struct to `MuxFeChardev` chardev/char: rename `char-mux.c` to `char-mux-fe.c` chardev/char: move away mux suspend/resum

[jira] [Updated] (IGNITE-23461) Remove NaiveVarInts

2024-10-16 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23461?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-23461: --- Description: VarIntUtils should be used instead as NaiveVarInts only give a tiny

[jira] [Created] (IGNITE-23461) Remove NaiveVarInts

2024-10-16 Thread Roman Puchkovskiy (Jira)
Roman Puchkovskiy created IGNITE-23461: -- Summary: Remove NaiveVarInts Key: IGNITE-23461 URL: https://issues.apache.org/jira/browse/IGNITE-23461 Project: Ignite Issue Type: Improvement

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v43]

2024-10-16 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v43]

2024-10-16 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v42]

2024-10-16 Thread Roman Kennke
On Tue, 15 Oct 2024 22:31:27 GMT, Volodymyr Paprotski wrote: >> Roman Kennke has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Fix aarch64.ad > > src/hotspot/cpu/x86/c2_stubGenerator_x86_64_string.cpp l

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v42]

2024-10-16 Thread Roman Kennke
On Tue, 15 Oct 2024 22:31:27 GMT, Volodymyr Paprotski wrote: >> Roman Kennke has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Fix aarch64.ad > > src/hotspot/cpu/x86/c2_stubGenerator_x86_64_string.cpp l

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v42]

2024-10-16 Thread Roman Kennke
On Tue, 15 Oct 2024 22:09:54 GMT, Volodymyr Paprotski wrote: >> Roman Kennke has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Fix aarch64.ad > > src/hotspot/cpu/x86/c2_stubGenerator_x86_64_string.cpp

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v42]

2024-10-16 Thread Roman Kennke
On Tue, 15 Oct 2024 22:09:54 GMT, Volodymyr Paprotski wrote: >> Roman Kennke has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Fix aarch64.ad > > src/hotspot/cpu/x86/c2_stubGenerator_x86_64_string.cpp

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v42]

2024-10-16 Thread Roman Kennke
On Tue, 15 Oct 2024 21:30:13 GMT, Volodymyr Paprotski wrote: >> Roman Kennke has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Fix aarch64.ad > > src/hotspot/cpu/x86/c2_stubGenerator_x86_64_string.cpp li

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v42]

2024-10-16 Thread Roman Kennke
On Tue, 15 Oct 2024 21:30:13 GMT, Volodymyr Paprotski wrote: >> Roman Kennke has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Fix aarch64.ad > > src/hotspot/cpu/x86/c2_stubGenerator_x86_64_string.cpp li

[gentoo-commits] repo/proj/guru:master commit in: www-client/zen-bin/

2024-10-16 Thread David Roman
commit: c0c3b1c94189a2912e1a18c386d9a1b1ed826608 Author: Michal Vu tuta io> AuthorDate: Wed Oct 16 08:33:10 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 08:33:10 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0c3b1c9 www-

[gentoo-commits] repo/proj/guru:master commit in: app-misc/cliphist/

2024-10-16 Thread David Roman
commit: 0a4177086fa4caff2bc89a44ecf646f3f769803b Author: Henri Gasc eurecom fr> AuthorDate: Wed Oct 16 08:41:28 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 08:41:45 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0a41770

[gentoo-commits] repo/proj/guru:master commit in: www-client/zen-bin/

2024-10-16 Thread David Roman
commit: 71cf67454c7699064df54ce378c2cccb00587824 Author: Michal Vu tuta io> AuthorDate: Wed Oct 16 08:15:20 2024 + Commit: David Roman gmail com> CommitDate: Wed Oct 16 08:19:39 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=71cf6745 www-

[jira] [Commented] (IGNITE-23453) ItNodeTest may fail with RocksDB is already closed.

2024-10-15 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-23453?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17889959#comment-17889959 ] Roman Puchkovskiy commented on IGNITE-23453: The patch looks good t

[gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/

2024-10-15 Thread David Roman
commit: ee2f691f7943df6d1a831257cb7924a8b07ed5d9 Author: Sebastian Engel gmx de> AuthorDate: Tue Oct 15 16:51:41 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 20:46:28 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ee2f691f

[gentoo-commits] repo/proj/guru:master commit in: net-misc/jool-modules/

2024-10-15 Thread David Roman
commit: 7babe410e79e4b89f6dcd5cf701a24f6e8595d27 Author: Nicolas PARLANT parhuet fr> AuthorDate: Tue Oct 15 20:06:11 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 20:06:11 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7b

[gentoo-commits] repo/proj/guru:master commit in: dev-libs/libthai/files/, dev-libs/libthai/

2024-10-15 Thread David Roman
commit: cb5678449af4e1c66a4780644221bbaace898c61 Author: Takuya Wakazono gmail com> AuthorDate: Tue Oct 15 14:52:49 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 14:52:49 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cb56784

[gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/

2024-10-15 Thread David Roman
commit: cf6f23d55971f0b5800428926a637b7cf76576ef Author: Sebastian Engel gmx de> AuthorDate: Tue Oct 15 20:30:12 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 20:46:28 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf6f23d5

[gentoo-commits] repo/proj/guru:master commit in: media-sound/fooyin/

2024-10-15 Thread David Roman
commit: 58b414113caf2270e6c97da693cf72e9cd08b938 Author: Sebastian Engel gmx de> AuthorDate: Tue Oct 15 16:50:27 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 20:46:22 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=58b41411

[gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-panel/

2024-10-15 Thread David Roman
commit: 6d24413e47fa6813ba06d49832bca089bdd7e806 Author: Pascal Jäger leimstift de> AuthorDate: Tue Oct 15 12:08:42 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 12:09:22 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6d24413

[gentoo-commits] repo/proj/guru:master commit in: net-misc/fileshelter/files/, net-misc/fileshelter/

2024-10-15 Thread David Roman
commit: f4e59e15df2f39abdc93df1f454cc40e89298c60 Author: Nicolas PARLANT parhuet fr> AuthorDate: Tue Oct 15 20:44:56 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 20:50:13 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f4

[gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-panel/

2024-10-15 Thread David Roman
commit: f369f4d0fd1c998a4458e8d68a507983e8344cdd Author: Pascal Jäger leimstift de> AuthorDate: Tue Oct 15 12:03:21 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 12:09:21 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f369f4d

[gentoo-commits] repo/proj/guru:master commit in: dev-libs/libdatrie/

2024-10-15 Thread David Roman
commit: f869b70d0156091ce1358f3a0e4e20fedb0169e4 Author: Takuya Wakazono gmail com> AuthorDate: Tue Oct 15 14:52:49 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 14:52:49 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f869b70

[gentoo-commits] repo/proj/guru:master commit in: dev-libs/libthai/

2024-10-15 Thread David Roman
commit: 7593ae53f051d731a252b1e41b735327f3238012 Author: Takuya Wakazono gmail com> AuthorDate: Tue Oct 15 14:52:49 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 14:52:49 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7593ae5

[gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-panel/

2024-10-15 Thread David Roman
commit: 2f6caebe9b6be31e906b28faf845bcb7f41fd45c Author: Pascal Jäger leimstift de> AuthorDate: Tue Oct 15 12:07:18 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 12:09:22 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2f6caeb

[gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-panel/

2024-10-15 Thread David Roman
commit: ddf9defe10e8481093c58969db83fbe51b87af9f Author: Pascal Jäger leimstift de> AuthorDate: Tue Oct 15 12:06:59 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 12:09:22 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ddf9def

[gentoo-commits] repo/proj/guru:master commit in: dev-cpp/simdutf/

2024-10-15 Thread David Roman
commit: acc7ca2bcd43b000747278b868b25e051526fc84 Author: Steffen Winter proton me> AuthorDate: Tue Oct 15 10:40:01 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 10:40:01 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=acc7ca2

[gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-panel/

2024-10-15 Thread David Roman
commit: 44d7f47685f5f5fe47e80641a9a5773d4b388d2f Author: Pascal Jäger leimstift de> AuthorDate: Tue Oct 15 12:04:00 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 12:09:21 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=44d7f47

[gentoo-commits] repo/proj/guru:master commit in: media-libs/wivrn/

2024-10-15 Thread David Roman
commit: 153b8eba20c1894975bbcde1ecd9919820facc5b Author: Patrick Nicolas laposte net> AuthorDate: Mon Oct 14 21:22:42 2024 + Commit: David Roman gmail com> CommitDate: Mon Oct 14 21:22:42 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=15

[gentoo-commits] repo/proj/guru:master commit in: dev-cpp/simdutf/

2024-10-15 Thread David Roman
commit: e3c90b3cb0caa9f2f89df28179c131defc59d5c3 Author: Steffen Winter proton me> AuthorDate: Tue Oct 15 10:40:06 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 10:40:06 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e3c90b3

[gentoo-commits] repo/proj/guru:master commit in: media-libs/wivrn/

2024-10-15 Thread David Roman
commit: 78d010a80fedb4185a71b54a3cf58b46167f01b8 Author: Patrick Nicolas laposte net> AuthorDate: Mon Oct 14 21:42:44 2024 + Commit: David Roman gmail com> CommitDate: Mon Oct 14 21:42:44 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=78

[gentoo-commits] repo/proj/guru:master commit in: x11-misc/xob/, app-editors/neovim-qt/, dev-util/dockerfile-language-server/, ...

2024-10-15 Thread David Roman
commit: 21d21d68cdb4362e033fc63fd2b59a14be253d60 Author: tea cuddleslut fr> AuthorDate: Tue Aug 13 13:51:55 2024 + Commit: David Roman gmail com> CommitDate: Mon Oct 14 19:46:40 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=21d21d68 */*:

[gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fast_float/

2024-10-15 Thread David Roman
commit: 403bdf370a5ad0b2d2b470583e976898f71574d2 Author: Steffen Winter proton me> AuthorDate: Tue Oct 15 10:37:03 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 10:37:03 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=403bdf3

[gentoo-commits] repo/proj/guru:master commit in: dev-cpp/fast_float/

2024-10-15 Thread David Roman
commit: 5345318452cdbd0b3c4bb7d06ac8fe64c33ec13c Author: Steffen Winter proton me> AuthorDate: Tue Oct 15 10:37:15 2024 + Commit: David Roman gmail com> CommitDate: Tue Oct 15 10:37:15 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5345318

[gentoo-commits] repo/proj/guru:master commit in: dev-util/bash-language-server/

2024-10-15 Thread David Roman
commit: d825fa9221bbe2f77ccc654bad62241ad1d88c7c Author: tea cuddleslut fr> AuthorDate: Mon Oct 14 19:25:55 2024 + Commit: David Roman gmail com> CommitDate: Mon Oct 14 19:46:40 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d825fa92 de

Re: [PATCH v2 8/8] tests/unit/test-char: implement a few mux remove test cases

2024-10-15 Thread Roman Penyaev
uot;mux-label", &error); > > +g_assert_cmpstr(error_get_pretty(error), ==, "Chardev 'mux-label' > is busy"); > > However, error_free() is missing. > I'll touch on commit > > thanks > My bad, thanks for taking care of this. -- Roman

[jira] [Commented] (IGNITE-22896) REST API for initiating MG repair

2024-10-15 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-22896?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17889692#comment-17889692 ] Roman Puchkovskiy commented on IGNITE-22896: The patch looks good t

[jira] [Updated] (IGNITE-22896) REST API for initiating MG repair

2024-10-15 Thread Roman Puchkovskiy (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-22896?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roman Puchkovskiy updated IGNITE-22896: --- Description: /management/v1/recovery/cluster/reset should be extended with

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v42]

2024-10-15 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v42]

2024-10-15 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v41]

2024-10-15 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is ad

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v41]

2024-10-15 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is ad

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v40]

2024-10-15 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

Re: RFR: 8305895: Implement JEP 450: Compact Object Headers (Experimental) [v40]

2024-10-15 Thread Roman Kennke
ead of 12 or 16). > - Arrays will now store their length at offset 8. > - CDS can now write and read archives with the compressed header. However, > it is not possible to read an archive that has been written with an opposite > setting of UseCompactObjectHeaders. Some build machinery is

  1   2   3   4   5   6   7   8   9   10   >