Re: [PATCH] lib/test_kmod: fix kernel-doc warnings

2024-02-01 Thread Luis Chamberlain
mber 'task_sync' not > described in 'kmod_test_device_info' > test_kmod.c:134: warning: Function parameter or member 'thread_mutex' not > described in 'kmod_test_device' > > Signed-off-by: Randy Dunlap > Cc: Luis Chamberlain > Cc: linux-modu...@vger.kernel.org Applied and pushed, thanks! Luis

Re: [PATCH v2 0/3] modules: few of alignment fixes

2024-02-01 Thread Luis Chamberlain
On Wed, Jan 31, 2024 at 02:11:44PM -0800, Luis Chamberlain wrote: > On Mon, Jan 29, 2024 at 11:26:39AM -0800, Luis Chamberlain wrote: > > Masahiro, if there no issues feel free to take this or I can take them in > > too via the modules-next tree. Lemme know! > > I've que

[ANNOUNCE] 4.14.336-rt159

2024-02-01 Thread Luis Claudio R. Goncalves
/pgpkeys.git Enjoy! Luis

[ANNOUNCE] 5.10.209-rt101

2024-02-01 Thread Luis Claudio R. Goncalves
/docs/kernel/pgpkeys.git Enjoy! Luis

Re: [PATCH 1/3] init: Declare rodata_enabled and mark_rodata_ro() at all time

2024-01-31 Thread Luis Chamberlain
at all time. Sure, queued that up into modules-testing before I push to modules-next. Luis

Re: [PATCH 1/3] init: Declare rodata_enabled and mark_rodata_ro() at all time

2024-01-31 Thread Luis Chamberlain
at all time. Sure, queued that up into modules-testing before I push to modules-next. Luis

Re: [PATCH v2 0/3] modules: few of alignment fixes

2024-01-31 Thread Luis Chamberlain
On Mon, Jan 29, 2024 at 11:26:39AM -0800, Luis Chamberlain wrote: > Masahiro, if there no issues feel free to take this or I can take them in > too via the modules-next tree. Lemme know! I've queued this onto modules-testing to get winder testing [0] [0] https://git.kernel.org/pub/scm

Re: [ANNOUNCE] 5.10.204-rt100

2024-01-31 Thread Luis Claudio R. Goncalves
run the builds if anything critical popped up, but that was not the case. Sorry for the inconvenience, I do hope a release tomorrow or Friday does not disrupt your workflow too much. Luis > Best regards, > Pavel > -- > DEN

Re: [PATCH RFC v4 01/15] ACPI: Only enumerate enabled (or functional) processor devices

2024-01-31 Thread Miguel Luis
&& device->dep_unmet) > return false; > > - return acpi_device_is_present(device); > + /* > + * ACPI 6.5's 6.3.7 "_STA (Device Status)" allows firmware to return > + * (!present && functional) for certain types of devices that should be > + * enumerated. Note that the enabled bit should not be set unless the > + * present bit is set. > + * > + * However, limit this only to processor devices to reduce possible > + * regressions with firmware. > + */ > + if (!device->status.present) > + return device->status.functional; > + > + /* > + * Fast path - if enabled is set, avoid the more expensive test to > + * check whether this device is a processor. > + */ > + if (device->status.enabled) > + return true; > + > + return !acpi_device_is_processor(device); Otherwise, feel free to add: Reviewed-by: Miguel Luis Tested-by: Miguel Luis Thanks Miguel > } > EXPORT_SYMBOL_GPL(acpi_dev_ready_for_enumeration); > > -- > 2.30.2 > >

Re: [Pdl-devel] RESEND: Change in xvals/yvals/zvals behavior

2024-01-30 Thread Luis Mochan
On Tue, Jan 30, 2024 at 04:25:40AM +, Ed . wrote: > Hi Diab, > > PDL 2.085 has just been released,... > ... Great! Regards, Luis -- o W. Luis Mochán, | tel:(52)(777)329-1734 /<(

Re: [Pdl-devel] naming conventions

2024-01-30 Thread Luis Mochan
Nice! I was not aware that Perl allowed calling a method from an unrelated package (if you take the risk). Thanks! Regards, Luis On Mon, Jan 29, 2024 at 10:19:56PM -0500, David Mertens wrote: > Hello Luis, > > Ever crafty, Perl gives you another way to solve this. You could put your &g

Re: [Pdl-general] [Pdl-devel] naming conventions

2024-01-30 Thread Luis Mochan
Nice! I was not aware that Perl allowed calling a method from an unrelated package (if you take the risk). Thanks! Regards, Luis On Mon, Jan 29, 2024 at 10:19:56PM -0500, David Mertens wrote: > Hello Luis, > > Ever crafty, Perl gives you another way to solve this. You could put your &g

Re: [Pdl-general] [Pdl-devel] RESEND: Change in xvals/yvals/zvals behavior

2024-01-30 Thread Luis Mochan
On Tue, Jan 30, 2024 at 04:25:40AM +, Ed . wrote: > Hi Diab, > > PDL 2.085 has just been released,... > ... Great! Regards, Luis -- o W. Luis Mochán, | tel:(52)(777)329-1734 /<(

Re: [RFC PATCH] kernel/module: add a safer implementation of try_module_get()

2024-01-30 Thread Luis Chamberlain
ret = false; > + > + mutex_unlock(_mutex); > + > +out: > + return ret; > +} > +EXPORT_SYMBOL(try_module_get_safe); And EXPORT_SYMBOL_GPL() would need to be used. I'd also expect selftests to be expanded for this case, but again, without a user, this is just trying to resolve a problem which does not exist. Luis

Re: [PATCH 1/3] init: Declare rodata_enabled and mark_rodata_ro() at all time

2024-01-30 Thread Luis Chamberlain
;> pourquoi ceci est important ? > >> https://aka.ms/LearnAboutSenderIdentification ] > >> > >> On Mon, Jan 29, 2024 at 12:09:50PM -0800, Luis Chamberlain wrote: > >>> On Thu, Dec 21, 2023 at 10:02:46AM +0100, Christophe Leroy wrote: > >>>>

Re: [PATCH 1/3] init: Declare rodata_enabled and mark_rodata_ro() at all time

2024-01-30 Thread Luis Chamberlain
;> pourquoi ceci est important ? > >> https://aka.ms/LearnAboutSenderIdentification ] > >> > >> On Mon, Jan 29, 2024 at 12:09:50PM -0800, Luis Chamberlain wrote: > >>> On Thu, Dec 21, 2023 at 10:02:46AM +0100, Christophe Leroy wrote: > >>>>

Re: [RESEND PATCH v2] modules: wait do_free_init correctly

2024-01-30 Thread Luis Chamberlain
On Tue, Jan 30, 2024 at 09:40:38AM +0800, Changbin Du wrote: > On Mon, Jan 29, 2024 at 09:53:58AM -0800, Luis Chamberlain wrote: > > On Mon, Jan 29, 2024 at 10:03:04AM +0800, Changbin Du wrote: > > > The commit 1a7b7d922081 ("modules: Use vmalloc special flag&quo

[Health-dev] [bug #65217] incorrect variable in method create from class ImagingTestRequest

2024-01-30 Thread Luis Falcon
ves as expected. It generates / updates de sequence for the new imaging order ("request" attribute). The order can have several imaging studies associated to it. Kind regards Luis ___ Reply to this item at: <https://

Re: [PATCH 1/3] init: Declare rodata_enabled and mark_rodata_ro() at all time

2024-01-29 Thread Luis Chamberlain
On Thu, Dec 21, 2023 at 10:02:46AM +0100, Christophe Leroy wrote: > Declaring rodata_enabled and mark_rodata_ro() at all time > helps removing related #ifdefery in C files. > > Signed-off-by: Christophe Leroy Very nice cleanup, thanks!, applied and pushed Luis

Re: [PATCH 1/3] init: Declare rodata_enabled and mark_rodata_ro() at all time

2024-01-29 Thread Luis Chamberlain
On Thu, Dec 21, 2023 at 10:02:46AM +0100, Christophe Leroy wrote: > Declaring rodata_enabled and mark_rodata_ro() at all time > helps removing related #ifdefery in C files. > > Signed-off-by: Christophe Leroy Very nice cleanup, thanks!, applied and pushed Luis

Re: [PATCH 1/3] module: Use set_memory_rox()

2024-01-29 Thread Luis Chamberlain
t; set_memory_rox()") and commit 22e99fa56443 ("s390/mm: implement > set_memory_rox()") > > Use set_memory_rox() in modules when STRICT_MODULES_RWX is set. > > Signed-off-by: Christophe Leroy Nice simplification. I applied all 3 patches and pushed! Luis

[PATCH v2 1/4] selftests: add new kallsyms selftests

2024-01-29 Thread Luis Chamberlain
useful for more complex cases later in the future. Signed-off-by: Luis Chamberlain --- lib/Kconfig.debug | 103 ++ lib/Makefile | 1 + lib/tests/Makefile| 1 + lib/tests/module/.gitignore

[PATCH v2 4/4] modules: Add missing entry for __ex_table

2024-01-29 Thread Luis Chamberlain
From: Helge Deller The entry for __ex_table was missing, which may make __ex_table become 1- or 2-byte aligned in modules. Add the entry to ensure it gets 32-bit aligned. Signed-off-by: Helge Deller Signed-off-by: Luis Chamberlain --- scripts/module.lds.S | 1 + 1 file changed, 1 insertion

[PATCH v2 0/3] modules: few of alignment fixes

2024-01-29 Thread Luis Chamberlain
* sections modules: Add missing entry for __ex_table Luis Chamberlain (2): selftests: add new kallsyms selftests vmlinux.lds.h: add missing alignment for symbol CRCs include/linux/export-internal.h | 1 + lib/Kconfig.debug | 103 ++ li

[PATCH v2 3/4] vmlinux.lds.h: add missing alignment for symbol CRCs

2024-01-29 Thread Luis Chamberlain
d7f06 ("linux/export: use inline assembler to populate symbol CRCs") Signed-off-by: Luis Chamberlain --- include/linux/export-internal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/export-internal.h b/include/linux/export-internal.h index 69501e0ec239..51b8

[PATCH v2 2/4] modules: Ensure 64-bit alignment on __ksymtab_* sections

2024-01-29 Thread Luis Chamberlain
] Signed-off-by: Luis Chamberlain --- scripts/module.lds.S | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/module.lds.S b/scripts/module.lds.S index bf5bcf2836d8..b00415a9ff27 100644 --- a/scripts/module.lds.S +++ b/scripts/module.lds.S @@ -15,10 +15,10 @@ SECTIONS

Re: [PATCH 4/4] modules: Add missing entry for __ex_table

2024-01-29 Thread Luis Chamberlain
Deller > Cc: # v6.0+ Cc'ing stable was overkill, I'll remove it. Luis > --- > scripts/module.lds.S | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/scripts/module.lds.S b/scripts/module.lds.S > index b00415a9ff27..488f61b156b2 100644 > --- a/scripts/module.

Re: [RESEND PATCH v2] modules: wait do_free_init correctly

2024-01-29 Thread Luis Chamberlain
estimate on how much that means these days on any desktop / server. Luis

Re: [Pdl-devel] naming conventions

2024-01-28 Thread Luis Mochan
Thanks! Regards, Luis On Sun, Jan 28, 2024 at 04:25:27PM +, Ed . wrote: > Hi Luis, > > This is a long-standing issue in PDL. If your code creates a > PDL::somefunction, there is indeed a risk that someone else’s code also makes > a PDL::somefunction, and there will be a

Re: [Pdl-general] [Pdl-devel] naming conventions

2024-01-28 Thread Luis Mochan
Thanks! Regards, Luis On Sun, Jan 28, 2024 at 04:25:27PM +, Ed . wrote: > Hi Luis, > > This is a long-standing issue in PDL. If your code creates a > PDL::somefunction, there is indeed a risk that someone else’s code also makes > a PDL::somefunction, and there will be a

[Pdl-general] naming conventions

2024-01-28 Thread Luis Mochan
PDL. Regards, Luis -- o W. Luis Mochán, | tel:(52)(777)329-1734 /<(*) Instituto de Ciencias Físicas, UNAM | fax:(52)(777)317-5388 `>/ /\ Av. Universidad s/n

[Pdl-devel] naming conventions

2024-01-28 Thread Luis Mochan
PDL. Regards, Luis -- o W. Luis Mochán, | tel:(52)(777)329-1734 /<(*) Instituto de Ciencias Físicas, UNAM | fax:(52)(777)317-5388 `>/ /\ Av. Universidad s/n

[Desktop-packages] [Bug 2048697] Re: Saving backup server credentials

2024-01-27 Thread Luis
** Changed in: deja-dup (Ubuntu) Status: Incomplete => New -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to deja-dup in Ubuntu. https://bugs.launchpad.net/bugs/2048697 Title: Saving backup server credentials Status in deja-dup

Re: [f2fs-dev] [PATCH] f2fs: Support enhanced hot/cold data separation for f2fs

2024-01-26 Thread Luis Chamberlain
On Fri, Jan 26, 2024 at 09:01:06PM +, Matthew Wilcox wrote: > On Thu, Jan 25, 2024 at 12:54:47PM -0800, Luis Chamberlain wrote: > > On Thu, Jan 25, 2024 at 08:47:39PM +, Matthew Wilcox wrote: > > > On Wed, Dec 07, 2022 at 12:51:13PM -0800, Luis Chamberlain wrote: >

Re: [f2fs-dev] [PATCH] f2fs: Support enhanced hot/cold data separation for f2fs

2024-01-25 Thread Luis Chamberlain
On Thu, Jan 25, 2024 at 08:47:39PM +, Matthew Wilcox wrote: > On Wed, Dec 07, 2022 at 12:51:13PM -0800, Luis Chamberlain wrote: > > On Wed, Nov 30, 2022 at 03:18:41PM +, Matthew Wilcox wrote: > > > From a filesystem point of view, you need to ensure that you handle folios

[Observium] Error in Observium

2024-01-25 Thread Luis Enrique Torres Jacinto via observium
Hello, good morning I have a problem seeing the information of 3 Cisco CBS350 Switches in observium (professional version), I add them normally like any other device, however it does not show me its Processor, Temperature, fanspeed, Status Indicators, etc. [cid:image006.jpg@01DA4F7C.759355E0]

Re: [PATCH RFC v3 03/21] ACPI: processor: Register CPUs that are online, but not described in the DSDT

2024-01-25 Thread Miguel Luis
Hi > On 23 Jan 2024, at 08:27, Jonathan Cameron > wrote: > > On Mon, 22 Jan 2024 17:30:05 + > "Russell King (Oracle)" wrote: > >> On Mon, Jan 22, 2024 at 05:22:46PM +0100, Rafael J. Wysocki wrote: >>> On Mon, Jan 22, 2024 at 5:02 PM Jonathan Cameron >>> wrote: On Mon, 15

[krita] [Bug 440042] Window > New view > Close both documents > Crash

2024-01-24 Thread Luis Miguel P. Freitas
https://bugs.kde.org/show_bug.cgi?id=440042 --- Comment #7 from Luis Miguel P. Freitas --- Created attachment 165200 --> https://bugs.kde.org/attachment.cgi?id=165200=edit New crash information added by DrKonqi krita (5.1.5) using Qt 5.15.8 I was exiting app with a unsaved docum

[krita] [Bug 440042] Window > New view > Close both documents > Crash

2024-01-24 Thread Luis Miguel P. Freitas
https://bugs.kde.org/show_bug.cgi?id=440042 Luis Miguel P. Freitas changed: What|Removed |Added CC||l...@digitalxs.ca -- You

Re: [deal.II] Re: element birth using FE_Nothing and FE_Collection in time-dependent problem with adaptive mesh refinement

2024-01-24 Thread luis miguel reig buades
tional > constructor argument > `const bool average_values=false` which you can set to true. Then the > assert will hopefully not be triggered, because the conflicting values are > averaged. Of course you have to decide yourself if the obtained values are > still feasible for yo

Re: [spctools-discuss] Trouble converting Waters.RAW with TPP msconvert

2024-01-24 Thread 'Luis Mendoza' via spctools-discuss
before. Cheers, --Luis On Thu, Jan 18, 2024 at 7:53 AM Alex Gao wrote: > Dear David, > > So after a long troubleshooting process with msConvert and Waters team as > well as testing it by myself, I found the best way to convert Waters.raw > files is to use this Waters proprietary s

[clang] [libc] [libcxx] [flang] [openmp] [lld] [compiler-rt] [lldb] [clang-tools-extra] [llvm] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-23 Thread Ethan Luis McDonough via cfe-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/13] Add profiling functions to libomptar

[Lldb-commits] [clang] [libc] [libcxx] [flang] [openmp] [lld] [compiler-rt] [lldb] [clang-tools-extra] [llvm] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-23 Thread Ethan Luis McDonough via lldb-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/13] Add profiling functions to libomptar

[libc] [openmp] [clang] [flang] [clang-tools-extra] [lldb] [libcxx] [lld] [compiler-rt] [llvm] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-23 Thread Ethan Luis McDonough via cfe-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/13] Add profiling functions to libomptar

[Lldb-commits] [libc] [openmp] [clang] [flang] [clang-tools-extra] [lldb] [libcxx] [lld] [compiler-rt] [llvm] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-23 Thread Ethan Luis McDonough via lldb-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/13] Add profiling functions to libomptar

Re: [PATCH 2/4] modules: Ensure 64-bit alignment on __ksymtab_* sections

2024-01-22 Thread Luis Chamberlain
On Mon, Jan 22, 2024 at 05:47:49PM +0100, Helge Deller wrote: > On 1/22/24 17:10, Luis Chamberlain wrote: > > > > It's within the noise for x86_64, but given what you suggest > > for parisc where it is much more expensive, we should see a non-noise > > delta. Even just

Re: [PATCH 2/4] modules: Ensure 64-bit alignment on __ksymtab_* sections

2024-01-22 Thread Luis Chamberlain
're at it. If you don't feel like doing that test that's fine too, we can just ignore that. I'll still apply the patches but, I figured I'd ask to collect information while the test was already written and it should now be easy to compare / contrast differences. Luis

Bug#1061300: lcm: Update to version 1.5.0

2024-01-22 Thread Jose Luis Rivero
Source: lcm Version: 1.3.1+repack1-7 Severity: wishlist Dear Maintainer, lcm upstream released the version 1.5.0 on April 2023. It would be great to have it packaged and available on Debian Sid. I canhelp with code changes if the maintainer or the team are willing to sponsor and review them.

Bug#1061300: lcm: Update to version 1.5.0

2024-01-22 Thread Jose Luis Rivero
Source: lcm Version: 1.3.1+repack1-7 Severity: wishlist Dear Maintainer, lcm upstream released the version 1.5.0 on April 2023. It would be great to have it packaged and available on Debian Sid. I canhelp with code changes if the maintainer or the team are willing to sponsor and review them.

Re: [deal.II] Re: element birth using FE_Nothing and FE_Collection in time-dependent problem with adaptive mesh refinement

2024-01-21 Thread luis miguel reig buades
(); } setup_system(); if (timestep_number == 10){ solution.reinit(dof_handler.n_dofs()); solution = 1.; } solution_trans.interpolate(previous_solution, solution); but still the same error El domingo, 21 de enero de 2024 a las 21:18:41 UTC, luis miguel reig buades escribió

Re: [deal.II] Re: element birth using FE_Nothing and FE_Collection in time-dependent problem with adaptive mesh refinement

2024-01-21 Thread luis miguel reig buades
43f09c6b25a4c > > Marc > On Thursday, January 18, 2024 at 12:09:02 PM UTC-7 luis@gmail.com > wrote: > >> Hello Wolfgang, >> >> Yes, I am still getting the same error even using >> cell->set_future_fe_index(0) before executing the refinement. >&

[Desktop-packages] [Bug 2048697] Re: Saving backup server credentials

2024-01-20 Thread Luis
I could find a log entry in syslog about this error: gvfsd-sftp[168973]: secret_password_storev_sync: assertion 'password != NULL' failed Maybe this will help you... -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to deja-dup in Ubuntu.

[weewx-user] Rain Rate error

2024-01-19 Thread Luis
be happy if someone points me to the place of code where this value is computed for adding a control to avoid this absurd value. Any ideas? Thanks so much Luis Rosety -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from

[Lldb-commits] [clang] [flang] [libc] [openmp] [lldb] [llvm] [lld] [libcxx] [clang-tools-extra] [compiler-rt] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-18 Thread Ethan Luis McDonough via lldb-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/12] Add profiling functions to libomptar

[clang] [flang] [libc] [openmp] [lldb] [llvm] [lld] [libcxx] [clang-tools-extra] [compiler-rt] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-18 Thread Ethan Luis McDonough via cfe-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/12] Add profiling functions to libomptar

[lld] [libc] [llvm] [lldb] [flang] [openmp] [clang] [compiler-rt] [clang-tools-extra] [libcxx] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-18 Thread Ethan Luis McDonough via cfe-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/11] Add profiling functions to libomptar

[Lldb-commits] [lld] [libc] [llvm] [lldb] [flang] [openmp] [clang] [compiler-rt] [clang-tools-extra] [libcxx] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-18 Thread Ethan Luis McDonough via lldb-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/11] Add profiling functions to libomptar

Re: [deal.II] Re: element birth using FE_Nothing and FE_Collection in time-dependent problem with adaptive mesh refinement

2024-01-18 Thread luis miguel reig buades
me the error. Thank you for the time, El jueves, 18 de enero de 2024 a las 18:15:08 UTC, Wolfgang Bangerth escribió: > On 1/18/24 03:28, luis miguel reig buades wrote: > > > > However, it does not seem to solve the interpolation problem, I am > assuming > > the error happe

Re: [deal.II] Re: element birth using FE_Nothing and FE_Collection in time-dependent problem with adaptive mesh refinement

2024-01-18 Thread luis miguel reig buades
emented > and adapt the class. > > Best, > > Bruno > > Le jeu. 18 janv. 2024 à 05:29, luis miguel reig buades > a écrit : > >> Thank you very much for your answer Bruno, this makes a lot of sense. >> >> However, it does not seem to solve the interpolation probl

[Sprinklerforum] NFPA-14 Hose Flow

2024-01-18 Thread Luis Perea
Hi everyone According to NFPA-14 if the building exceed 80,000ft2 i must add another stand pipe with 500gpm and in case of a third sytand pipe add another 250 (for unsprinklered buildings). Is this just for vertcial buildings to consider standpipes on each level? Or, if i have a 1 floor

[deal.II] Re: element birth using FE_Nothing and FE_Collection in time-dependent problem with adaptive mesh refinement

2024-01-18 Thread luis miguel reig buades
Thank you very much for your answer Bruno, this makes a lot of sense. However, it does not seem to solve the interpolation problem, I am assuming the error happens because I did not assign an initial solution to the activated elements. Is there any way to assign the activated elements a

Re: [Health-dev] Raspi images (was: Health-dev Digest, Vol 149, Issue 2)

2024-01-18 Thread Luis Falcon
ext, and we'll show them at FOSDEM in a couple of weeks :) For Raspberry 4 you can use Axel's link with GH 4.4 and openSUSE. > > Downloadlink and instructions are here: > https://en.opensuse.org/GNUHealth_on_openSUSE#Installation_of_the_Raspberry_Pi_image > Bests Luis pgpH5ZeDK8M3o.pgp Description: OpenPGP digital signature

[llvm] [clang-tools-extra] [lldb] [libcxx] [openmp] [clang] [compiler-rt] [libc] [flang] [lld] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-17 Thread Ethan Luis McDonough via cfe-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/11] Add profiling functions to libomptar

[Lldb-commits] [llvm] [clang-tools-extra] [lldb] [libcxx] [openmp] [clang] [compiler-rt] [libc] [flang] [lld] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-17 Thread Ethan Luis McDonough via lldb-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/11] Add profiling functions to libomptar

[libcxx] [clang-tools-extra] [clang] [compiler-rt] [openmp] [llvm] [flang] [lld] [libc] [lldb] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-17 Thread Ethan Luis McDonough via cfe-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/10] Add profiling functions to libomptar

[Lldb-commits] [libcxx] [clang-tools-extra] [clang] [compiler-rt] [openmp] [llvm] [flang] [lld] [libc] [lldb] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-17 Thread Ethan Luis McDonough via lldb-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 01/10] Add profiling functions to libomptar

[deal.II] element birth using FE_Nothing and FE_Collection in time-dependent problem with adaptive mesh refinement

2024-01-17 Thread luis miguel reig buades
Hello all, I am trying to add cells to the domain during a time-dependent calculation using mesh refinement. To do so, I made an FE collection and set some cells to FE_Nothing at the beggining and then changed them back to FE_Q at a given time step right after executing

[Desktop-packages] [Bug 2048697] Re: Saving backup server credentials

2024-01-15 Thread Luis
Hey, if I use nautilus I can save passwords correctly. -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to deja-dup in Ubuntu. https://bugs.launchpad.net/bugs/2048697 Title: Saving backup server credentials Status in deja-dup package in

Re: [Starlink] musk on mean latency

2024-01-15 Thread Luis A. Cornejo via Starlink
the better bufferbloat results? -Luis On Mon, Jan 15, 2024 at 9:22 AM Dave Taht via Starlink < starlink@lists.bufferbloat.net> wrote: > I would rather like starlink to get latency for > voip/gaming/videoconferencing down to consistently (99.8%) below 40ms. > > from > https://sp

[kdeconnect] [Bug 479610] kdeconnectd crash after unlocking and locking paired phone

2024-01-15 Thread Luis Paulo Almeida
https://bugs.kde.org/show_bug.cgi?id=479610 Luis Paulo Almeida changed: What|Removed |Added CC||lpgpalme...@gmail.com -- You

Freshrss configuration httpd.conf and fastcgi

2024-01-14 Thread Luis Mendes
eshrss/p/i/ it shows a 403 Forbidden status. I'd also like to understand if the fastcgi strip should be used or not with a request strip option. How do they differ? Should request strip be used only for html or other static files? I'd appreciate some help on this. Thanks in advance, Luis

Re: [spctools-discuss] TPP installation tutorials 404 errors?

2024-01-12 Thread 'Luis Mendoza' via spctools-discuss
Hi Will, Thanks for the reply and extra info. This strange redirects may be connected to IT changes that took place recently; I'll follow up with them. --Luis On Fri, Jan 12, 2024 at 9:57 AM Will Comstock wrote: > Thanks Luis, your direct link works for me! > > Looks like

[lldb] [libc] [compiler-rt] [flang] [libcxx] [clang] [openmp] [llvm] [lld] [clang-tools-extra] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-09 Thread Ethan Luis McDonough via cfe-commits
@@ -959,8 +959,12 @@ void CodeGenPGO::emitCounterIncrement(CGBuilderTy , const Stmt *S, unsigned Counter = (*RegionCounterMap)[S]; - llvm::Value *Args[] = {FuncNameVar, - Builder.getInt64(FunctionHash), + // Make sure that pointer to global is

[Lldb-commits] [lldb] [libc] [compiler-rt] [flang] [libcxx] [clang] [openmp] [llvm] [lld] [clang-tools-extra] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-09 Thread Ethan Luis McDonough via lldb-commits
@@ -959,8 +959,12 @@ void CodeGenPGO::emitCounterIncrement(CGBuilderTy , const Stmt *S, unsigned Counter = (*RegionCounterMap)[S]; - llvm::Value *Args[] = {FuncNameVar, - Builder.getInt64(FunctionHash), + // Make sure that pointer to global is

[Lldb-commits] [lld] [libcxx] [clang-tools-extra] [libc] [flang] [compiler-rt] [lldb] [clang] [openmp] [llvm] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-09 Thread Ethan Luis McDonough via lldb-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 1/9] Add profiling functions to libomptar

[lld] [libcxx] [clang-tools-extra] [libc] [flang] [compiler-rt] [lldb] [clang] [openmp] [llvm] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-09 Thread Ethan Luis McDonough via cfe-commits
https://github.com/EthanLuisMcDonough updated https://github.com/llvm/llvm-project/pull/76587 >From 530eb982b9770190377bb0bd09c5cb715f34d484 Mon Sep 17 00:00:00 2001 From: Ethan Luis McDonough Date: Fri, 15 Dec 2023 20:38:38 -0600 Subject: [PATCH 1/9] Add profiling functions to libomptar

[GIT PULL] Modules changes for v6.8-rc1

2024-01-09 Thread Luis Chamberlain
The following changes since commit ceb6a6f023fd3e8b07761ed900352ef574010bcb: Linux 6.7-rc6 (2023-12-17 15:19:28 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git/ tags/modules-6.8-rc1 for you to fetch changes up to

[Yahoo-eng-team] [Bug 2048745] [NEW] [ovn] FIP not working when mixing vlan and geneve tenant networks

2024-01-08 Thread Luis Tomas
Public bug reported: The flag redirect-type=bridge can only be used when there is no mix of geneve and vlan networks in the same router, as handled here [1]. When there is such a mix, the flag reside-on-redirect-chassis is being used, but it is not working for all cases: - Either you centralize

[Lldb-commits] [flang] [libc] [llvm] [clang] [lld] [lldb] [compiler-rt] [clang-tools-extra] [libcxx] [openmp] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-08 Thread Ethan Luis McDonough via lldb-commits
@@ -58,6 +60,22 @@ class GlobalTy { void setPtr(void *P) { Ptr = P; } }; +typedef void *IntPtrT; +struct __llvm_profile_data { +#define INSTR_PROF_DATA(Type, LLVMType, Name, Initializer) Type Name; +#include "llvm/ProfileData/InstrProfData.inc" +}; + +/// PGO profiling data

[flang] [libc] [llvm] [clang] [lld] [lldb] [compiler-rt] [clang-tools-extra] [libcxx] [openmp] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-08 Thread Ethan Luis McDonough via cfe-commits
@@ -58,6 +60,22 @@ class GlobalTy { void setPtr(void *P) { Ptr = P; } }; +typedef void *IntPtrT; +struct __llvm_profile_data { +#define INSTR_PROF_DATA(Type, LLVMType, Name, Initializer) Type Name; +#include "llvm/ProfileData/InstrProfData.inc" +}; + +/// PGO profiling data

[Hol-info] [ECAI-2024] Deadline for Workshop Proposals approaching (and more!)

2024-01-08 Thread Luis Magdalena
torial proposal, submitting a paper to either the main conference or PAIS, submitting a demo paper, or taking part in the doctoral consortium. -- Luis Magdalena Publicity Chair of the European Conference on Artificial Intelligence (ECAI-2024) ___ ho

[Desktop-packages] [Bug 2048697] [NEW] Saving backup server credentials

2024-01-08 Thread Luis
Public bug reported: If I want to run a backup, I have to enter the username and password for the target backup server over and over again. Even if I set the checkbox Remember password. System: Description:Ubuntu 22.04.3 LTS Release:22.04 deja-dup: Installiert:

[Sprinklerforum] LIGHT-WALL SCH 7 NFPA

2024-01-08 Thread Luis Perea
Hi Everyone, According to NFPA is it permitted to use light-wall sch 7 for branclines? Or sch 10 is a must? Thanks, _ SprinklerForum mailing list:

[clean-list] [ECAI-2024] Deadline for Workshop Proposals approaching (and more!)

2024-01-08 Thread Luis Magdalena via clean-list
torial proposal, submitting a paper to either the main conference or PAIS, submitting a demo paper, or taking part in the doctoral consortium. -- Luis Magdalena Publicity Chair of the European Conference on Artificial Intelligence (ECAI-2024) ___ clea

Re: [R-es] conectar R con base de datos Access

2024-01-08 Thread jose luis via R-help-es
Asi es. Yo el truco que hago mientras no conozca otra herramienta es el siguiente: reinicio R en versión 32. Importo la base de datos como dijo Francisco. Entonces guardo la sesión (Save Workspace As...). Cierro y vuelvo abrir R en modo 64 y cargo la sesión anterior (Load Workspace) y ya puedo

[ceph-users] Re: osd_mclock_max_capacity_iops_hdd in Reef

2024-01-08 Thread Luis Domingues
eploy of Pacific, each OSD pushes its own osd_mclock_max_capacity_iops_hdd, but deploying Reef not. We did not see any values for the OSDs in the ceph config db. In conclusion, we could say, at least on our pre-update tests, that mClock seems to behave a lot better in Reef than in Pacific. Lu

[ceph-users] osd_mclock_max_capacity_iops_hdd in Reef

2024-01-08 Thread Luis Domingues
performances. Did osd_mclock_max_capacity_iops_hdd became useless? I did not found anything regarding it on the changelogs, but I could have miss something. Luis Domingues Proton AG ___ ceph-users mailing list -- ceph-users@ceph.io To unsubscribe send an email

Stalled nfs mount from disk in standby mode

2024-01-07 Thread Luis Mendes
Hi, I'm running a 7.4 amd64 NFS server that has a sd0 spinning disk. Its only partition is encrypted as sd3i. # mount | grep sd3 /dev/sd3i on /wd_4_tb type ffs (NFS exported, local) # cat /etc/exports /wd_4_tb -alldirs -maproot=root -network=192.168.1.0 -mask=255.255.255.0 At the Slackware

Re: [Pdl-general] Changes I noted PDL2.025 -> PDL2.084 - PDL::NiceSlice issue

2024-01-06 Thread Luis Mochan
.167 This means that /2/ is removed incorrectly. The name of the variable ($x and not $y) seems important. --- Regards, Luis On Sun, Jan 07, 2024 at 12:01:27PM +1100, Karl Glazebrook via pdl-general wrote: > > > > On 7 Jan 2024, at 11:55 am, Karl Glazebrook vi

Re: [Pdl-general] Changes I noted PDL2.025 -> PDL2.084 - rcols issue

2024-01-06 Thread Luis Mochan
est > > Karl > > > > ___ > pdl-general mailing list > pdl-general@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/pdl-general --

Re: [Pdl-general] Changes I noted PDL2.025 -> PDL2.084 - rcols issue

2024-01-06 Thread Luis Mochan
t; > > > ___ > pdl-general mailing list > pdl-general@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/pdl-general -- o W. Luis Mochán, | tel:(52)(777)329-1734 /<(*) Instituto de Ciencia

Re: [liberationtech] Does anyone want to take over the Liberationtech list?

2024-01-06 Thread Jose Luis Mendoza Marquez
Thank you very much for all the work done, I think it can be useful to keep the list and I offer our servers that we have with https://www.digitalocean.com/ and create a group to manage if they see fit ___ José Luis Mendoza

[clang] [libc] [lld] [openmp] [llvm] [flang] [libcxx] [lldb] [compiler-rt] [clang-tools-extra] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-04 Thread Ethan Luis McDonough via cfe-commits
@@ -163,3 +163,87 @@ Error GenericGlobalHandlerTy::readGlobalFromImage(GenericDeviceTy , return Plugin::success(); } + +bool GenericGlobalHandlerTy::hasProfilingGlobals(GenericDeviceTy , + DeviceImageTy ) { + GlobalTy

[Lldb-commits] [clang] [libc] [lld] [openmp] [llvm] [flang] [libcxx] [lldb] [compiler-rt] [clang-tools-extra] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-04 Thread Ethan Luis McDonough via lldb-commits
@@ -163,3 +163,87 @@ Error GenericGlobalHandlerTy::readGlobalFromImage(GenericDeviceTy , return Plugin::success(); } + +bool GenericGlobalHandlerTy::hasProfilingGlobals(GenericDeviceTy , + DeviceImageTy ) { + GlobalTy

[clang-tools-extra] [openmp] [libc] [compiler-rt] [llvm] [clang] [lld] [flang] [libcxx] [lldb] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-04 Thread Ethan Luis McDonough via cfe-commits
@@ -163,3 +163,87 @@ Error GenericGlobalHandlerTy::readGlobalFromImage(GenericDeviceTy , return Plugin::success(); } + +bool GenericGlobalHandlerTy::hasProfilingGlobals(GenericDeviceTy , + DeviceImageTy ) { + GlobalTy

[Lldb-commits] [clang-tools-extra] [openmp] [libc] [compiler-rt] [llvm] [clang] [lld] [flang] [libcxx] [lldb] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-04 Thread Ethan Luis McDonough via lldb-commits
@@ -163,3 +163,87 @@ Error GenericGlobalHandlerTy::readGlobalFromImage(GenericDeviceTy , return Plugin::success(); } + +bool GenericGlobalHandlerTy::hasProfilingGlobals(GenericDeviceTy , + DeviceImageTy ) { + GlobalTy

[openmp] [clang] [lldb] [libc] [compiler-rt] [libcxx] [flang] [lld] [clang-tools-extra] [llvm] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-04 Thread Ethan Luis McDonough via cfe-commits
@@ -163,3 +163,87 @@ Error GenericGlobalHandlerTy::readGlobalFromImage(GenericDeviceTy , return Plugin::success(); } + +bool GenericGlobalHandlerTy::hasProfilingGlobals(GenericDeviceTy , + DeviceImageTy ) { + GlobalTy

[Lldb-commits] [openmp] [clang] [lldb] [libc] [compiler-rt] [libcxx] [flang] [lld] [clang-tools-extra] [llvm] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-04 Thread Ethan Luis McDonough via lldb-commits
@@ -163,3 +163,87 @@ Error GenericGlobalHandlerTy::readGlobalFromImage(GenericDeviceTy , return Plugin::success(); } + +bool GenericGlobalHandlerTy::hasProfilingGlobals(GenericDeviceTy , + DeviceImageTy ) { + GlobalTy

[clang] [libc] [lld] [openmp] [llvm] [flang] [libcxx] [lldb] [compiler-rt] [clang-tools-extra] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-04 Thread Ethan Luis McDonough via cfe-commits
@@ -58,6 +60,22 @@ class GlobalTy { void setPtr(void *P) { Ptr = P; } }; +typedef void *IntPtrT; EthanLuisMcDonough wrote: `IntPtrT` isn't defined in `profile/InstrProfData.inc`. There are multiple examples of this type being defined. before

[Lldb-commits] [clang] [libc] [lld] [openmp] [llvm] [flang] [libcxx] [lldb] [compiler-rt] [clang-tools-extra] [PGO][OpenMP] Instrumentation for GPU devices (PR #76587)

2024-01-04 Thread Ethan Luis McDonough via lldb-commits
@@ -58,6 +60,22 @@ class GlobalTy { void setPtr(void *P) { Ptr = P; } }; +typedef void *IntPtrT; EthanLuisMcDonough wrote: `IntPtrT` isn't defined in `profile/InstrProfData.inc`. There are multiple examples of this type being defined. before

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