[RFC PATCH 15/15] powerpc/ftrace: Add support for -fpatchable-function-entry

2023-06-07 Thread Naveen N Rao
'. Signed-off-by: Naveen N Rao --- arch/powerpc/Kconfig | 14 +++--- arch/powerpc/Makefile | 5 arch/powerpc/include/asm/ftrace.h | 6 +++-- arch/powerpc/include/asm/vermagic.h | 4 ++- arch/powerpc/kernel

[RFC PATCH 14/15] powerpc/ftrace: Implement ftrace_replace_code()

2023-06-07 Thread Naveen N Rao
should no longer be called. This lays the groundwork to enable better control in patching ftrace locations, including the ability to nop-out preceding profiling instructions when ftrace is disabled. Signed-off-by: Naveen N Rao --- arch/powerpc/kernel/trace/ftrace.c | 173

[RFC PATCH 13/15] powerpc/ftrace: Replace use of ftrace_call_replace() with ftrace_create_branch_inst()

2023-06-07 Thread Naveen N Rao
ftrace_create_branch_inst() is clearer about its intent than ftrace_call_replace(). Signed-off-by: Naveen N Rao --- arch/powerpc/kernel/trace/ftrace.c | 17 ++--- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/arch/powerpc/kernel/trace/ftrace.c b/arch/powerpc/kernel

[RFC PATCH 12/15] powerpc/ftrace: Simplify ftrace_modify_call()

2023-06-07 Thread Naveen N Rao
instruction at the ftrace location before patching it with the updated branch destination. Signed-off-by: Naveen N Rao --- arch/powerpc/kernel/trace/ftrace.c | 161 - 1 file changed, 21 insertions(+), 140 deletions(-) diff --git a/arch/powerpc/kernel/trace/ftrace.c b

[RFC PATCH 11/15] powerpc/ftrace: Simplify ftrace_make_call()

2023-06-07 Thread Naveen N Rao
patching it. Signed-off-by: Naveen N Rao --- arch/powerpc/kernel/trace/ftrace.c | 187 + 1 file changed, 31 insertions(+), 156 deletions(-) diff --git a/arch/powerpc/kernel/trace/ftrace.c b/arch/powerpc/kernel/trace/ftrace.c index 67773cd14da71a..8d5d91b8ae85a0 100644

[RFC PATCH 00/15] powerpc/ftrace: refactoring and support for -fpatchable-function-entry

2023-06-07 Thread Naveen N Rao
This is a follow-on RFC to the patch I previously posted here: http://lore.kernel.org/20230519192600.2593506-1-nav...@kernel.org Since then, I have split up the patches, picked up a few more changes and given this more testing. More details in the individual patches. - Naveen Naveen N Rao

[jira] [Resolved] (HIVE-27398) SHOW CREATE TABLE doesn't output backticks for CLUSTERED by Col names

2023-06-06 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27398?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam resolved HIVE-27398. -- Fix Version/s: 4.0.0 Resolution: Fixed Fix has been merged to master. Thank you

Re: when to expect next apache hive-exec 3.1.x addressing security fixes?

2023-06-05 Thread Naveen Gangam
Hi Kiran, Aman Raj is managing a 3.x release with some of these CVEs addressed and rebasing some dependencies as well. Please reach out to him for tentative timelines. Thank you Naveen On Mon, Jun 5, 2023 at 6:39 AM Kiran Shridhar via security < secur...@hive.apache.org> wrote: &g

[PATCH] powerpc/tools: Pass -mabi=elfv2 to gcc-check-mprofile-kernel.sh

2023-05-30 Thread Naveen N Rao
Toolchains don't always default to the ELFv2 ABI. This is true with at least the kernel.org toolchains. As such, pass -mabi=elfv2 explicitly to ensure that we are testing against the correct compiler output. Signed-off-by: Naveen N Rao --- The script works fine without this change, so

[yocto] [meta-zephyr][PATCH] zephyr-kernel-src-3.3.0: fix build with gcc-13

2023-05-30 Thread Naveen Saini
ed to include folder. https://gcc.gnu.org/git/gitweb.cgi?p=gcc.git;h=be9dd80f933480 Signed-off-by: Naveen Saini --- ...c-target.cmake-fix-build-with-gcc-13.patch | 54 +++ .../zephyr-kernel/zephyr-kernel-src-3.3.0.inc | 1 + 2 files changed, 55 insertions(+) create mode 1006

Re: [PATCH] powerpc: Fail build if using recordmcount with binutils v2.37

2023-05-30 Thread Naveen N Rao
Michael Ellerman wrote: Naveen N Rao writes: binutils v2.37 drops unused section symbols, which prevents recordmcount from capturing mcount locations in sections that have no non-weak symbols. This results in a build failure with a message such as: Cannot find symbol for section 12

[PATCH v2] powerpc: Fail build if using recordmcount with binutils v2.37

2023-05-30 Thread Naveen N Rao
to recordmcount. Fail the build and print a warning if binutils v2.37 is detected and if we are using recordmcount. Cc: sta...@vger.kernel.org Suggested-by: Joel Stanley Signed-off-by: Naveen N Rao --- v2: Check directly against $CONFIG_LD_VERSION arch/powerpc/Makefile | 8 1 file changed, 8

[PATCH] powerpc: Fail build if using recordmcount with binutils v2.37

2023-05-29 Thread Naveen N Rao
to recordmcount. Fail the build and print a warning if binutils v2.37 is detected and if we are using recordmcount. Cc: sta...@vger.kernel.org Suggested-by: Joel Stanley Signed-off-by: Naveen N Rao --- arch/powerpc/Makefile | 8 1 file changed, 8 insertions(+) diff --git a/arch/powerpc/Makefile b

[jira] [Resolved] (HIVE-27311) Improve LDAP auth to support generic search bind authentication

2023-05-24 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27311?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam resolved HIVE-27311. -- Fix Version/s: 4.0.0 Resolution: Fixed Thank you for the review. Fix has been merged

Re: [RFC PATCH] powerpc/ftrace: Refactoring and support for -fpatchable-function-entry

2023-05-23 Thread Naveen N Rao
difference left is the ftrace_rec iterator. - Naveen --- arch/powerpc/kernel/trace/ftrace.c | 55 +- 1 file changed, 23 insertions(+), 32 deletions(-) diff --git a/arch/powerpc/kernel/trace/ftrace.c b/arch/powerpc/kernel/trace/ftrace.c index a9d57f338bd78e

[meta-intel] [PATCH] thermald: depend on autoconf-archive-native

2023-05-22 Thread Naveen Saini
configure: error: AX_CHECK_COMPILE_FLAG not found, you'll need to install autoconf-archive Signed-off-by: Naveen Saini --- .../openembedded-layer/recipes-bsp/thermald/thermald_2.5.2.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dynamic-layers/openembedded-layer/recipes-bsp

Re: [RFC PATCH] powerpc/ftrace: Refactoring and support for -fpatchable-function-entry

2023-05-20 Thread Naveen N Rao
Christophe Leroy wrote: Le 19/05/2023 à 21:26, Naveen N Rao a écrit : [Vous ne recevez pas souvent de courriers de nav...@kernel.org. Découvrez pourquoi ceci est important à https://aka.ms/LearnAboutSenderIdentification ] Refactor ftrace code and move to using ftrace_replace_code() to help

Re: [RFC PATCH] powerpc/ftrace: Refactoring and support for -fpatchable-function-entry

2023-05-20 Thread Naveen N Rao
Christophe Leroy wrote: Le 20/05/2023 à 12:34, Christophe Leroy a écrit : Le 19/05/2023 à 21:26, Naveen N Rao a écrit : [Vous ne recevez pas souvent de courriers de nav...@kernel.org. Découvrez pourquoi ceci est important à https://aka.ms/LearnAboutSenderIdentification ] Refactor ftrace

[RFC PATCH] powerpc/ftrace: Refactoring and support for -fpatchable-function-entry

2023-05-19 Thread Naveen N Rao
/ - https://lore.kernel.org/all/20230506011814.8766-1-npig...@gmail.com/ This builds for me and passes a quick test, posting this as an early RFC. Signed-off-by: Naveen N Rao --- arch/powerpc/Kconfig | 10 + arch/powerpc/Makefile | 5 + arch/powerpc

[meta-intel] [kirkstone][PATCH 2/3] onevpl: fix onevpl-examples packaging

2023-05-19 Thread Naveen Saini
Currently vpl/examples are not being installed in examples pkg. Signed-off-by: Naveen Saini --- recipes-multimedia/onevpl/onevpl_2022.0.3.bb | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/recipes-multimedia/onevpl/onevpl_2022.0.3.bb b/recipes-multimedia/onevpl

[meta-intel] [kirkstone][PATCH 1/3] openvkl: disable avx ISAs for intel-corei7-64 machine

2023-05-19 Thread Naveen Saini
It enables them by default instead of checking based on what is supported. openvklTest throws following error: SIGILL - Illegal instruction signal Signed-off-by: Naveen Saini Signed-off-by: Anuj Mittal (cherry picked from commit 2b37e2a69cfe0a46c3f52c7f333a9a60b03dcdc3) Signed-off-by: Naveen

[meta-intel] [kirkstone][PATCH 3/3] ispc: fix run_tests.py test script

2023-05-19 Thread Naveen Saini
sizes: bad value Backport patch. Signed-off-by: Naveen Saini --- ...osition-independent-code-for-testing.patch | 42 +++ .../recipes-core/ispc/ispc_1.17.0.bb | 1 + 2 files changed, 43 insertions(+) create mode 100644 dynamic-layers/clang-layer/recipes-core/ispc/ispc

[Koha] Problem Sharing Lists on Koha

2023-05-18 Thread Ms. Naveen Ali
unity.org/manual//22.05/en/html/lists.html#viewing-lists . The "Share List" option is not shown there. Secondly, if the option is no longer available, how can I customize the message being sent in the email using the "Send List" Option. Thank you very much for your time. Wit

[yocto] [meta-zephyr][master][mickledore][PATCH] zephyr-kernel: Include efi binary generation fix for Raptor Lake too

2023-05-10 Thread Naveen Saini
Extend patch to include efi binary generation issue fix for x86 Raptor Lake board too. Signed-off-by: Naveen Saini --- ...ry-generation-issue-in-cross-compila.patch | 19 --- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/meta-zephyr-core/recipes-kernel/zephyr

Re: [PATCH] powerpc/64: Use -mprofile-kernel for big endian ELFv2 kernels

2023-05-09 Thread Naveen N. Rao
Nicholas Piggin wrote: -mprofile-kernel is an optimised calling convention for mcount that Linux has only implemented with the ELFv2 ABI, so it was disabled for big endian kernels. However it does work with ELFv2 big endian, so let's allow that if the compiler supports it. Cc: Naveen N. Rao

[jira] [Updated] (HIVE-27138) MapJoinOperator throws NPE when computing OuterJoin with filter expressions on small table

2023-05-08 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27138?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-27138: - Priority: Blocker (was: Major) > MapJoinOperator throws NPE when computing OuterJ

[jira] [Updated] (HIVE-27269) VectorizedMapJoin returns wrong result for TPC-DS query 97

2023-05-08 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27269?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-27269: - Labels: hive-4.0.0-must (was: ) > VectorizedMapJoin returns wrong result for TPC-DS query

[jira] [Updated] (HIVE-27269) VectorizedMapJoin returns wrong result for TPC-DS query 97

2023-05-08 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27269?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-27269: - Priority: Blocker (was: Major) > VectorizedMapJoin returns wrong result for TPC-DS query

Re: [PATCH 0/4] powerpc/64: ELFv2 conversion

2023-05-05 Thread Naveen N. Rao
does help cleaning up and simplifying some of the tracing code. Much of the -pg code is already separate, so it should be easy to drop that once clang picks up support for -fpatchable-function-entry. - Naveen

Re: [ovs-dev] [PATCH v4] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-05-05 Thread Naveen Yerramneni
Hi IIya, Thanks for the review. One question, once vswitchd DB schema is updated to store zone level limits. OVN controller should directly update the configuration in the database , right ? Thanks, Naveen On 04-May-2023, at 3:33 PM, Ilya Maximets mailto:i.maxim...@ovn.org>> wrote:

[meta-intel] [PATCH] onevpl: fix onevpl-examples packaging

2023-05-05 Thread Naveen Saini
Currently vpl/examples are not being installed in examples pkg. Signed-off-by: Naveen Saini --- recipes-multimedia/onevpl/onevpl_2023.1.1.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes-multimedia/onevpl/onevpl_2023.1.1.bb b/recipes-multimedia/onevpl

[jira] [Created] (HIVE-27311) Improve LDAP auth to support generic search bind authentication

2023-05-03 Thread Naveen Gangam (Jira)
Naveen Gangam created HIVE-27311: Summary: Improve LDAP auth to support generic search bind authentication Key: HIVE-27311 URL: https://issues.apache.org/jira/browse/HIVE-27311 Project: Hive

[jira] [Updated] (HIVE-25205) Reduce overhead of adding write notification log during batch loading of partition..

2023-05-01 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-25205?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-25205: - External issue URL: https://github.com/apache/hive/pull/2357 > Reduce overhead of adding wr

[jira] [Commented] (HIVE-25205) Reduce overhead of adding write notification log during batch loading of partition..

2023-05-01 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-25205?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17718289#comment-17718289 ] Naveen Gangam commented on HIVE-25205: -- Merged via https://github.com/apache/hive/pull/2357

[jira] [Updated] (HIVE-25205) Reduce overhead of adding write notification log during batch loading of partition..

2023-05-01 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-25205?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-25205: - Fix Version/s: 4.0.0 > Reduce overhead of adding write notification log during batch load

[jira] [Resolved] (HIVE-27289) Check for proxy hosts with subnet in IP results in exception

2023-04-26 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam resolved HIVE-27289. -- Fix Version/s: 4.0.0 Resolution: Fixed Merged to master. > Check for proxy ho

Re: [PATCH v2] powerpc/bpf: populate extable entries only during the last pass

2023-04-25 Thread Naveen N. Rao
a...@vger.kernel.org Signed-off-by: Hari Bathini --- arch/powerpc/net/bpf_jit_comp.c | 2 ++ 1 file changed, 2 insertions(+) Reviewed-by: Naveen N. Rao - Naveen diff --git a/arch/powerpc/net/bpf_jit_comp.c b/arch/powerpc/net/bpf_jit_comp.c index e93aefcfb83f..37043dfc1add 100644 --

[jira] [Created] (HIVE-27289) Check for proxy hosts with subnet in IP results in exception

2023-04-24 Thread Naveen Gangam (Jira)
Naveen Gangam created HIVE-27289: Summary: Check for proxy hosts with subnet in IP results in exception Key: HIVE-27289 URL: https://issues.apache.org/jira/browse/HIVE-27289 Project: Hive

Re: [PATCH] powerpc/bpf: populate extable entries only during the last pass

2023-04-24 Thread Naveen N. Rao
EMIT(PPC_RAW_LI(dst_reg_h, 0)); - if (BPF_MODE(code) == BPF_PROBE_MEM) { + if (BPF_MODE(code) == BPF_PROBE_MEM && !extra_pass) { It is probably better to pass 'extra_pass' into bpf_add_extable_entry() to keep all those checks together. - Naveen

[jira] [Commented] (HIVE-27262) Hive metastore changelog for Authorization operations

2023-04-21 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17715107#comment-17715107 ] Naveen Gangam commented on HIVE-27262: -- [~bharos92] HMS does not natively have a separate audit log

Re: [ovs-dev] [PATCH v4] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-04-18 Thread Naveen Yerramneni
Hi Team, Could someone please look into this and merge if everything looks good ? Thanks, Naveen > On 30-Mar-2023, at 1:47 PM, Naveen Yerramneni > wrote: > > Add OpenFlow extn to set conntrack entries limit per zone. > This extn will be used in future to set the zone level l

[jira] [Resolved] (HIVE-25073) Optimise HiveAlterHandler::alterPartitions

2023-04-12 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-25073?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam resolved HIVE-25073. -- Resolution: Cannot Reproduce Closing based on the comment above. > Optimise HiveAlterHand

[jira] [Resolved] (HIVE-25707) SchemaTool may leave the metastore in-between upgrade steps

2023-04-11 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-25707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam resolved HIVE-25707. -- Fix Version/s: 4.0.0 Resolution: Fixed A patch has been merged that turns off

[jira] [Assigned] (HIVE-25707) SchemaTool may leave the metastore in-between upgrade steps

2023-04-11 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-25707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam reassigned HIVE-25707: Assignee: Zhihua Deng > SchemaTool may leave the metastore in-between upgrade st

[linux-yocto] [kernel-cache][PATCH] features: drop RANDOM_TRUST_CPU

2023-04-11 Thread Naveen Saini
This option is no longer present in v6.2-rcx as the following commit removed it: https://github.com/torvalds/linux/commit/b9b01a5625b5a9e9d96d14d4a813a54e8a124f4b Signed-off-by: Naveen Saini --- bsp/intel-common/intel-common-drivers.scc | 1 - features/random/random.cfg| 2

[jira] [Resolved] (HIVE-27173) Add method for Spark to be able to trigger DML events

2023-04-10 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam resolved HIVE-27173. -- Fix Version/s: 4.0.0 Resolution: Fixed Fix has been merged to master. > Add met

[jira] [Assigned] (HIVE-27173) Add method for Spark to be able to trigger DML events

2023-04-10 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam reassigned HIVE-27173: Assignee: Naveen Gangam > Add method for Spark to be able to trigger DML eve

[meta-intel] [PATCH 1/2] maintainers.inc: include entry for intel-cmt-cat

2023-04-06 Thread Naveen Saini
Re-arranged entry for intel-graphics-compiler to align with alphabetical order. Signed-off-by: Naveen Saini --- conf/include/maintainers.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conf/include/maintainers.inc b/conf/include/maintainers.inc index 3a94b3e7..5a9c819f

[meta-intel] [PATCH 2/2] onedpl: upgrade 2021.7.0 -> 2022.0.0

2023-04-06 Thread Naveen Saini
Release notes: https://github.com/oneapi-src/oneDPL/releases/tag/oneDPL-2022.0.0-release Signed-off-by: Naveen Saini --- .../onedpl/{onedpl_2021.7.0.bb => onedpl_2022.0.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename recipes-oneapi/onedpl/{onedpl_2021.7.0

Re: [meta-intel][PATCH] intel-cmt-cat: add recipe

2023-04-05 Thread Naveen Saini
Merged. Thanks. > -Original Message- > From: Liu, Yongxin > Sent: Tuesday, April 4, 2023 10:56 AM > To: Saini, Naveen Kumar ; Mittal, Anuj > ; meta-intel@lists.yoctoproject.org > Subject: RE: [meta-intel][PATCH] intel-cmt-cat: add recipe > > > -Original M

Re: [meta-intel][PATCH] intel-cmt-cat: add recipe

2023-04-03 Thread Naveen Saini
> -Original Message- > From: meta-intel@lists.yoctoproject.org > On Behalf Of Yongxin Liu > Sent: Monday, April 3, 2023 3:06 PM > To: Mittal, Anuj ; meta-intel@lists.yoctoproject.org > Subject: [meta-intel][PATCH] intel-cmt-cat: add recipe > > This software package provides basic

[ovs-dev] [PATCH v4] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-03-30 Thread Naveen Yerramneni
Add OpenFlow extn to set conntrack entries limit per zone. This extn will be used in future to set the zone level limit for drop zones used by OVN. Signed-off-by: Naveen Yerramneni Reviewed-by: Simon Horman --- Notes: v1 -> v2 - Fix memory leak and added logs v2 -> v3 - Addresse

[Touch-packages] [Bug 2012943] Re: Systemd-resolved is crashing

2023-03-28 Thread Naveen chand
Hi Nick, The setup is having multiple devices with the same configuration connected to a network. If you need more details about his please go through the below bug. https://bugs.launchpad.net/shiner/+bug/2001620 Regards, Naveen -- You received this bug notification because you are a member

Re: [Koha] Add time lapse between notices when sending emails.

2023-03-28 Thread Ms. Naveen Ali
Thank you. Will do so.. With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. - Original Message - From: "Katrin Fischer" To: koha@lists.katipo.co.nz Sent: Saturday, 25 March, 2023 1:45:19 AM Subject: Re:

[Touch-packages] [Bug 2012943] Re: Systemd-resolved is crashing

2023-03-28 Thread Naveen chand
The system is hung due to system-resolved crash ``` Dec 16 12:51:21 TREND-24-AF-7A systemd[1]: Started Time & Date Service. Dec 16 12:51:24 TREND-24-AF-7A systemd[1]: systemd-resolved.service: Main process exited, code=killed, status=11/SEGV ``` also the system-resolved service is aborted. ```

Re: [meta-intel] [PATCH] openvkl: disable avx ISAs for intel-corei7-64 machine

2023-03-28 Thread Naveen Saini
> -Original Message- > From: Böszörményi Zoltán > Sent: Tuesday, March 28, 2023 3:12 PM > To: Saini, Naveen Kumar ; meta- > in...@lists.yoctoproject.org > Subject: Re: [meta-intel] [PATCH] openvkl: disable avx ISAs for intel-corei7- > 64 machine > > 202

[meta-intel] [PATCH] openvkl: disable avx ISAs for intel-corei7-64 machine

2023-03-27 Thread Naveen Saini
It enables them by default instead of checking based on what is supported. openvklTest throws following error: SIGILL - Illegal instruction signal Signed-off-by: Naveen Saini --- .../recipes-oneapi/openvkl/openvkl_1.3.2.bb | 6 ++ 1 file changed, 6 insertions(+) diff --git

[Touch-packages] [Bug 2012943] [NEW] Systemd-resolved is crashing

2023-03-27 Thread Naveen chand
Public bug reported: [ Impact ] The continuous systemd-resolved crashes delay/hang the device startup. And this leads to unresponsive devices in the system. [ Test Plan ] The exact steps to reproduce this issue are still not known. But we see this crash only in Static IP Addressing mode

[jira] [Created] (HIVE-27173) Add method for Spark to be able to trigger DML events

2023-03-24 Thread Naveen Gangam (Jira)
Naveen Gangam created HIVE-27173: Summary: Add method for Spark to be able to trigger DML events Key: HIVE-27173 URL: https://issues.apache.org/jira/browse/HIVE-27173 Project: Hive Issue

[dspace-community] unable to build mvn package in ubuntu server 22.04

2023-03-24 Thread 'NAVEEN “the-crHack”' via DSpace Community
Hi all, I'm trying to build the mvn package but its isn't working on the server. but when i try to build the same in my local machine(Ubuntu 22.04) its working properly. Could anyone please help me out with this? Thank you in advance. -- Disclaimer:- This footer text is to convey that this

Re: [prometheus-users] Re: How to define metric type as a variable

2023-03-24 Thread Agarwal ,Naveen
ically: make a script that writes out a rules file, then hits the reload<https://prometheus.io/docs/prometheus/latest/management_api/#reload> endpoint. On Friday, 24 March 2023 at 00:57:16 UTC Agarwal ,Naveen wrote: Hi: Our prometheus database contains around 5k+ unique type of metrics. Wi

[meta-intel] [PATCH] intel-oneapi-ipp: install headers

2023-03-23 Thread Naveen Saini
Required when building applications with ipp. Signed-off-by: Naveen Saini --- .../recipes-oneapi/ipp/intel-oneapi-ipp_2021.7.0-25396.bb | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dynamic-layers/openembedded-layer/recipes-oneapi/ipp/intel-oneapi-ipp_2021.7.0

[prometheus-users] How to define metric type as a variable

2023-03-23 Thread Agarwal ,Naveen
mes are picked from database. Thanks, Naveen Sent from Outlook for Android<https://aka.ms/AAb9ysg> -- You received this message because you are subscribed to the Google Groups "Prometheus Users" group. To unsubscribe from this group and stop receiving emails from it, send an email

[jira] [Resolved] (HIVE-27147) HS2 is not accessible to clients via zookeeper when hostname used is not FQDN

2023-03-23 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27147?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam resolved HIVE-27147. -- Fix Version/s: 4.0.0 Resolution: Fixed Merged to master. Thank you. for the fix

[jira] [Assigned] (HIVE-27147) HS2 is not accessible to clients via zookeeper when hostname used is not FQDN

2023-03-23 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27147?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam reassigned HIVE-27147: Assignee: Venugopal Reddy K > HS2 is not accessible to clients via zookeeper w

[jira] [Assigned] (HIVE-27163) Column stats are not getting published after an insert query into an external table with custom location

2023-03-21 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-27163?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam reassigned HIVE-27163: Assignee: Zhihua Deng > Column stats are not getting published after an insert qu

[Koha] Add time lapse between notices when sending emails.

2023-03-21 Thread Ms. Naveen Ali
this? With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. ___ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz Unsubscribe: https://lists.katipo.co.nz/mailman

[jira] [Commented] (HIVE-26999) Upgrade MySQL Connector Java due to security CVEs

2023-03-20 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26999?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17702794#comment-17702794 ] Naveen Gangam commented on HIVE-26999: -- Merged to master. Closing the jira. THank you

[jira] [Resolved] (HIVE-26999) Upgrade MySQL Connector Java due to security CVEs

2023-03-20 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26999?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam resolved HIVE-26999. -- Fix Version/s: 4.0.0 Resolution: Fixed > Upgrade MySQL Connector Java due to secur

Re: [Koha] LongOverdue cronjob

2023-03-20 Thread Ms. Naveen Ali
Great. Thanks a lot. With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. - Original Message - From: "Katrin Fischer" To: koha@lists.katipo.co.nz Sent: Saturday, 18 March, 2023 10:51:41 PM Subject:

Re: [Koha] Stop Acquisition & Suggestion Module Notices

2023-03-20 Thread Ms. Naveen Ali
Thank you very much. This saved me a lot of time and effort. With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. - Original Message - From: "Katrin Fischer" To: koha@lists.katipo.co.nz Sent: Saturday

[Koha] LongOverdue cronjob

2023-03-17 Thread Ms. Naveen Ali
o I have to schedule it myself ? With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. ___ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz Unsubscribe: https:

[meta-intel] [PATCH 4/4] ospray: upgrade 2.10.0 -> 2.11.0

2023-03-17 Thread Naveen Saini
Added entry for Intel(R) Implicit SPMD Program Compiler (ISPC) in third-party-programs.txt. Target ospray_module_cpu library build need libispcrt from ispc, so added ispc also to DEPENDS. Signed-off-by: Naveen Saini --- .../ospray/{ospray_2.10.0.bb => ospray_2.11.0.bb} | 6 +++---

[meta-intel] [PATCH 2/4] embree: upgrade 3.13.5 -> 4.0.1

2023-03-17 Thread Naveen Saini
Turn off EMBREE_ZIP_MODE, which ships environement scrpit for build env setup. Removed duplicate DEMBREE_ISPC_SUPPORT configuration. checksum update: Added entry for Intel(R) oneAPI DPC++/C++ compiler in third-party-programs.txt. Signed-off-by: Naveen Saini --- .../embree/{embree_3.13.5.bb

[meta-intel] [PATCH 1/4] rkcommon: upgrade 1.10.0 -> 1.11.0

2023-03-17 Thread Naveen Saini
Signed-off-by: Naveen Saini --- .../rkcommon/{rkcommon_1.10.0.bb => rkcommon_1.11.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename dynamic-layers/openembedded-layer/recipes-oneapi/rkcommon/{rkcommon_1.10.0.bb => rkcommon_1.11.0.bb} (91%) diff --git a/dynamic-

[meta-intel] [PATCH 3/4] openvkl: upgrade 1.3.0 -> 1.3.2

2023-03-17 Thread Naveen Saini
Signed-off-by: Naveen Saini --- .../openvkl/{openvkl_1.3.0.bb => openvkl_1.3.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename dynamic-layers/openembedded-layer/recipes-oneapi/openvkl/{openvkl_1.3.0.bb => openvkl_1.3.2.bb} (96%) diff --git a/dynamic-

[ovs-dev] [PATCH v3] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-03-16 Thread Naveen Yerramneni
Signed-off-by: Naveen Yerramneni Reviewed-by: Simon Horman --- Notes: v1 -> v2 - Fix memory leak and added logs v2 -> v3 - Addressed nits NEWS | 2 ++ include/openflow/nicira-ext.h | 10 ++ include/openvswitch/ofp-msgs.h | 4 lib/ofp-bu

Re: [ovs-dev] [PATCH v2] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-03-15 Thread Naveen Yerramneni
Hi Simon, Thanks for the update. I will send v3 with nits addreesed. Thanks, Naveen > On 15-Mar-2023, at 2:24 PM, Simon Horman wrote: > > On Wed, Mar 15, 2023 at 08:27:40AM +0000, Naveen Yerramneni wrote: >> Hi Simon, >> >> Thanks, I will wait for your review. &

Re: [Koha] Koha Export Data Options

2023-03-15 Thread Ms. Naveen Ali
://snapshooter.com/docs/fixing-mysqldump-couldn-t-execute-flush-tables-access-denied Best Regards. - Original Message - From: "Ms. Naveen Ali" To: koha@lists.katipo.co.nz Cc: "jonathan druart" Sent: Thursday, 9 March, 2023 9:47:24 AM Subject: Re: [Koha] Koha

Re: [Koha] Overdue Notices and Advance notices not being run by crontab

2023-03-15 Thread Ms. Naveen Ali
Thanks a lot for the reply. It seems to be the case. My notices are working now..:) With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. - Original Message - From: "Katrin Fischer" To: koha@lists.katipo.

Re: [Koha] Stop Acquisition & Suggestion Module Notices

2023-03-15 Thread Ms. Naveen Ali
Dear Kartrin, Thank you very much for your reply. If I want to use them at a later stage, can I just add a new notice with the specific letter codes of 'ACCEPTED', 'ORDERED', etc and specific Module of 'Suggestions' and they will start working?? With best regards, Naveen Ali ITM-JE

Re: [ovs-dev] [PATCH v2] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-03-15 Thread Naveen Yerramneni
Hi Simon, Thanks, I will wait for your review. Multiple patches were sent out due to my mistake, my apologies for that. Thanks, Naveen > On 14-Mar-2023, at 6:17 PM, Simon Horman wrote: > > On Tue, Mar 14, 2023 at 10:51:55AM +0000, Naveen Yerramneni wrote: >> Add OpenF

[Koha] Overdue Notices and Advance notices not being run by crontab

2023-03-15 Thread Ms. Naveen Ali
are queued. How do I resolve this problem that the scripts are run automatically along with all the others With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. ___ Koha mailing

[ovs-dev] [PATCH v2] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-03-14 Thread Naveen Yerramneni
Add OpenFlow extn to set conntrack entries limit per zone. Signed-off-by: Naveen Yerramneni --- Notes: v1 -> v2 - Fix memory leak and added logs NEWS | 2 ++ include/openflow/nicira-ext.h | 10 ++ include/openvswitch/ofp-msgs.h | 4 lib/

[Koha] Stop Acquisition & Suggestion Module Notices

2023-03-14 Thread Ms. Naveen Ali
not wish to send them emails unless they wish for it. With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. ___ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz

Re: [linux-yocto] [kernel-cache][PATCH 10/11] common-pc: Enable DesignWare PWM & SPI Controller support

2023-03-13 Thread Naveen Saini
> -Original Message- > From: linux-yocto@lists.yoctoproject.org yo...@lists.yoctoproject.org> On Behalf Of Bruce Ashfield > Sent: Thursday, March 9, 2023 5:51 AM > To: Saini, Naveen Kumar > Cc: linux-yocto@lists.yoctoproject.org > Subject: Re: [linux-yocto] [kern

Re: [linux-yocto] [kernel-cache][PATCH 01/11] features: drop RANDOM_TRUST_CPU

2023-03-13 Thread Naveen Saini
Hi Bruce, Thank you for reviewing. > -Original Message- > From: Bruce Ashfield > Sent: Thursday, March 9, 2023 6:00 AM > To: Saini, Naveen Kumar > Cc: linux-yocto@lists.yoctoproject.org > Subject: Re: [linux-yocto] [kernel-cache][PATCH 01/11] features: drop > RAN

[ovs-dev] [PATCH] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-03-13 Thread Naveen Yerramneni
From: "naveen.yerramneni" Add OpenFlow extension to set conntrack entries limit at zone level. Signed-off-by: Naveen Yerramneni --- NEWS | 2 ++ include/openflow/nicira-ext.h | 10 ++ include/openvswitch/ofp-msgs.h | 4 lib/of

[ovs-dev] [PATCH] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-03-13 Thread Naveen Yerramneni
From: "naveen.yerramneni" Add OpenFlow extension to set conntrack entries limit at zone level. Signed-off-by: Naveen Yerramneni --- NEWS | 2 ++ include/openflow/nicira-ext.h | 10 ++ include/openvswitch/ofp-msgs.h | 4 lib/of

[ovs-dev] [PATCH v1] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-03-13 Thread Naveen Yerramneni
Add extension to set conntrack entries limit per zone. Signed-off-by: Naveen Yerramneni --- Notes: v1 - Fix datatype used for zone limit. NEWS | 2 ++ include/openflow/nicira-ext.h | 10 ++ include/openvswitch/ofp-msgs.h | 4 lib/ofp-bundle.c

[ovs-dev] [PATCH] OpenFlow: Add extn to set conntrack entries limit per zone.

2023-03-13 Thread Naveen Yerramneni
From: "naveen.yerramneni" Add OpenFlow extension to set conntrack entries limit at zone level. Signed-off-by: Naveen Yerramneni --- NEWS | 2 ++ include/openflow/nicira-ext.h | 10 ++ include/openvswitch/ofp-msgs.h | 4 lib/of

Re: [Koha] Koha Export Data Options

2023-03-08 Thread Ms. Naveen Ali
Dear All, I am still stuck here. Support will be most appreciated. With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. - Original Message - From: "Ms. Naveen Ali" To: koha@lists.katipo.co.nz Sent: T

[Koha] "[Suspected Spam]" Re: Modify Patron Transaction Invoices and Fee Receipts

2023-03-08 Thread Ms. Naveen Ali
er Home Library. However I find that only one of the modified slips is being used in both the libraries. Help will be most appreciated. With best regards, Naveen Ali ITM-JE (EAKL) Inst Representative for HEC Digital Library Resources. NEDUET, Karachi. - Original Message - From:

[meta-intel] [PATCH 2/2] conf/machine: set preferred kernel to 6.2 for poky-altcfg

2023-03-07 Thread Naveen Saini
Signed-off-by: Naveen Saini --- conf/machine/include/meta-intel.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/include/meta-intel.inc b/conf/machine/include/meta-intel.inc index 380de881..b5115fd7 100644 --- a/conf/machine/include/meta-intel.inc +++ b/conf

[meta-intel] [PATCH 1/2] linux-intel/6.2: add recipe

2023-03-07 Thread Naveen Saini
It builds 6.2 kernel version from mainline-tracking tree. https://github.com/intel/mainline-tracking tag: mainline-tracking-v6.2-linux-230223T032049Z Remove linux-intel 5.19 recipe. There is no -rt version of 6.2 yet so 5.19-rt has been kept. Signed-off-by: Naveen Saini --- recipes-kernel

Re: [linux-yocto] [kernel-cache][PATCH 08/11] bsp/intel-corei7-64-preempt-rt: Add support for Time-Sensitive Network

2023-03-06 Thread Naveen Saini
> -Original Message- > From: linux-yocto@lists.yoctoproject.org yo...@lists.yoctoproject.org> On Behalf Of Paul Gortmaker > Sent: Tuesday, March 7, 2023 12:20 AM > To: Saini, Naveen Kumar > Cc: linux-yocto@lists.yoctoproject.org > Subject: Re: [linux-yocto] [kern

[linux-yocto] [kernel-cache][PATCH 11/11] bsp/intel-common: Enable Intel IOMMU & Intel Data Accelerators support

2023-03-06 Thread Naveen Saini
Signed-off-by: Naveen Saini --- bsp/intel-common/intel-common-drivers.scc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bsp/intel-common/intel-common-drivers.scc b/bsp/intel-common/intel-common-drivers.scc index 843bf2f8..3d7ca715 100644 --- a/bsp/intel-common/intel-common-drivers.scc

[linux-yocto] [kernel-cache][PATCH 08/11] bsp/intel-corei7-64-preempt-rt: Add support for Time-Sensitive Network

2023-03-06 Thread Naveen Saini
Signed-off-by: Naveen Saini --- bsp/intel-common/intel-corei7-64-preempt-rt.scc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bsp/intel-common/intel-corei7-64-preempt-rt.scc b/bsp/intel-common/intel-corei7-64-preempt-rt.scc index 8ec001cb..9ce0b97a 100644 --- a/bsp/intel-common/intel

[linux-yocto] [kernel-cache][PATCH 07/11] bsp/intel-common-drivers: Add i3c drivers

2023-03-06 Thread Naveen Saini
Signed-off-by: Naveen Saini --- bsp/intel-common/intel-common-drivers.scc | 1 + 1 file changed, 1 insertion(+) diff --git a/bsp/intel-common/intel-common-drivers.scc b/bsp/intel-common/intel-common-drivers.scc index 3712be93..843bf2f8 100644 --- a/bsp/intel-common/intel-common-drivers.scc

[linux-yocto] [kernel-cache][PATCH 10/11] common-pc: Enable DesignWare PWM & SPI Controller support

2023-03-06 Thread Naveen Saini
Signed-off-by: Naveen Saini --- bsp/common-pc/common-pc-drivers.cfg | 9 + 1 file changed, 9 insertions(+) diff --git a/bsp/common-pc/common-pc-drivers.cfg b/bsp/common-pc/common-pc-drivers.cfg index 5e2018d6..0d2672bc 100644 --- a/bsp/common-pc/common-pc-drivers.cfg +++ b/bsp/common

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