Re: RFR: 8297095: Write a test to determine the quit request of the application

2022-11-24 Thread Naveen Narayanan
On Wed, 23 Nov 2022 18:29:50 GMT, Harshitha Onkar wrote: >> This testcase will >> 1) Verify the handleQuitRequestWith() method of QuitHandler interface. >> 2) Check that the response is passed to the handler by means of quit >> notification generated by a key combination of META+Q (Mac) or >>

Re: [PATCH v2] powerpc/bpf/32: Fix Oops on tail call tests

2022-11-24 Thread Naveen N. Rao
ved across function calls jited:1 140975 PASS test_bpf: #8 Tail call error path, NULL target jited:1 110 PASS test_bpf: #9 Tail call error path, index out of range jited:1 69 PASS test_bpf: test_tail_calls: Summary: 10 PASSED, 0 FAILED, [10/10 JIT'ed] Suggested-by: Naveen N. Rao Fixes: 51

Re: [PATCH] powerpc/bpf: Only update ldimm64 during extra pass when it is an address

2022-11-24 Thread Naveen N. Rao
during the extra pass, we should be ok to do a single extra pass. - Naveen

RFR: 8297095: Write a test to determine the quit request of the application

2022-11-23 Thread Naveen Narayanan
This testcase will 1) Verify the handleQuitRequestWith() method of QuitHandler interface. 2) Check that the response is passed to the handler by means of quit notification generated by a key combination of META+Q (Mac) or ALT+F4(Windows & Linux). 3) Confirm that the active window is closed.

[jira] [Resolved] (HIVE-26701) Enable metrics for Database connection pools(1 & 2) used by ObjectStore in HMS

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

Re: [PATCH] powerpc/bpf/32: Fix Oops on tail call tests

2022-11-22 Thread Naveen N. Rao
Christophe Leroy wrote: Le 22/11/2022 à 08:33, Naveen N. Rao a écrit : Christophe Leroy wrote: This is a tentative to write above the stack. The problem is encoutered with tests added by commit 38608ee7b690 ("bpf, tests: Add load store test case for tail call") This happens be

[meta-intel] [PATCH v3 4/4] dpcpp-compiler.md: add document for icx installation

2022-11-22 Thread Naveen Saini
Signed-off-by: Naveen Saini --- documentation/dpcpp-compiler.md | 105 1 file changed, 105 insertions(+) create mode 100644 documentation/dpcpp-compiler.md diff --git a/documentation/dpcpp-compiler.md b/documentation/dpcpp-compiler.md new file mode 100644 index

[meta-intel] [PATCH v3 2/4] icc: drop Intel C++ classic compiler support

2022-11-22 Thread Naveen Saini
Support for Intel(R) oneAPI DPC++/C++ (icx) compiler is being added. so no point to keep icc support. Signed-off-by: Naveen Saini --- classes/icc.bbclass | 43 -- conf/layer.conf | 3 - conf/noniccable.conf

[meta-intel] [PATCH v3 3/4] sdk: Add support for adding icx to SDK

2022-11-22 Thread Naveen Saini
_64/sysroots/skylake-64-oe-linux/opt/intel/oneapi/compiler/2022.1.0/env/vars.sh -> Build sample SYCL app (i.e simple-sycl-app.cpp). $ $ICXCXX -fsycl simple-sycl-app.cpp -o simple-sycl-app -lsvml -lirng -limf -lintlc Signed-off-by: Naveen Saini --- recipes-core/meta/icx-environme

[meta-intel] [PATCH v3 1/4] intel-oneapi-dpcpp-cpp: add Intel(R) oneAPI DPC++/C++ Compiler

2022-11-22 Thread Naveen Saini
_64-oe-linux -fsycl simple-sycl-app.c -o simple-sycl-app Signed-off-by: Naveen Saini --- ...-oneapi-dpcpp-cpp-runtime_2022.1.0-3768.bb | 45 +++ .../intel-oneapi-dpcpp-cpp_2022.1.0-3768.bb | 43 ++ 2 files changed, 88 insertions(+) create mode 100644 dynamic-layers

Re: [PATCH] powerpc/bpf/32: Fix Oops on tail call tests

2022-11-21 Thread Naveen N. Rao
this? You can move the above PPC_RAW_LWZ() and PPC_RAW_MTLR() instructions, as well as the ADDI below for r1 into bpf_jit_emit_common_epilogue() and not have to repeat those here. - Naveen EMIT(PPC_RAW_MTCTR(_R3)); - EMIT(PPC_RAW_MR(_R3, bpf_to_ppc(BPF_

[PATCH 2/3] selftests/powerpc: Bump up rlimit for perf-hwbreak test

2022-11-21 Thread Naveen N. Rao
The systemwide perf hardware breakpoint test tries to open a perf event on each cpu. On large systems, we run out of file descriptors and fail the test. Instead, have the test set the file descriptor limit to an arbitraty high value. Reported-by: Rohan Deshpande Signed-off-by: Naveen N. Rao

[PATCH 3/3] selftests/powerpc: Account for offline cpus in perf-hwbreak test

2022-11-21 Thread Naveen N. Rao
For systemwide tests, use online cpu mask to only open events on online cpus. This enables this test to work on systems in lower SMT modes. Signed-off-by: Naveen N. Rao --- .../selftests/powerpc/ptrace/perf-hwbreak.c | 45 --- 1 file changed, 39 insertions(+), 6 deletions

[PATCH 1/3] selftests/powerpc: Move perror closer to its use

2022-11-21 Thread Naveen N. Rao
Right now, if perf_event_open() fails for the systemwide tests, error report is printed too late, sometimes after subsequent system calls. Move use of perror() to the main function, just after the syscall. Signed-off-by: Naveen N. Rao --- .../selftests/powerpc/ptrace/perf-hwbreak.c | 21

[PATCH 0/3] selftests/powerpc: ptrace/perf_hwbreak test fixes

2022-11-21 Thread Naveen N. Rao
issues. The first patch is a small cleanup to aid subsequent fixes. - Naveen Naveen N. Rao (3): selftests/powerpc: Move perror closer to its use selftests/powerpc: Bump up rlimit for perf-hwbreak test selftests/powerpc: Account for offline cpus in perf-hwbreak test .../selftests/powerpc

[PATCH] perf test: Skip watchpoint tests if no watchpoints available

2022-11-21 Thread Naveen N. Rao
On IBM Power9, perf watchpoint tests fail since no hardware breakpoints are available. Detect this by checking the error returned by perf_event_open() and skip the tests in that case. Reported-by: Disha Goel Signed-off-by: Naveen N. Rao --- tools/perf/tests/wp.c | 12 +++- 1 file

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem [v6]

2022-11-20 Thread Naveen Narayanan
s and > got all pass. Naveen Narayanan has updated the pull request incrementally with one additional commit since the last revision: 8296275: Review comments fixed. - Changes: - all: https://git.openjdk.org/jdk/pull/11035/files - new: https://git.openjdk.org/jdk/pull/11035/

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem [v4]

2022-11-18 Thread Naveen Narayanan
On Fri, 18 Nov 2022 15:16:54 GMT, Alexey Ivanov wrote: >> Naveen Narayanan has updated the pull request incrementally with one >> additional commit since the last revision: >> >> 8296275: Review comments fixed. > > test/jdk/java/awt/Desktop/JMenuItemSetAccelera

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem [v5]

2022-11-18 Thread Naveen Narayanan
s and > got all pass. Naveen Narayanan has updated the pull request incrementally with one additional commit since the last revision: 8296275: Review comments fixed. - Changes: - all: https://git.openjdk.org/jdk/pull/11035/files - new: https://git.openjdk.org/jdk/pull/11035/

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem [v4]

2022-11-18 Thread Naveen Narayanan
On Fri, 18 Nov 2022 11:41:51 GMT, Alexey Ivanov wrote: >> Naveen Narayanan has updated the pull request incrementally with one >> additional commit since the last revision: >> >> 8296275: Review comments fixed. > > Marked as reviewed by aivanov (Reviewer).

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem [v4]

2022-11-18 Thread Naveen Narayanan
On Fri, 18 Nov 2022 11:41:51 GMT, Alexey Ivanov wrote: >> Naveen Narayanan has updated the pull request incrementally with one >> additional commit since the last revision: >> >> 8296275: Review comments fixed. > > Marked as reviewed by aivanov (Reviewer).

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem. [v3]

2022-11-18 Thread Naveen Narayanan
On Thu, 17 Nov 2022 13:05:21 GMT, Alexey Ivanov wrote: >> Naveen Narayanan has updated the pull request incrementally with one >> additional commit since the last revision: >> >> 8296275: Review comments fixed. > > test/jdk/java/awt/Desktop/JMenuItemSetAccelera

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem. [v4]

2022-11-18 Thread Naveen Narayanan
s and > got all pass. Naveen Narayanan has updated the pull request incrementally with one additional commit since the last revision: 8296275: Review comments fixed. - Changes: - all: https://git.openjdk.org/jdk/pull/11035/files - new: https://git.openjdk.org/jdk/pull/11035/

[meta-intel] [PATCH 1/4] linux-intel/5.19: add recipe

2022-11-17 Thread Naveen Saini
Build 5.19 kernel version from mainline-tracking tree at: https://github.com/intel/mainline-tracking This will track the mainline kernel and will be used to enable support for newer platforms. Signed-off-by: Naveen Saini --- recipes-kernel/linux/linux-intel-rt_5.15.bb | 6 ++ recipes

[meta-intel] [PATCH 4/4] meta-intel.inc: set default PREFERRED_VERSION to 5.19 kernel

2022-11-17 Thread Naveen Saini
Signed-off-by: Naveen Saini --- conf/machine/include/meta-intel.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/machine/include/meta-intel.inc b/conf/machine/include/meta-intel.inc index 6fb0d515..fa4d1415 100644 --- a/conf/machine/include/meta-intel.inc +++ b

[meta-intel] [PATCH 3/4] linux-intel-dev: drop recipe

2022-11-17 Thread Naveen Saini
This recipe is not requried anymore, as already recipes for mainline-tracking 5.19 kernel being added. Signed-off-by: Naveen Saini --- recipes-kernel/linux/linux-intel-dev.bb | 32 - 1 file changed, 32 deletions(-) delete mode 100644 recipes-kernel/linux/linux-intel

[meta-intel] [PATCH 2/4] linux-intel-rt/5.19: add recipe

2022-11-17 Thread Naveen Saini
Build 5.19 RT kernel version from mainline-tracking tree at: https://github.com/intel/mainline-tracking This will track the mainline kernel and will be used to enable support for newer platforms. Signed-off-by: Naveen Saini --- recipes-kernel/linux/linux-intel-rt_5.19.bb | 28

[jira] [Updated] (HIVE-26751) Bug Fixes and Improvements for 3.2.0 release

2022-11-17 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26751?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26751: - Labels: hive-3.2.0-must release-3.2.0 (was: release-3.2.0) > Bug Fixes and Improveme

[jira] [Updated] (HIVE-26751) Bug Fixes and Improvements for 3.2.0 release

2022-11-17 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26751?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26751: - Priority: Blocker (was: Major) > Bug Fixes and Improvements for 3.2.0 rele

[jira] [Commented] (HIVE-26751) Bug Fixes and Improvements for 3.2.0 release

2022-11-17 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26751?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17635363#comment-17635363 ] Naveen Gangam commented on HIVE-26751: -- [~amanraj2520] How are we tracking the sub-jiras

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem. [v3]

2022-11-16 Thread Naveen Narayanan
On Thu, 10 Nov 2022 05:14:36 GMT, Naveen Narayanan wrote: >> This testcase will >> 1) Verify setAccelerator method of JMenuitem. >> 2) Check that the selection of a menu item in the menu bar will generate >> action by a key combination of META+M. >> >> Tes

[linux-yocto] [kernel-cache][master][yocto-5.19][yocto-5.15][PATCH v2] qat: fix CONFIG_CRYPTO_CCM mismatch warnings

2022-11-16 Thread Naveen Saini
electing this symbol: - TIPC_CRYPTO - MAC80211 Symbols currently n-selecting this symbol (no effect): - TLS - CEPH_LIB - MACSEC - SMB_SERVER - CRYPTO_DEV_PPC4XX Signed-

[jira] [Updated] (HIVE-26701) Enable metrics for Database connection pools(1 & 2) used by ObjectStore in HMS

2022-11-16 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26701?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26701: - Labels: hive-4.0.0-must (was: ) > Enable metrics for Database connection pools(1 &

[meta-intel] [PATCH 2/2] setup-intel-oneapi-env: add native and nativesdk extend

2022-11-16 Thread Naveen Saini
Signed-off-by: Naveen Saini --- .../setup-oneapi-env/setup-intel-oneapi-env_2022.0.1-3633.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-oneapi/setup-oneapi-env/setup-intel-oneapi-env_2022.0.1-3633.bb b/recipes-oneapi/setup-oneapi-env/setup-intel-oneapi-env_2022.0.1-3633.bb

[meta-intel] [PATCH 1/2] level-zero: add native and nativesdk extend

2022-11-16 Thread Naveen Saini
Signed-off-by: Naveen Saini --- .../recipes-core/levelzero/level-zero_1.7.15.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/dynamic-layers/openembedded-layer/recipes-core/levelzero/level-zero_1.7.15.bb b/dynamic-layers/openembedded-layer/recipes-core/levelzero/level

[oe] [meta-oe][PATCH] opencl-headers: add native and nativesdk

2022-11-16 Thread Naveen Saini
Signed-off-by: Naveen Saini --- meta-oe/recipes-core/opencl/opencl-headers_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-core/opencl/opencl-headers_git.bb b/meta-oe/recipes-core/opencl/opencl-headers_git.bb index 8bbee5cc2..6374f4597 100644 --- a/meta-oe/recipes

Re: [DISCUSS] Jira Public Signup Disabled

2022-11-15 Thread Naveen Gangam
Stamatis, Thank you for bringing this up. +1 On Tue, Nov 15, 2022 at 8:30 AM Ayush Saxena wrote: > +1 > > -Ayush > > On 15-Nov-2022, at 5:57 PM, Stamatis Zampetakis wrote: > >  > Hi everyone, > > Due to the large amount of spam account creation the ASF INFRA team has > disabled the JIRA

Re: [DISCUSS] Jira Public Signup Disabled

2022-11-15 Thread Naveen Gangam
Stamatis, Thank you for bringing this up. +1 On Tue, Nov 15, 2022 at 8:30 AM Ayush Saxena wrote: > +1 > > -Ayush > > On 15-Nov-2022, at 5:57 PM, Stamatis Zampetakis wrote: > >  > Hi everyone, > > Due to the large amount of spam account creation the ASF INFRA team has > disabled the JIRA

[prometheus-users] Maintaining dns_sd_configs in prometheus yaml through json files

2022-11-14 Thread Agarwal ,Naveen
all dns_sd_configs in prometheus yaml, we will need to think of a way to maintain it across multiple teams. Any other suggestions if this is not feasible in prometheus currently. Thanks, Naveen -- You received this message because you are subscribed to the Google Groups "Prometheus

[meta-intel] [meta-dpdk][PATCH] dpdk-kmods: update to latest commit

2022-11-14 Thread Naveen Saini
'pci_set_dma_mask'; did you mean 'ipi_send_mask'? [-Werror=implicit-function-declaration] Signed-off-by: Naveen Saini --- recipes-extended/dpdk/dpdk-kmods_git.bb | 5 ++- .../dpdk/0001-support-5.18-kernel-ABI.patch | 42 +++ 2 files changed, 46 insertions(+), 1 deletion

[linux-yocto] [kernel-cache][master][yocto-5.19][PATCH] security.cfg: remove configs which have been dropped

2022-11-14 Thread Naveen Saini
/53944f171a89dff4e2a3d76f42e6eedb551bb861 Signed-off-by: Naveen Saini --- features/security/security-x86_64.cfg | 1 - features/security/security.cfg| 1 - 2 files changed, 2 deletions(-) diff --git a/features/security/security-x86_64.cfg b/features/security/security-x86_64.cfg index 0f5c3621

Re: [VOTE] Apache Hive 4.0.0-alpha-2 Release Candidate 1

2022-11-11 Thread Naveen Gangam
Hi Denys, Thank you for publishing the release bits. *SIGNATURE VERIFICATION* gpg --verify apache-hive-4.0.0-alpha-2-bin.tar.gz.asc apache-hive-4.0.0-alpha-2-bin.tar.gz gpg: Signature made Mon Nov 7 13:04:05 2022 EST gpg:using RSA key 50606DE1BDBD5CF862A595A907C5682DAFC73125

[linux-yocto] [kernel-cache][master][yocto-5.19][yocto-5.15][PATCH] qat: fix CONFIG_CRYPTO_CCM mismatch warnings

2022-11-11 Thread Naveen Saini
IFS Symbols currently m-selecting this symbol: - TIPC_CRYPTO - MAC80211 Symbols currently n-selecting this symbol (no effect): - TLS - CEPH_LIB - MACSEC - SMB_SERVER - CRYPTO_DEV_PPC4XX Signed-off-by: Naveen Sain

Re: [yocto] [meta-zephyr][PATCH] zephyr-sdk: upgrade 0.14.2 -> 0.15.1

2022-11-10 Thread Naveen Saini
Hi Mason > -Original Message- > From: yocto@lists.yoctoproject.org On > Behalf Of Jon Mason > Sent: Thursday, October 27, 2022 2:14 AM > To: Saini, Naveen Kumar > Cc: yocto@lists.yoctoproject.org > Subject: Re: [yocto] [meta-zephyr][PATCH] zephyr-sdk: upgrade 0.14

[yocto] [meta-zephyr][PATCH v2 5/5] newlib: add bbappend

2022-11-09 Thread Naveen Saini
.html https://sourceware.org/git/?p=newlib-cygwin.git;a=commit;h=bd54749095ee45d7136b6e7c8a1e5218749c87b6 Error log: newlib/libc-hooks.c:310:1: note: in expansion of macro 'BUILD_ASSERT' BUILD_ASSERT(IS_ENABLED(_RETARGETABLE_LOCKING), "Retargetable locking must be enabled"); Signed-off-

[yocto] [meta-zephyr][PATCH v2 4/5] arc: drop obsolete recipes and bbappends

2022-11-09 Thread Naveen Saini
Remove recipes and bbappends which are not being used. Signed-off-by: Naveen Saini --- .../classes/siteinfo-zephyr.bbclass | 14 --- .../recipes-core/newlib/newlib_%.bbappend | 22 - .../binutils/binutils-2.26arc.inc | 37 .../binutils-cross

[yocto] [meta-zephyr][PATCH v2 3/5] zephyr-sdk: upgrade 0.14.2 -> 0.15.1

2022-11-09 Thread Naveen Saini
https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.15.1 Signed-off-by: Naveen Saini --- .../zephyr-sdk/{zephyr-sdk_0.14.2.bb => zephyr-sdk_0.15.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-zephyr-core/recipes-devtools/zephyr-sdk/{zephyr-sdk_0.14.2

[yocto] [meta-zephyr][PATCH v2 2/5] zephyr-kernel-src: drop support for v2.7.3

2022-11-09 Thread Naveen Saini
Support for zephyr v3.2.0 is already being added. So time to drop it. Signed-off-by: Naveen Saini --- .../0001-2.7-cmake-add-yocto-toolchain.patch | 63 -- ...ry-generation-issue-in-cross-compila.patch | 80 --- .../zephyr-kernel/files/dtc.patch | 43 .../zephyr

[yocto] [meta-zephyr][PATCH v2 1/5] zephyr-kernel-src: add support for v3.2.0

2022-11-09 Thread Naveen Saini
https://github.com/zephyrproject-rtos/zephyr/releases/tag/v3.2.0 Signed-off-by: Naveen Saini --- .../zephyr-kernel/zephyr-kernel-src-3.2.0.inc | 239 ++ .../zephyr-kernel/zephyr-kernel-src.inc | 2 +- 2 files changed, 240 insertions(+), 1 deletion(-) create mode 100644

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem. [v3]

2022-11-09 Thread Naveen Narayanan
s and > got all pass. Naveen Narayanan has updated the pull request incrementally with one additional commit since the last revision: 8296275: Review comments fixed. - Changes: - all: https://git.openjdk.org/jdk/pull/11035/files - new: https://git.openjdk.org/jdk/pull/11035/

[jira] [Commented] (HIVE-26220) Shade & relocate dependencies in hive-exec to avoid conflicting with downstream projects

2022-11-09 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26220?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17631412#comment-17631412 ] Naveen Gangam commented on HIVE-26220: -- [~ayushtkn] I have marked this jira a must-fix for 4.0.0

[jira] [Updated] (HIVE-26220) Shade & relocate dependencies in hive-exec to avoid conflicting with downstream projects

2022-11-09 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26220?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26220: - Target Version/s: 4.0.0 > Shade & relocate dependencies in hive-exec to avoid conf

[jira] [Updated] (HIVE-26220) Shade & relocate dependencies in hive-exec to avoid conflicting with downstream projects

2022-11-09 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26220?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26220: - Labels: hive-4.0.0-must (was: ) > Shade & relocate dependencies in hive-exec t

Re: RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem. [v2]

2022-11-08 Thread Naveen Narayanan
ed using Mach5(20 times per platform) in Mac OS, Linux and Windows and > got all pass. Naveen Narayanan has updated the pull request incrementally with one additional commit since the last revision: 8296275: Review comments fixed. - Changes: - all: https://git.openjdk.or

Re: [EXTERNAL] Re: Proposal : New Release 3.2.0 | Fixing CVE's and Bugs on apache hive branch-3

2022-11-08 Thread Naveen Gangam
that would be great. Thank you again Naveen On Fri, Nov 4, 2022 at 7:01 AM Stamatis Zampetakis wrote: > Hey everyone, > > It would be nice to have a new release from branch 3 although it might not > be that trivial to get out. > > It will definitely require a bit of investment from

Re: [PATCH 4/5] powerpc/kprobes: Setup consistent pt_regs across kprobes, optprobes and KPROBES_ON_FTRACE

2022-11-08 Thread Naveen N. Rao
Nicholas Piggin wrote: On Fri Oct 21, 2022 at 3:29 AM AEST, Naveen N. Rao wrote: Ensure a more consistent pt_regs across kprobes, optprobes and KPROBES_ON_FTRACE: - Drop setting trap to 0x700 under optprobes. This is not accurate and is unnecessary. Instead, zero it out for both optprobes

Re: [PATCH 1/5] powerpc/kprobes: Remove preempt disable around call to get_kprobe() in arch_prepare_kprobe()

2022-11-08 Thread Naveen N. Rao
Nicholas Piggin wrote: On Fri Oct 21, 2022 at 3:28 AM AEST, Naveen N. Rao wrote: arch_prepare_kprobe() is called from register_kprobe() via prepare_kprobe(), or through register_aggr_kprobe(), both with the kprobe_mutex held. Per the comment for get_kprobe(): /* * This routine is called

Re: [PATCH 5/5] powerpc/kprobes: Remove unnecessary headers from kprobes

2022-11-08 Thread Naveen N. Rao
Christophe Leroy wrote: Le 20/10/2022 à 19:29, Naveen N. Rao a écrit : Many of these headers are not necessary since those are included indirectly, or the code using those headers has been removed. It is usually not a good idea to not include headers because they are already included

RFR: 8296275: Write a test to verify setAccelerator method of JMenuItem.

2022-11-08 Thread Naveen Narayanan
Colocate JMenuItemSetAcceleratorTest to a regression test. This testcase will 1) Verify setAccelerator method of JMenuitem. 2) Check that the selection of a menu item in the menu bar will generate action by a key combination of META+M. Testing: Tested using Mach5(20 times per platform) in Mac

Re: [yocto] Langdale branch for meta-zephyr

2022-10-31 Thread Naveen Saini
Hi Jon, I have forked Langdale branch. Could you help to fix arm machines failures with zephyr 3.2.0 upgrade patches ? https://gitlab.com/jonmason00/meta-zephyr/-/pipelines/677723187 Regards, Naveen From: Jon Mason Sent: Monday, October 31, 2022 11:07 PM To: Saini, Naveen Kumar Cc: Yocto

[jira] [Resolved] (HIVE-26640) Upgrade JUnit to 4.13.2 due to medium CVEs

2022-10-31 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26640?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam resolved HIVE-26640. -- Fix Version/s: 4.0.0 Resolution: Fixed Thanks for the patch [~devaspatikrishnatri]. Fix

Kafka broker stuck in a loop

2022-10-29 Thread Naveen Ede
.index.deleted. (kafka.log.LogSegment) Oct 29 16:53:54 ip-172- kafka-server-start[2447]: [2022-10-29 16:53:54,654] INFO Deleted time index /opt/kafka-data0/kafka-logs/__consumer_offsets-36/.timeindex.deleted. (kafka.log.LogSegment) Thank you, Naveen --

[yocto] [meta-zephyr][PATCH] zephyr-sdk: upgrade 0.14.2 -> 0.15.1

2022-10-25 Thread Naveen Saini
https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.15.1 Signed-off-by: Naveen Saini --- .../zephyr-sdk/{zephyr-sdk_0.14.2.bb => zephyr-sdk_0.15.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-zephyr-core/recipes-devtools/zephyr-sdk/{zephyr-sdk_0.14.2

[yocto] [meta-zephyr][PATCH 1/2] zephyr-kernel-src: add support for v3.2.0

2022-10-25 Thread Naveen Saini
https://github.com/zephyrproject-rtos/zephyr/releases/tag/v3.2.0 Signed-off-by: Naveen Saini --- .../zephyr-kernel/zephyr-kernel-src-3.2.0.inc | 239 ++ .../zephyr-kernel/zephyr-kernel-src.inc | 2 +- 2 files changed, 240 insertions(+), 1 deletion(-) create mode 100644

[yocto] [meta-zephyr][PATCH 2/2] zephyr-kernel-src: drop support for v2.7.3

2022-10-25 Thread Naveen Saini
Support for zephyr v3.2.0 is already being added. So time to drop it. Signed-off-by: Naveen Saini --- .../0001-2.7-cmake-add-yocto-toolchain.patch | 63 -- ...ry-generation-issue-in-cross-compila.patch | 80 --- .../zephyr-kernel/files/dtc.patch | 43 .../zephyr

[meta-intel] [meta-dpdk][PATCH 1/2] dpdk/22.07.0: add recipe

2022-10-24 Thread Naveen Saini
https://git.dpdk.org/dpdk/ Signed-off-by: Naveen Saini --- recipes-extended/dpdk/dpdk-module_22.07.0.bb | 58 +++ recipes-extended/dpdk/dpdk_22.07.0.bb| 76 2 files changed, 134 insertions(+) create mode 100644 recipes-extended/dpdk/dpdk-module_22.07.0

[meta-intel] [meta-dpdk][PATCH 2/2] dpdk/20.11: drop recipe

2022-10-24 Thread Naveen Saini
Recipe for dpdk 22.07 already has been added. So time to drop it. Signed-off-by: Naveen Saini --- recipes-extended/dpdk/dpdk-module_20.11.6.bb | 49 - ...rch-and-mcpu-already-passed-by-Yocto.patch | 38 --- recipes-extended/dpdk/dpdk_20.11.6.bb | 68

[meta-intel] [PATCH 1/3] openvino-inference-engine : upgrade 2022.1.1 -> 2022.2.0

2022-10-21 Thread Naveen Saini
-inference-engine recipe - Refresh patches Release Notes: https://github.com/openvinotoolkit/openvino/releases/tag/2022.2.0 Signed-off-by: Yogesh Tyagi Signed-off-by: Naveen Saini --- ...1-Use-system-installed-dependencies.patch} | 52 ++-- ...tallation-of-binaries-and-libraries.patch

[meta-intel] [PATCH 3/3] openvino-model-optimizer: upgrade 2022.1.1 -> 2022.2.0

2022-10-21 Thread Naveen Saini
Release notes: https://github.com/openvinotoolkit/openvino/releases/tag/2022.2.0 Signed-off-by: Naveen Saini --- ...mizer_2022.1.1.bb => openvino-model-optimizer_2022.2.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename dynamic-layers/meta-python/recipes-opencv/d

[meta-intel] [PATCH 2/3] open-model-zoo: upgrade 2022.1.1 -> 2022.2.0

2022-10-21 Thread Naveen Saini
Refreshed patch. Signed-off-by: Naveen Saini --- .../open-model-zoo/0001-use-oe-gflags.patch | 16 +--- ...oo_2022.1.1.bb => open-model-zoo_2022.2.0.bb} | 4 ++-- 2 files changed, 11 insertions(+), 9 deletions(-) rename dynamic-layers/openembedded-layer/recipes-supp

[meta-intel] [PATCH 2/2] vc-intrinsics: update to latest

2022-10-21 Thread Naveen Saini
Use tag v0.7.0 revision. Signed-off-by: Naveen Saini --- .../recipes-opencl/vc-intrinsics/vc-intrinsics_0.1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic-layers/clang-layer/recipes-opencl/vc-intrinsics/vc-intrinsics_0.1.0.bb b/dynamic-layers/clang

[meta-intel] [PATCH 1/2] opencl-clang/15.0.0: add recipe

2022-10-21 Thread Naveen Saini
Build opencl-clang with llvm-15 and point to latest from ocl-open-150 branch. Signed-off-by: Naveen Saini --- conf/machine/include/meta-intel.inc| 4 .../opencl-clang/opencl-clang.inc | 5 - .../opencl-clang/opencl-clang_14.0.0.bb| 5

[meta-intel] [meta-dpdk][PATCH 1/2] xdp-tools: add recipe

2022-10-20 Thread Naveen Saini
xdp-tools - Library and utilities for use with XDP. It also provides libxdp library. https://github.com/xdp-project/xdp-tools Signed-off-by: Naveen Saini --- conf/layer.conf | 5 ++ ...0001-configure-skip-toolchain-checks.patch | 46

[meta-intel] [meta-dpdk][PATCH 2/2] dpdk/21.11.2: add libxdp library in PACKAGECONFIG

2022-10-20 Thread Naveen Saini
With latest libbpf version (>=0.7.0), additional libxdp library also require to build net/af_xdp libs. xdp-tools provides libxdp library. Ref: https://git.dpdk.org/dpdk-stable/commit/drivers/net/af_xdp?h=21.11=6721fb14eb1f91a0afc629c61eb99e63b247c1f3 Signed-off-by: Naveen Saini --- reci

[PATCH 3/5] powerpc/kprobes: Use preempt_enable() rather than the no_resched variant

2022-10-20 Thread Naveen N. Rao
preempt_enable_no_resched() is just the same as preempt_enable() when we are in a irqs disabled context. kprobe_handler() and the post/fault handlers are all called with irqs disabled. As such, convert those to just use preempt_enable(). Reported-by: Nicholas Piggin Signed-off-by: Naveen N. Rao

[PATCH 5/5] powerpc/kprobes: Remove unnecessary headers from kprobes

2022-10-20 Thread Naveen N. Rao
Many of these headers are not necessary since those are included indirectly, or the code using those headers has been removed. Signed-off-by: Naveen N. Rao --- arch/powerpc/kernel/kprobes-ftrace.c | 4 arch/powerpc/kernel/kprobes.c| 2 -- 2 files changed, 6 deletions(-) diff --git

[PATCH 4/5] powerpc/kprobes: Setup consistent pt_regs across kprobes, optprobes and KPROBES_ON_FTRACE

2022-10-20 Thread Naveen N. Rao
do in optprobes and trap-based kprobes. - Drop setting orig_gpr3 and result to zero in optprobes. These are not relevant under kprobes and should not be used by the handlers. Signed-off-by: Naveen N. Rao --- arch/powerpc/kernel/optprobes_head.S| 5 + arch/powerpc/kernel/trace

[PATCH 2/5] powerpc/kprobes: Have optimized_callback() use preempt_enable()

2022-10-20 Thread Naveen N. Rao
rpc/kprobes: Do not disable interrupts for optprobes and kprobes_on_ftrace"). Reported-by: Nicholas Piggin Signed-off-by: Naveen N. Rao --- arch/powerpc/kernel/optprobes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/kernel/optprobes.c b/arch/powerpc/kern

[PATCH 1/5] powerpc/kprobes: Remove preempt disable around call to get_kprobe() in arch_prepare_kprobe()

2022-10-20 Thread Naveen N. Rao
(). *OR *- with preemption disabled - from architecture specific code. */ As such, there is no need to disable preemption around the call to get_kprobe(). Drop the same. Reported-by: Nicholas Piggin Signed-off-by: Naveen N. Rao --- arch/powerpc/kernel/kprobes.c | 2

[PATCH 0/5] powerpc/kprobes: preempt related changes and cleanups

2022-10-20 Thread Naveen N. Rao
This series attempts to address some of the concerns raised in https://github.com/linuxppc/issues/issues/440 The last two patches are minor cleanups in related kprobes code. - Naveen Naveen N. Rao (5): powerpc/kprobes: Remove preempt disable around call to get_kprobe

[jira] [Updated] (HIVE-26400) Provide docker images for Hive

2022-10-20 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26400?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26400: - Labels: hive-4.0.0-must pull-request-available (was: pull-request-available) > Provide doc

[jira] [Updated] (HIVE-26400) Provide docker images for Hive

2022-10-20 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26400?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26400: - Priority: Blocker (was: Major) > Provide docker images for H

[jira] [Updated] (HIVE-26400) Provide docker images for Hive

2022-10-20 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26400?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26400: - Target Version/s: 4.0.0 > Provide docker images for H

[jira] [Updated] (HIVE-26644) Introduce auto sizing in HMS

2022-10-19 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26644?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26644: - Labels: hive-4.0.0-must pull-request-available (was: pull-request-available) > Introduce a

[jira] [Updated] (HIVE-26644) Introduce auto sizing in HMS

2022-10-19 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26644?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26644: - Target Version/s: 4.0.0 > Introduce auto sizing in

[jira] [Updated] (HIVE-26644) Introduce auto sizing in HMS

2022-10-19 Thread Naveen Gangam (Jira)
[ https://issues.apache.org/jira/browse/HIVE-26644?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Naveen Gangam updated HIVE-26644: - Priority: Blocker (was: Major) > Introduce auto sizing in

[jira] [Resolved] (HIVE-26045) Detect timed out connections for providers and auto-reconnect

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

Re: [Draft] Board report for October for Apache Hive

2022-10-19 Thread Naveen Gangam
weeks is higher compared to 4 weeks prior to that. On Wed, Oct 19, 2022 at 11:11 PM Ayush Saxena wrote: > +1, Thanx Naveen for driving this. Looks good!!! > > I guess the community health is there only as a heading but nothing below > that. Better to write a line, 'that everything is

[Draft] Board report for October for Apache Hive

2022-10-19 Thread Naveen Gangam
Please review and provide any feedback.October 2022 ## Description: The Apache Hive ™ data warehouse software facilitates reading, writing, and managing large datasets residing in distributed storage (Apache Hadoop) using SQL. ## Issues: No issues requiring board attention this time. ##

Re: Consider using bi-directional links in JIRA

2022-10-19 Thread Naveen Gangam
+1. I find this very useful to know the dependencies/relationships. Thank you for bringing this up. On Fri, Oct 14, 2022 at 5:06 AM Stamatis Zampetakis wrote: > Hi all, > > This is a small tip/reminder for everyone using JIRA. > > It is very common and convenient to refer to other tickets by

Re: Consider using bi-directional links in JIRA

2022-10-19 Thread Naveen Gangam
+1. I find this very useful to know the dependencies/relationships. Thank you for bringing this up. On Fri, Oct 14, 2022 at 5:06 AM Stamatis Zampetakis wrote: > Hi all, > > This is a small tip/reminder for everyone using JIRA. > > It is very common and convenient to refer to other tickets by

[meta-intel] [PATCH] iccsdk: install icc specific packages only for meta-intel machines

2022-10-19 Thread Naveen Saini
by default disable ICCSDK. Signed-off-by: Naveen Saini --- conf/layer.conf| 3 +++ .../packagegroup-core-standalone-sdk-target.bbappend | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/conf/layer.conf b/conf

[meta-intel] [meta-dpdk][kirkstone][PATCH] dpdk: inherit pkgconfig

2022-10-17 Thread Naveen Saini
meson build using pkg-config method when searching for the dependency. Signed-off-by: Naveen Saini Signed-off-by: Anuj Mittal --- recipes-extended/dpdk/dpdk_21.11.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-extended/dpdk/dpdk_21.11.2.bb b/recipes-extended

[meta-intel] [meta-dpdk][PATCH] dpdk: inherit pkgconfig

2022-10-13 Thread Naveen Saini
meson build using pkg-config method when searching for the dependency. Signed-off-by: Naveen Saini --- recipes-extended/dpdk/dpdk_21.11.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-extended/dpdk/dpdk_21.11.2.bb b/recipes-extended/dpdk/dpdk_21.11.2.bb index

Re: [PATCH v4 00/16] objtool: Enable and implement --mcount option on powerpc

2022-10-12 Thread Naveen N. Rao
Josh Poimboeuf wrote: On Tue, Oct 11, 2022 at 01:20:02PM -0700, Josh Poimboeuf wrote: On Mon, Oct 10, 2022 at 05:19:02PM +0530, Naveen N. Rao wrote: > All the above changes are down to compiler optimizations and shuffling due > to CONFIG_OBJTOOL being enabled and changing annotate_unrea

Re: [PATCH v4 11/16] objtool: Add --mnop as an option to --mcount

2022-10-12 Thread Naveen N. Rao
Josh Poimboeuf wrote: On Mon, Oct 10, 2022 at 05:07:46PM +0530, Naveen N. Rao wrote: > +++ b/scripts/Makefile.lib > @@ -234,6 +234,7 @@ objtool_args = \ >$(if $(CONFIG_HAVE_NOINSTR_HACK), --hack

Re: [PATCH] powerpc/kprobes: Fix null pointer reference in arch_prepare_kprobe()

2022-10-12 Thread Naveen N. Rao
an ignore errors. - Naveen

[meta-intel] [PATCH 1/2] opencl-clang/15.0.0: add recipe

2022-10-12 Thread Naveen Saini
Build opencl-clang with llvm-15 and point to latest from ocl-open-150 branch. Signed-off-by: Naveen Saini --- conf/machine/include/meta-intel.inc| 4 .../opencl-clang/opencl-clang.inc | 5 - .../opencl-clang/opencl-clang_14.0.0.bb| 5

[meta-intel] [PATCH 2/2] vc-intrinsics: update to latest

2022-10-12 Thread Naveen Saini
Use tag v0.7.0 revision. Signed-off-by: Naveen Saini --- .../recipes-opencl/vc-intrinsics/vc-intrinsics_0.1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic-layers/clang-layer/recipes-opencl/vc-intrinsics/vc-intrinsics_0.1.0.bb b/dynamic-layers/clang

[meta-intel] [PATCH] README: update tested hardware list

2022-10-11 Thread Naveen Saini
Signed-off-by: Naveen Saini --- README | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README b/README index 58d6a505..f05a5872 100644 --- a/README +++ b/README @@ -394,9 +394,16 @@ Note that both 64-bit and 32-bit firmware is available for the MinnowBoard

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