Re: [PATCH v7 01/12] exec/memtxattr: add process identifier to the transaction attributes

2024-09-03 Thread Richard Henderson
On 9/3/24 13:16, Daniel Henrique Barboza wrote: From: Tomasz Jeznach Extend memory transaction attributes with process identifier to allow per-request address translation logic to use requester_id / process_id to identify memory mapping (e.g. enabling IOMMU w/ PASID translations). Signed-off-b

[webkit-changes] [WebKit/WebKit] b0f15e: [Writing Tools] Inline animation doesn’t look grea...

2024-09-03 Thread Richard Robinson
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: b0f15e3387325335db99c91364f034df46d86005 https://github.com/WebKit/WebKit/commit/b0f15e3387325335db99c91364f034df46d86005 Author: Richard Robinson Date: 2024-09-03 (Tue, 03 Sep 2024) Changed paths

Re: [PATCH] target/hppa: Fix random 32-bit linux-user crashes

2024-09-03 Thread Richard Henderson
form_gva_psw(target_ulong psw, uint64_t spc, target_ulong off) { #ifdef CONFIG_USER_ONLY -return off; +return off & gva_offset_mask(psw); #else return spc | (off & gva_offset_mask(psw)); #endif Reviewed-by: Richard Henderson r~

Re: Kafka related PRs looking for reviews

2024-09-03 Thread Richard Zowalla
Thanks, Rui Am 2. September 2024 21:55:36 MESZ schrieb Rui Abreu : >I will check them out as soon as possible. > >On Mon, Sep 2, 2024, 19:09 Richard Zowalla wrote: > >> Hi all, >> >> can we have some reviews for these Kafka related PRs: >> >> -

[PSES] definitions of safety-related words and phrases

2024-09-03 Thread Richard Nute
“…terminology like Basic Safeguard Parameters and Supplementary Safeguard Parameters used in Figure 45 do not seem to be defined anywhere.” I invite readers of this list to provide definitions of the words: basic: supplementary: safeguard: parameter: Once these are defined, provide

Re: [PATCH][testsuite]: remove -fwrapv from signbit-5.c

2024-09-03 Thread Richard Biener
> Am 03.09.2024 um 19:00 schrieb Tamar Christina : > > Hi All, > > The meaning of the testcase was changed by passing it -fwrapv. The reason for > the test failures on some platform was because the test was testing some > implementation defined behavior wrt INT_MIN in generic code. > > Inst

Re: [PATCH] target/hppa: Fix PSW V-bit packaging in cpu_hppa_get for hppa64

2024-09-03 Thread Richard Henderson
s correct, we should also update cpu.h: -target_long psw_v; /* in most significant bit */ +target_long psw_v; /* in bit 31 */ With that, Reviewed-by: Richard Henderson r~

Re: [PATCH] plugins: add two events for cpu_restore_state_from_tb() and cpu_io_recompile()

2024-09-03 Thread Richard Henderson
to_ptr bits but after whatever else it has done to execute the instruction. I don't think we could easily support inline ops at tb end though. Richard, What do you think? I think this will miss all exceptions raised in the middle of the block. I don't think it will be reliable at all. r~

Re: [PATCH] target/arm: Correct names of VFP VFNMA and VFNMS insns

2024-09-03 Thread Richard Henderson
hen reading the code. -- PMM Reviewed-by: Richard Henderson r~

[Qemu-commits] [qemu/qemu] fd1952: Update version for v9.1.0 release

2024-09-03 Thread Richard Henderson via Qemu-commits
Branch: refs/heads/master Home: https://github.com/qemu/qemu Commit: fd1952d814da738ed107e05583b3e02ac11e88ff https://github.com/qemu/qemu/commit/fd1952d814da738ed107e05583b3e02ac11e88ff Author: Richard Henderson Date: 2024-09-03 (Tue, 03 Sep 2024) Changed paths: M

Re: [PATCH v2 13/14] tcg/riscv: Implement vector roti/v/x shi ops

2024-09-03 Thread Richard Henderson
On 8/29/24 23:16, LIU Zhiwei wrote: @@ -2589,6 +2605,69 @@ void tcg_expand_vec_op(TCGOpcode opc, TCGType type, unsigned vece, } } break; +case INDEX_op_shli_vec: +if (a2 > 31) { +tcg_gen_shls_vec(vece, v0, v1, tcg_constant_i32(a2)); +

[gcc r15-3422] Dump whether a SLP node represents load/store-lanes

2024-09-03 Thread Richard Biener via Gcc-cvs
https://gcc.gnu.org/g:ef0c4482ca8069fa56e8d359dbdc6168be499f69 commit r15-3422-gef0c4482ca8069fa56e8d359dbdc6168be499f69 Author: Richard Biener Date: Tue Sep 3 15:05:43 2024 +0200 Dump whether a SLP node represents load/store-lanes This makes it easier to discover whether SLP

Re: [PATCH v2 14/14] tcg/riscv: Enable native vector support for TCG host

2024-09-03 Thread Richard Henderson
On 8/29/24 23:16, LIU Zhiwei wrote: From: TANG Tiancheng Signed-off-by: TANG Tiancheng Reviewed-by: Liu Zhiwei --- tcg/riscv/tcg-target.h | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) Reviewed-by: Richard Henderson r~

[gcc r15-3421] Fix missed peeling for gaps with SLP load-lanes

2024-09-03 Thread Richard Biener via Gcc-cvs
https://gcc.gnu.org/g:bd120de19c600d064b3b3b5abf8c36ffc0037c40 commit r15-3421-gbd120de19c600d064b3b3b5abf8c36ffc0037c40 Author: Richard Biener Date: Tue Sep 3 15:04:42 2024 +0200 Fix missed peeling for gaps with SLP load-lanes The following disables peeling for gap avoidance

Re: [PATCH v2 12/14] tcg/riscv: Implement vector shs/v ops

2024-09-03 Thread Richard Henderson
insertions(+), 2 deletions(-) Reviewed-by: Richard Henderson r~

Re: [PATCH v2 11/14] tcg/riscv: Implement vector min/max ops

2024-09-03 Thread Richard Henderson
On 8/29/24 23:16, LIU Zhiwei wrote: From: TANG Tiancheng Signed-off-by: TANG Tiancheng Reviewed-by: Liu Zhiwei --- tcg/riscv/tcg-target.c.inc | 29 + tcg/riscv/tcg-target.h | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) Reviewed-by: Richard

Re: [PATCH v2 10/14] tcg/riscv: Implement vector sat/mul ops

2024-09-03 Thread Richard Henderson
: Richard Henderson r~

Re: [PATCH v2 09/14] tcg/riscv: Implement vector neg ops

2024-09-03 Thread Richard Henderson
On 8/29/24 23:16, LIU Zhiwei wrote: From: TANG Tiancheng Signed-off-by: TANG Tiancheng Reviewed-by: Liu Zhiwei --- tcg/riscv/tcg-target.c.inc | 8 tcg/riscv/tcg-target.h | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) Reviewed-by: Richard Henderson r~

Re: [PATCH v2 08/14] tcg/riscv: Implement vector cmp ops

2024-09-03 Thread Richard Henderson
On 9/2/24 23:45, Richard Henderson wrote: I think the first implementation should be simpler: CONST('C', TCG_CT_CONST_CMP_VI) tcg_target_const_match() {     ...     if ((ct & TCG_CT_CONST_CMP_VI) &&     val >= tcg_cmpcond_to_rvv_vi[cond].min &&    

[OE-core] [PATCH 2/2] elfutils: Drop obsolete ptest conditional in do_install

2024-09-03 Thread Richard Purdie
The PTEST_ENABLED conditional is no longer needed since the task is deleted if ptest isn't enabled. Signed-off-by: Richard Purdie --- .../elfutils/elfutils_0.191.bb| 70 +-- 1 file changed, 34 insertions(+), 36 deletions(-) diff --git a/meta/recipes-dev

[OE-core] [PATCH 1/2] gettext: Drop obsolete ptest conditional in do_install

2024-09-03 Thread Richard Purdie
The PTEST_ENABLED conditional is no longer needed since the task is deleted if ptest isn't enabled. Signed-off-by: Richard Purdie --- meta/recipes-core/gettext/gettext_0.22.5.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-core/gettext/gettext_0.22.5.bb b/meta/recipes

Re: Questions regarding CPUs on aarch64 builders

2024-09-03 Thread Richard W.M. Jones
ists.fedoraproject.org > To unsubscribe send an email to devel-le...@lists.fedoraproject.org > Fedora Code of Conduct: > https://docs.fedoraproject.org/en-US/project/code-of-conduct/ > List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines > List Archives: >

Re: RPM dependency generator sanity check

2024-09-03 Thread Richard W.M. Jones
bdkit/blob/rawhide/f/nbdkit.attr https://src.fedoraproject.org/rpms/supermin/blob/rawhide/f/supermin-find-requires https://src.fedoraproject.org/rpms/supermin/blob/rawhide/f/supermin.attr https://github.com/rpm-software-management/rpm/blob/master/scripts/ocamldeps.sh https://github.com/rpm-softwa

[PATCH] Dump whether a SLP node represents load/store-lanes

2024-09-03 Thread Richard Biener
This makes it easier to discover whether SLP load or store nodes participate in load/store-lanes accesses. Bootstrapped on x86_64-unknown-linux-gnu, testing in progress. Richard. * tree-vect-slp.cc (vect_print_slp_tree): Annotate load and store-lanes nodes. --- gcc/tree-vect

[PATCH] Fix missed peeling for gaps with SLP load-lanes

2024-09-03 Thread Richard Biener
The following disables peeling for gap avoidance with using smaller vector accesses when using load-lanes. Bootstrapped on x86_64-unknown-linux-gnu, testing in progress. Richard. * tree-vect-stmts.cc (get_group_load_store_type): Only disable peeling for gaps by using smaller

Re: Zen5 tuning part 2: disable gather and scatter

2024-09-03 Thread Richard Biener
ect ucode re-use for large loops (OTOH gathers may take up much space in the ucode cache or be not there at all). Richard. > Bootstrapped/regtested x86_64-linux, committed. > > > gcc/ChangeLog: > > * config/i386/x86-tune.def (X86_TUNE_USE_GATHER_2PARTS): Disable for

Bug#1080414: linux-image-amd64: Kernel 6.10.x login as user not possible

2024-09-03 Thread Richard
Package: linux-image-amd64 Version: 6.10.7-1 Severity: normal Dear Maintainer, for some reason, loging in as a normal (not the root user) user is not possible on one of my systems, running Gnome v46. Logging in through gdm3, logging in per ssh as root and then switching the user with 'su - ' or l

[PATCH][v2] RISC-V: Also lower SLP grouped loads with just one consumer

2024-09-03 Thread Richard Biener
This makes sure to produce interleaving schemes or load-lanes for single-element interleaving and other permutes that otherwise would use more than three vectors. It exposes the latent issue that single-element interleaving with large gaps can be inefficient - the mitigation in get_group_load_stor

Re: [OE-core] does do_install_ptest() need to check "PTEST_ENABLED"?

2024-09-03 Thread Richard Purdie
ly > subtle that might require that? i don't see any compelling reason to > have to check that variable. It is unnecessary with how the class is written now. Cheers, Richard -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#204156): http

Re: Inconsistency between try_mergejoin_path and create_mergejoin_plan

2024-09-03 Thread Richard Guo
On Fri, Jul 26, 2024 at 3:56 PM Richard Guo wrote: > Do you think it works if we place this test in equivclass.sql and > write a comment explaining why it's there, like attached? Now I’m > also starting to wonder if this change actually warrants such a test. The new test case

[PATCH] RISC-V: Also lower SLP grouped loads with just one consumer

2024-09-03 Thread Richard Biener
This makes sure to produce interleaving schemes or load-lanes for single-element interleaving and other permutes that otherwise would use more than three vectors. It exposes the latent issue that single-element interleaving with large gaps can be inefficient - the mitigation in get_group_load_stor

[gcc r15-3411] tree-optimization/116575 - avoid ICE with SLP mask_load_lane

2024-09-03 Thread Richard Biener via Gcc-cvs
https://gcc.gnu.org/g:ac6cd62a351a8f1f3637a2552c74eb5eb51cfdda commit r15-3411-gac6cd62a351a8f1f3637a2552c74eb5eb51cfdda Author: Richard Biener Date: Tue Sep 3 09:23:20 2024 +0200 tree-optimization/116575 - avoid ICE with SLP mask_load_lane The following avoids performing re

Re: PING: [PATCH] ipa: Don't disable function parameter analysis for fat LTO streaming

2024-09-03 Thread Richard Biener
.org/git/?p=gcc.git;a=commit;h=85ebbabd85e03bdc3afc190aeb29250606d18322 > https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=3350e59f2985469b2472e4d9a6d387337da4519b > > to have > > if (summary) > ... > else if (summary_lto) > This disables LTO optimization for -ffat-lto-objects. > > Is this patch OK for master and backports? OK for master. Please wait with backports though, eventually Honza has comments as well. Thanks, Richard. > Thanks. > > H.J. > > -- > H.J.

Re: Remove no-op PlaceHolderVars

2024-09-03 Thread Richard Guo
pressions. This should not be too expensive, as we only need to re-preprocess the HAVING clauses that are moved to WHERE, not the entire tree. The v13 patch in that thread implements this approach. Thanks Richard

[Python-jenkins-developers] [Bug 2078782] [NEW] get_build_stages return None for pipeline

2024-09-03 Thread richard
Public bug reported: pipeline plugin version: 600.xx when call get_build_stages(pipeline_fullname, builder_number), got None. ** Affects: python-jenkins Importance: Undecided Status: New -- You received this bug notification because you are a member of Python Jenkins Developers,

[gcc r15-3409] Do not assert NUM_POLY_INT_COEFFS != 1 early

2024-09-03 Thread Richard Biener via Gcc-cvs
https://gcc.gnu.org/g:14b65af6b400284a937e1d3be45579ee8cf8c32b commit r15-3409-g14b65af6b400284a937e1d3be45579ee8cf8c32b Author: Richard Biener Date: Tue Sep 3 10:40:41 2024 +0200 Do not assert NUM_POLY_INT_COEFFS != 1 early The following moves the assert on NUM_POLY_INT_COEFFS

[PATCH] Do not assert NUM_POLY_INT_COEFFS != 1 early

2024-09-03 Thread Richard Biener
The following moves the assert on NUM_POLY_INT_COEFFS != 1 after INTEGER_CST processing. Bootstrap and regtest running on x86_64-unknown-linux-gnu, pushed as obvious after getting into stage3. * fold-const.cc (poly_int_binop): Move assert on NUM_POLY_INT_COEFFS after INTEGER_CST p

Re: [PATCH 1/3] SVE intrinsics: Fold constant operands.

2024-09-03 Thread Richard Biener
T_COEFFS != 1 targets). > Because the assert in poly_int_binop for NUM_POLY_INT_COEFFS is now > before the check for both arg1/arg2 being INTEGER_CST since you moved > that from int_const_binop into poly_int_binop. > > The obvious patch would move the assert below the check for &g

RE: [gimplify.cc] Avoid ICE when passing VLA vector to accelerator

2024-09-03 Thread Richard Biener
On Tue, 3 Sep 2024, Prathamesh Kulkarni wrote: > > -Original Message- > > From: Richard Biener > > Sent: Monday, September 2, 2024 12:47 PM > > To: Prathamesh Kulkarni > > Cc: gcc-patches@gcc.gnu.org > > Subject: Re: [gimplify.cc] Avoid ICE when p

Re: [OE-core] [PATCH 1/3] uboot-config: fix devtool modify with kernel-fitimage

2024-09-03 Thread Richard Purdie
cipe/uboot-config.bbclass > @@ -101,9 +101,9 @@ python () { > # The "doc" varflag is special, we don't want to see it here > ubootconfigflags.pop('doc', None) > ubootconfig = (d.getVar('UBOOT_CONFIG') or "").split

Re: [patch][v2] LTO/WPA: Ensure that output_offload_tables only writes table once [PR116535]

2024-09-03 Thread Richard Biener
On Mon, 2 Sep 2024, Tobias Burnus wrote: > Hi Richard, > > Am 02.09.24 um 13:58 schrieb Richard Biener: > > Hmm, I can't really follow how and where it's currently decided whether to > > output offload tables for the LTRANS units > > Before the p

Re: [PATCH] lower-bitint: Fix up __builtin_{add,sub}_overflow{,_p} bitint lowering [PR116501]

2024-09-03 Thread Richard Biener
kip-if "" { ! run_expensive_tests } { "-flto" } { "" } } */ > + > +_BitInt (4) a; > + > +int > +foo (_BitInt(513) b) > +{ > + return __builtin_sub_overflow_p (a, b, (_BitInt (511)) 0); > +} > + > +int > +main () > +{ > + if (!foo > (0xwb)) > +__builtin_abort (); > +} > > Jakub > > -- Richard Biener SUSE Software Solutions Germany GmbH, Frankenstrasse 146, 90461 Nuernberg, Germany; GF: Ivo Totev, Andrew McDonald, Werner Knoblich; (HRB 36809, AG Nuernberg)

[PATCH] tree-optimization/116575 - avoid ICE with SLP mask_load_lane

2024-09-03 Thread Richard Biener
The following avoids performing re-discovery with single lanes in the attempt to for the use of mask_load_lane as rediscovery will fail since a single lane of a mask load will appear permuted which isn't supported. Bootstrap and regtest running on x86_64-unknown-linux-gnu. PR tree-optimiz

Re: [PATCH v2 08/14] tcg/riscv: Implement vector cmp ops

2024-09-02 Thread Richard Henderson
On 8/30/24 16:16, LIU Zhiwei wrote: From: TANG Tiancheng 1.Address immediate value constraints in RISC-V Vector Extension 1.0 for comparison instructions. 2.Extend comparison results from mask registers to SEW-width elements, following recommendations in The RISC-V SPEC Volume I (Version 202

[gcc r15-3393] Correctly handle store IFNs in vect_get_vector_types_for_stmt

2024-09-02 Thread Richard Biener via Gcc-cvs
https://gcc.gnu.org/g:340ca7437ceb05d61797dbf3b522a495176c5a5e commit r15-3393-g340ca7437ceb05d61797dbf3b522a495176c5a5e Author: Richard Biener Date: Mon Sep 2 11:16:12 2024 +0200 Correctly handle store IFNs in vect_get_vector_types_for_stmt Currently

[gcc r15-3394] Handle mixing REALPART/IMAGPART with other components in SLP groups

2024-09-02 Thread Richard Biener via Gcc-cvs
https://gcc.gnu.org/g:7c9394e84c54238dd2cf01dfaa06d8e87b39cf95 commit r15-3394-g7c9394e84c54238dd2cf01dfaa06d8e87b39cf95 Author: Richard Biener Date: Mon Sep 2 15:12:58 2024 +0200 Handle mixing REALPART/IMAGPART with other components in SLP groups The following makes sure we

Re: [r15-3359 Regression] FAIL: gcc.target/i386/avx10_2-bf-vector-cmpp-1.c (test for excess errors) on Linux/x86_64

2024-09-02 Thread Richard Biener
cascadelake to avoid the > > false positive? > > We could do that if nobody has objection to that. But mixing both doesn't do anything to the ABI so -Wpsabi sounds like the wrong bucket to me. Instead we have to solve the issue at hand - I would expect users to run into this warning as well if we do within our testsuite? Richard. > Thx, > Haochen > > > > > -- > > BR, > > Hongtao

Re: [r15-3359 Regression] FAIL: gcc.target/i386/avx10_2-bf-vector-cmpp-1.c (test for excess errors) on Linux/x86_64

2024-09-02 Thread Richard Biener via Gcc-regression
cascadelake to avoid the > > false positive? > > We could do that if nobody has objection to that. But mixing both doesn't do anything to the ABI so -Wpsabi sounds like the wrong bucket to me. Instead we have to solve the issue at hand - I would expect users to run into this warning as well if we do within our testsuite? Richard. > Thx, > Haochen > > > > > -- > > BR, > > Hongtao

Re: [OE-core] [PATCH 3/3] devtool: remove obsolete SRCTREECOVEREDTASKS handling

2024-09-02 Thread Richard Purdie
_unpack do_kernel_configcheck"\n') > -    f.write('\ndo_patch[noexec] = "1"\n') > f.write('\ndo_kernel_configme:prepend() {\n' > '    if [ -e ${S}/.config ]; then\n' > '   

[clang-tools-extra] Update clang tidy Contributing guide (PR #106672)

2024-09-02 Thread Richard Thomson via cfe-commits
LegalizeAdulthood wrote: > Alternatively, pressing the tab key after a previous matcher's open > parentheses would also Did you try this on Windows? Because in my experience all these TAB-complete actions depend on GNU readline which doesn't work on Windows. https://github.com/llvm/llvm-proj

Remove no-op PlaceHolderVars

2024-09-02 Thread Richard Guo
s not a trivial task. Before delving into these two problems, I'd like to know whether this optimization is worthwhile, and whether I'm going in the right direction. [1] https://postgr.es/m/cambws4-9dyrf44pkpkfrpolxc_yh15dl8xt8j-ohggp_wvs...@mail.gmail.com Thanks Richa

[Fedora-legal-list] Re: MIT without copyright notice, requires to include the copyright notice

2024-09-02 Thread Richard Fontana
s it was determined that the original copyright notice was or became incorrect, as is common. Here's a case of what I believe is an incorrect MIT license copyright notice that I recently pointed out: https://github.com/containers/bootc/issues/766 Richard --

[cctalk] Re: VCFMW items available upon request

2024-09-02 Thread Richard via cctalk
In article you write: >I think most people here would disagree with you. How many people would >scrap a KI10, 11/20, PDP8 or any piece of classic computer equipment if it >was not "working in proper order"? > >I usually discuss this with the potential buyer. > >I have never heard a technically sk

Re: Page orientation in Seeing AI

2024-09-02 Thread 'Richard Turner' via VIPhone
I just turned a page upside down and tried scanning with Seeing AI, Envision AI, Prizmo Go, VDScan and all of them just read the text without telling me which direction the text was positioned. Richard, USA"INTROVERTS UNITE ...SEPARATELY IN YOUR OWN HOMES"-- as seen on a T-shirt with a

Re: [Histonet] Antibody dilution help

2024-09-02 Thread richard cartun via Histonet
o do it the same way .. be consistent!  Remember, the number of slides that you have to test should determine how much antibody you need and the pipettes available to you will determine what volumes you can pipette. I hope this was helpful. Richard W. Cartun, PhD, MSMorphologic Proteomic

[gentoo-commits] repo/proj/guru:dev commit in: app-emulation/box64/

2024-09-02 Thread Richard Rogalski
commit: 880eda7f6da058451b191f7c29978716ff609e57 Author: Richard-Rogalski tutanota com> AuthorDate: Mon Sep 2 20:19:34 2024 + Commit: Richard Rogalski tutanota com> CommitDate: Mon Sep 2 20:19:34 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/comm

Kafka related PRs looking for reviews

2024-09-02 Thread Richard Zowalla
Hi all, can we have some reviews for these Kafka related PRs: - https://github.com/apache/storm/pull/3679 - https://github.com/apache/storm/pull/3691 I am not a Kafka user, so I am not familiär with that part of Storm. Gruß Richard

RE: re there any resorses for olderpeoplewho are sighted to lurn how to use the i phone?

2024-09-02 Thread 'Richard Turner' via VIPhone
Are their any Senior services where your Dad lives that maybe do some training or hold classes taught by members? They might offer something to help seniors learn their iPhone. Richard, USA "INTROVERTS UNITE ... SEPARATELY IN YOUR OWN HOMES" -- as seen on a T-shirt with a

[Bug 2073772] Re: rpool fails to import on first boot after automated install (failed PRE_SHUTDOWN?)

2024-09-02 Thread Richard Hesketh
Hi Olivier, I have tested the new installer snap as suggested but unfortunately it doesn't seem to have made a difference to the behaviour. I will attach a copy of an autoinstall config which produces the problem for us (mildy redacted for internal network details). The way we're doing the zfs co

RE: re there any resorses for olderpeoplewho are sighted to lurn how to use the i phone?

2024-09-02 Thread 'Richard Turner' via VIPhone
the notes app. I don’t know if any of the beta testers have tried this yet assuming it is available in the beta already. I don’t put betas on my iPhone, or I would have tested it by now. Thanks, Richard, USA "INTROVERTS UNITE ... SEPARATELY IN YOUR OWN HOMES" -- as s

[gentoo-commits] repo/proj/guru:dev commit in: app-emulation/box86/

2024-09-02 Thread Richard Rogalski
commit: 267c2bbeac133599ef3b6b95aff522d5bf1c3e0b Author: Richard-Rogalski tutanota com> AuthorDate: Mon Sep 2 17:14:43 2024 + Commit: Richard Rogalski tutanota com> CommitDate: Mon Sep 2 17:18:32 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/comm

RE: BARDMobile app and bluetooth headphones that are not made by Apple

2024-09-02 Thread 'Richard Turner' via VIPhone
Thanks Barbara, I passed your message along to the NLS download folks and here is their reply: Hello Richard, Quite a few people have requested that it be possible to map the iPhone’s built-in Rewind and Fast Forward controls to Rewind and Fast Forward rather than Previous and Next. I’m

From 9 to 5 Mac: iOS 18 makes it easy to record any phone call and get a transcript

2024-09-02 Thread 'Richard Turner' via VIPhone
ripts are saved into Apple Notes, so you can store them there indefinitely or delete them at a later time. Apple Intelligence has a part to play too: on compatible devices like the iPhone 15 Pro and Pro Max, Notes will also provide an AI-powered summary of the transcript. Richard, USA &q

RE: My Dad who is sighted is seeking a app to record things like phone calls so that he can play them back like from doctors etc.

2024-09-02 Thread 'Richard Turner' via VIPhone
recording feature that I am going to send out shortly. I hope all is going well in the new job and have to apologize off line for dropping the ball… Richard, USA "INTROVERTS UNITE ... SEPARATELY IN YOUR OWN HOMES" -- as seen on a T-shirt with a power fist raised My web s

RE: re there any resorses for olderpeoplewho are sighted to lurn how to use the i phone?

2024-09-02 Thread 'Richard Turner' via VIPhone
/ Richard, USA "INTROVERTS UNITE ... SEPARATELY IN YOUR OWN HOMES" -- as seen on a T-shirt with a power fist raised My web site: https://www.turner42.com From: viphone@googlegroups.com On Behalf Of mi...@eastlink.ca Sent: Monday, September 2, 2024 9:27 AM To: viphone@google

Re: My Dad who is sighted is seeking a app to record things like phone calls so that he can play them back like from doctors etc.

2024-09-02 Thread 'Richard Turner' via VIPhone
r42.com(sent from my iPhone 13 pro) On Sep 2, 2024, at 8:43 AM, 'Richard Turner' via VIPhone wrote:OK, I’m clearly not paying attention today.No, it will not record phone calls.  I was focused on recording Doctors… thinking in person, when he clearly stated phones calls. I don’t know

Re: [PATCH v1 0/9] SMALL code model fixes, optimization fixes, LTO and minimal C++ enablement

2024-09-02 Thread Richard Sandiford
ak references for MinGW? The code looks good, but I didn't really follow why it was doing what it was doing. Richard > > The patches included in this series implement and resolve the > following areas: > > 1. Support weak references. > 2. Add debugging information. > 3. Ad

RE: My Dad who is sighted is seeking a app to record things like phone calls so that he can play them back like from doctors etc.

2024-09-02 Thread 'Richard Turner' via VIPhone
. We should know for sure about iOS 18 next week when Apple does the big reveal. Richard, USA "INTROVERTS UNITE ... SEPARATELY IN YOUR OWN HOMES" -- as seen on a T-shirt with a power fist raised My web site: https://www.turner42.com From: viphone@googlegroups.com On Beha

Re: [PATCH v1 9/9] aarch64: Handle alignment when it is bigger than BIGGEST_ALIGNMENT

2024-09-02 Thread Richard Sandiford
What kind of testcase requires this? Thanks, Richard > --- > gcc/config/aarch64/aarch64-coff.h | 10 ++ > 1 file changed, 10 insertions(+) > > diff --git a/gcc/config/aarch64/aarch64-coff.h > b/gcc/config/aarch64/aarch64-coff.h > index 77c09df82e4..131145171a0 100644

Re: [PATCH v1 6/9] aarch64: Use symbols without offset to prevent relocation issues

2024-09-02 Thread Richard Sandiford
th SRC and DEST have mode MODE. */ static void aarch64_load_symref_and_add_offset (scalar_int_mode mode, rtx dest, rtx src, poly_int64 offset) OK with that change, thanks. Richard > +{ > + gcc_assert (can_create_pseudo_p ()); > + src = aarch64

Re: [PATCH v1 5/9] aarch64: Multiple adjustments to support the SMALL code model correctly

2024-09-02 Thread Richard Sandiford
> +void > +mingw_pe_declare_object_type (FILE *file, const char *name, int pub) The new function should have its own comment (the existing one describes mingw_pe_declare_function_type). Could we make "pub" a bool for both functions? Maybe the two functions are

BARDMobile app and bluetooth headphones that are not made by Apple

2024-09-02 Thread 'Richard Turner' via VIPhone
ot sure of the brands. Does anyone use a non Apple Bluetooth headphone that works for pausing a BARD audio book? If so, which brand and model? Richard, USA "INTROVERTS UNITE ... SEPARATELY IN YOUR OWN HOMES" -- as seen on a T-shirt with a power fist raised My web site:

RE: My Dad who is sighted is seeking a app to record things like phone calls so that he can play them back like from doctors etc.

2024-09-02 Thread 'Richard Turner' via VIPhone
The built in Voice Memos app will do exactly what he wants. It is free, and pretty straight forward. Richard, USA "INTROVERTS UNITE ... SEPARATELY IN YOUR OWN HOMES" -- as seen on a T-shirt with a power fist raised My web site: https://www.turner42.com Fro

Re: [PATCH v1 4/9] aarch64: Exclude symbols using GOT from code models

2024-09-02 Thread Richard Sandiford
ink we should instead patch the callers that are using aarch64_symbol_binds_local_p for GOT decisions. The function itself is checking for a more general property (and one that could be useful in other contexts). Thanks, Richard > --- > gcc/config/aarch64/aarch64.cc | 3 +++ > 1 file cha

Re: [SOGo] Selfcompiled SOGo set settings file

2024-09-02 Thread Richard
mode, so no caching on the browser side can be the cause of interference. Best Richard On Mon, Sep 2, 2024, 14:45 Christian Mack wrote: > Hello > > The SOGo configuration location has nothing to do with nginx. > > As you changed the installation Path to /usr/local/, SO

Bug#1080332: chkrootkit: chkutmp failure - obsolete as utmp is now disabled

2024-09-02 Thread Richard Lewis
On Mon, 2 Sep 2024, 12:21 Vincent Lefevre, wrote: > > With systemd 256.5-2, I now get: > > > Checking `chkutmp'... WARNING > > WARNING: chkutmp output: > failed opening utmp ! >

Re: [OE-core] [yocto-security] OE-core CVE metrics for master on Sun 01 Sep 2024 01:00:01 AM HST

2024-09-02 Thread Richard Purdie
On Sun, 2024-09-01 at 01:18 -1000, Steve Sakoman via lists.yoctoproject.org wrote: > Full list:  Found 0 unpatched CVEs Much as I wish that were true... :/ Cheers, Richard -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#204103): ht

[PATCH] Handle mixing REALPART/IMAGPART with other components in SLP groups

2024-09-02 Thread Richard Biener
The following makes sure we handle a SLP load/store group from a structure with complex and scalar members. This for example happens in gcc.target/i386/pr106010-9a.c. Bootstrap and regtest running on x86_64-unknown-linux-gnu. * tree-vect-slp.cc (vect_build_slp_tree_1): Handle mixing

Re: Restore iPhone via iCloud Backup

2024-09-02 Thread 'Richard Turner' via VIPhone
Before you try that. Have you tried doing a two finger flick up and then quickly tapping the up volume to see if you hear VoiceOver getting lder? The volume may just be all the way down. Also, have you tried doing this with headphones plugged in? Richard, USA "INTROVERTS UNITE ... SEPAR

Re: [PATCH 3/3] SVE intrinsics: Fold constant operands for svmul.

2024-09-02 Thread Richard Sandiford
Jennifer Schmitz writes: >> Does: >> >> svmul_n_u32_x (pg, svindex_u32 (4, 1), 2); >> >> get optimised to a single INDEX of #8, #2? It would be good to test >> things like that if so. >> >> Looks good to me otherwise. >> >> Than

Re: [PATCH 2/3] SVE intrinsics: Fold constant operands for svdiv.

2024-09-02 Thread Richard Sandiford
.h > b/gcc/config/aarch64/aarch64-sve-builtins.h > index 9ab6f202c30..22e9a815039 100644 > --- a/gcc/config/aarch64/aarch64-sve-builtins.h > +++ b/gcc/config/aarch64/aarch64-sve-builtins.h > @@ -639,6 +639,8 @@ public: > >gimple *fold (); > > + gimple *fold_const_binary (enum

Re: [PATCH 1/3] SVE intrinsics: Fold constant operands.

2024-09-02 Thread Richard Sandiford
doesn't need to check whether ARG1 or ARG2 are constant or whether the operation is a vector operation. The routine does those checks itself. I also don't think we need to specify the assumptions on well-typed vector operations, since those apply generally. OK for trunk wit

[SOGo] Selfcompiled SOGo set settings file

2024-09-02 Thread Richard
ketAddress]: host=localhost port=431\ > 24> connectedTo=<0x0x5581b5752420[NGInternetSocketAddress]: host=localhost > port=143>>> > Sep 02 14:02:07 sogod [21933]: [ERROR] <0x5581b5cb6c50[SOGoMailAccount]:0> > Could not connect IMAP4 > Is there something like an nginx directive I could set to tell sogo what settings file to use? Best Richard [1]: https://bugs.sogo.nu/view.php?id=5976

[sr-dev] Re: [kamailio/kamailio] rtpengine: fix api using ki functions (PR #3956)

2024-09-02 Thread Richard Fuchs via sr-dev
Merged #3956 into master. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3956#event-14102545609 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Developm

Re: [OE-core] [scarthgap][PATCH 4/4] sstate: Drop SSTATEPOSTINSTFUNC support

2024-09-02 Thread Richard Purdie
On Mon, 2024-09-02 at 11:31 +0100, Pedro Ferreira wrote: > From: Richard Purdie > > This was deprecated with the introduction of postfunc support for > tasks > in general and only used by buildhistory. Now that usage has been > removed, > drop the code from sstate.bbclass. A

Re: [patch] LTO/WPA: Ensure that output_offload_tables only writes table once [PR116535]

2024-09-02 Thread Richard Biener
If not, the data is duplicated and > only the data belonging to the fork is modified. > > This patch moves the logic to gcc/lto/lto.cc and sets a global variable to > ensure that it is only output for the first partition, independently whether > there is only one or several processes writing

Re: [OE-core] why does EXTRA_IMAGE_FEATURES += "ptest-pkgs" not install *all* ptest pkgs?

2024-09-02 Thread Richard Purdie
built? I suspect it only installs ptests for things actually in the image. Cheers, Richard -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#204089): https://lists.openembedded.org/g/openembedded-core/message/204089 Mute This Topic: https://

Re: [OE-core] [PATCH 1/3] systemd-tools: add recipe

2024-09-02 Thread Richard Purdie
\ > +    -Dsystem-gid-max=999 \ > +" > + > +do_install() { > +    install -d ${D}${bindir}/ > +    install -m 0755 ${S}/src/ukify/ukify.py ${D}${bindir}/ukify > +} > + > +BBCLASSEXTEND = "native" This will fail in CI as there is now maintainers file entr

[PATCH] Correctly handle store IFNs in vect_get_vector_types_for_stmt

2024-09-02 Thread Richard Biener
we're unnecessarily handing those again to determine the scalar type but there should always be a data reference for them. Bootstrapped and tested on x86_64-unknown-linux-gnu, I'll wait for aarch64 CI before checking in. Richard. * tree-vect-stmts.cc (vect_get_vector_type

Re: [PATCH] tests/unit: remove block layer code from test-nested-aio-poll

2024-09-02 Thread Richard W.M. Jones
does not even need iothreads. So remove everything that > calls aio_wait_kick(), which is nice for coverage compared to adding the call > to qemu_init_main_loop(). > > Reported-by: Richard W.M. Jones > Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2434 > Signed-off-b

Re: [OE-core] [PATCH] gcc-sanitizers: Add ptest support for AddressSanitizer tests

2024-09-02 Thread Richard Purdie
e there is a lot of duplication in these changes including a lot of ptest code. I'm also quite concerned at the buildpaths exceptions, build paths would be pointless in target packages so I'm not sure why those are present. Cheers, Richard -=-=-=-=-=-=-=-=-=-=-=- Links: You receiv

[gcc r15-3377] Rename gimple_asm_input_p to gimple_asm_basic_p

2024-09-02 Thread Richard Sandiford via Gcc-cvs
https://gcc.gnu.org/g:2865719efb16e9f199b332fcf06d69c98928738e commit r15-3377-g2865719efb16e9f199b332fcf06d69c98928738e Author: Richard Sandiford Date: Mon Sep 2 09:56:56 2024 +0100 Rename gimple_asm_input_p to gimple_asm_basic_p Following on from the earlier tree rename, this

[gcc r15-3376] Rename ASM_INPUT_P to ASM_BASIC_P

2024-09-02 Thread Richard Sandiford via Gcc-cvs
https://gcc.gnu.org/g:a4b6c6ab0ba04a4fa409608a860067770317d0de commit r15-3376-ga4b6c6ab0ba04a4fa409608a860067770317d0de Author: Richard Sandiford Date: Mon Sep 2 09:56:56 2024 +0100 Rename ASM_INPUT_P to ASM_BASIC_P ASM_INPUT_P is so named because it causes the eventual rtl insn

Re: [PATCH] ranger: Fix up range computation for CLZ [PR116486]

2024-09-02 Thread Richard Biener
gt; as [prec-1,prec-1] (when second argument is prec, mini is 0 and maxi is > prec, while when second argument is -1, mini is -1 and maxi is prec-1). > > Fixed thusly (the actual handling is then similar to the CTZ [0,0] case), > bootstrapped/regtested on x86_64-linux and i686-linux, ok

Re: [gimplify.cc] Avoid ICE when passing VLA vector to accelerator

2024-09-02 Thread Richard Biener
f data: the pointer replacement variable, and the parameters of the type. */ if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST) should instead be checking for !POLY_INT_CST_P (DECl_SIZE (decl)) Richard. > 0xc17d9c omp_add_variable >         ../../gcc/gcc/gimpl

Re: [patch] lto/lto.cc: Fix build with not HAVE_WORKING_FORK

2024-09-02 Thread Richard Biener
On Fri, Aug 30, 2024 at 8:17 PM Tobias Burnus wrote: > > With HAVE_WORKING_FORK unset, I get an unused by set compile error. > > That's fixed with the attached patch. OK > Tobias > > PS: And if someone wonders what I am doing, see https://gcc.gnu.org/PR116535

Re: [patch] lto-wrapper: Honor -save-temps for ltrans' makefile

2024-09-02 Thread Richard Biener
-j2 all > [Leaving LTRANS /tmp/ccXgtcjJ.mk] > > OK for mainline? OK. Richard. > Tobias

Re: [RFC] gimple ssa: VRP to mark switch default as unreachable instead of removing it [PR112687]

2024-09-02 Thread Richard Biener
. Also, as I already mentioned, I think that the > canonical representation of this kind of switches should be some > representation > that marks the default case as unreachable (with __builtin_unreachable or > somehow else). But can you not simply look at the switch expression ra

Re: [VOTE] Release Apache Storm 2.6.4 rc1

2024-09-01 Thread Richard Zowalla
- Checked hashes + signatures - Build from source + run some tests - Checked the Maven staging repository. - Run a small topology in local and distributed mode. +1 (binding) > Am 31.08.2024 um 14:12 schrieb Rui Abreu : > > I have posted a 1st release candidate for the Apache Storm 2.6.4 release

[gcc r15-3363] load and store-lanes with SLP

2024-09-01 Thread Richard Biener via Gcc-cvs
https://gcc.gnu.org/g:9aaedfc4146c5e4b8412913a6ca4092a2731c35c commit r15-3363-g9aaedfc4146c5e4b8412913a6ca4092a2731c35c Author: Richard Biener Date: Fri Jul 5 10:35:08 2024 +0200 load and store-lanes with SLP The following is a prototype for how to represent load/store-lanes

<    6   7   8   9   10   11   12   13   14   15   >