Re: [PATCH net-next v5 2/3] connector/cn_proc: Kunit tests for threads hash table

2024-10-18 Thread kernel test robot
Hi Anjali, kernel test robot noticed the following build errors: [auto build test ERROR on net-next/main] url: https://github.com/intel-lab-lkp/linux/commits/Anjali-Kulkarni/connector-cn_proc-Add-hash-table-for-threads/20241018-021755 base: net-next/main patch link: https

Re: [PATCH net-next v5 2/3] connector/cn_proc: Kunit tests for threads hash table

2024-10-18 Thread kernel test robot
Hi Anjali, kernel test robot noticed the following build errors: [auto build test ERROR on net-next/main] url: https://github.com/intel-lab-lkp/linux/commits/Anjali-Kulkarni/connector-cn_proc-Add-hash-table-for-threads/20241018-021755 base: net-next/main patch link: https

Re: [PATCH bpf-next 6/6] selftests/bpf: remove test_tcp_check_syncookie

2024-10-18 Thread Martin KaFai Lau
On 10/16/24 11:35 AM, Alexis Lothoré (eBPF Foundation) wrote: .../bpf/progs/test_tcp_check_syncookie_kern.c | 167 .../selftests/bpf/test_tcp_check_syncookie.sh | 85 .../selftests/bpf/test_tcp_check_syncookie_user.c | 213 - Nice. Le

Re: [PATCH bpf-next 4/6] selftests/bpf: add ipv4 and dual ipv4/ipv6 support in btf_skc_cls_ingress

2024-10-18 Thread Martin KaFai Lau
On 10/16/24 11:35 AM, Alexis Lothoré (eBPF Foundation) wrote: btf_skc_cls_ingress test currently checks that syncookie and bpf_sk_assign/release helpers behave correctly in multiple scenarios, but only with ipv4 socket. Increase those helpers coverage by adding testing support for IPv6-only sock

Re: [PATCH bpf-next 2/6] selftests/bpf: add missing ns cleanups in btf_skc_cls_ingress

2024-10-18 Thread Martin KaFai Lau
On 10/16/24 11:35 AM, Alexis Lothoré (eBPF Foundation) wrote: btf_skc_cls_ingress.c currently runs two subtests, and create a dedicated network namespace for each, but never cleans up the created namespace once the test has ended. Add missing namespace cleanup after each namespace to avoid accum

Re: [PATCH v4 3/4] selftests: pidfd: add pidfd.h UAPI wrapper

2024-10-18 Thread John Hubbard
On 10/17/24 11:49 PM, Lorenzo Stoakes wrote: On Thu, Oct 17, 2024 at 02:45:43PM -0700, John Hubbard wrote: On 10/17/24 2:05 PM, Lorenzo Stoakes wrote: ... Your include path above actually refers to: $(top_srcdir)/include/uapi/linux/fcntl.h ...but what I was intending was to copy a snaps

Re: [PATCH] selftest: drivers: Add support to check duplicate hwirq

2024-10-18 Thread Bjorn Helgaas
On Tue, Sep 03, 2024 at 06:44:26PM -0700, Joseph Jang wrote: > Validate there are no duplicate hwirq from the irq debug > file system /sys/kernel/debug/irq/irqs/* per chip name. > > One example log show 2 duplicated hwirq in the irq debug > file system. > > $ sudo cat /sys/kernel/debug/irq/irqs/1

Re: [GIT PULL] Kselftest fixes update for Linux 6.12-rc4

2024-10-18 Thread pr-tracker-bot
The pull request you sent on Fri, 18 Oct 2024 14:05:04 -0600: > git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest > tags/linux_kselftest-fixes-6.12-rc4 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/dbafeddb9524bd459592f92432b90dd7c0b79568 Thank you

Re: [PATCH v2 rcu 0/3] RCU CPU stall-warning changes for v6.13

2024-10-18 Thread Frederic Weisbecker
Le Wed, Oct 16, 2024 at 09:18:52AM -0700, Paul E. McKenney a écrit : > Hello! > > This series contains RCU CPU stall-warning changes for v6.13: > > 1.Delete unused rcu_gp_might_be_stalled() function. > > 2.Stop stall warning from dumping stacks if grace period ends. > > 3.Finer-grai

Re: [PATCH 0/3] selftests/mm: revert pthread_barrier change and

2024-10-18 Thread Andrew Morton
On Fri, 18 Oct 2024 17:17:21 + Edward Liaw wrote: > Subject: [PATCH 0/3] selftests/mm: revert pthread_barrier change and I simply removed the " and". > Date: Fri, 18 Oct 2024 17:17:21 + > X-Mailer: git-send-email 2.47.0.105.g07ac214952-goog > > On Android arm, pthread_create followed b

Re: [PATCH] rcu/srcutiny: don't return before reenabling preemption

2024-10-18 Thread Frederic Weisbecker
Le Wed, Oct 09, 2024 at 10:19:01AM -0700, Paul E. McKenney a écrit : > On Mon, Oct 07, 2024 at 12:14:15PM +0200, Michal Schmidt wrote: > > Code after the return statement is dead. Enable preemption before > > returning from srcu_drive_gp(). > > > > This will be important when/if PREEMPT_AUTO (lazy

Re: [PATCH] dax: delete a stale directory pmem

2024-10-18 Thread Ira Weiny
Harshit Mogalapalli wrote: > After commit: 83762cb5c7c4 ("dax: Kill DEV_DAX_PMEM_COMPAT") the pmem/ > directory is not needed anymore and Makefile changes were made > accordingly in this commit, but there is a Makefile and pmem.c in pmem/ > which are now stale and pmem.c is empty, remove them. > >

[GIT PULL] Kselftest fixes update for Linux 6.12-rc4

2024-10-18 Thread Shuah Khan
Hi Linus, Please pull the following kselftest fixes update for Linux 6.12-rc4. -- fixes test makefile to install tests directory without which the test fails with errors. diff is attached. thanks, -- Shuah The following chang

[PATCH 0/3] selftests/mm: revert pthread_barrier change and

2024-10-18 Thread Edward Liaw
On Android arm, pthread_create followed by a fork caused a deadlock in the case where the fork required work to be completed by the created thread. The previous patches incorrectly assumed that the parent would always initialize the pthread_barrier for the child thread. This reverts the change an

[PATCH 1/3] Revert "selftests/mm: fix deadlock for fork after pthread_create on ARM"

2024-10-18 Thread Edward Liaw
This reverts commit e142cc87ac4ec618f2ccf5f68aedcd6e28a59d9d. fork_event_consumer may be called by other tests that do not initialize the pthread_barrier, so this approach is not correct. The subsequent patch will revert to using atomic_bool instead. Fixes: e142cc87ac4e ("fix deadlock for fork a

Re: [PATCH V3 10/15] selftests/resctrl: Make benchmark parameter passing robust

2024-10-18 Thread Reinette Chatre
Hi Ilpo, On 10/18/24 2:03 AM, Ilpo Järvinen wrote: > On Thu, 17 Oct 2024, Reinette Chatre wrote: >> +/* >> + * Allocate and initialize a struct fill_buf_param with user provided >> + * (via "-b fill_buf ") parameters. >> + * >> + * Use defaults (that may not be appropriate for all tests) for any

Re: [PATCH V3 02/15] selftests/resctrl: Print accurate buffer size as part of MBM results

2024-10-18 Thread Reinette Chatre
Hi Ilpo, On 10/18/24 1:46 AM, Ilpo Järvinen wrote: > On Thu, 17 Oct 2024, Reinette Chatre wrote: >> @@ -138,15 +139,26 @@ static int mbm_run_test(const struct resctrl_test >> *test, const struct user_param >> .setup = mbm_setup, >> .measure= mbm_measure

Re: [PATCH 1/2] selftests/mm: replace atomic_bool with pthread_barrier_t

2024-10-18 Thread Edward Liaw
On Fri, Oct 18, 2024 at 7:37 AM Ryan Roberts wrote: > > On 03/10/2024 22:17, Edward Liaw wrote: > > Swaps synchronization primitive with pthread_barrier, so that > > stdatomic.h does not need to be included. > > > > The synchronization is needed on Android ARM64; we see a deadlock with > > pthread

[PATCH 3/3] selftests/mm: fix deadlock for fork after pthread_create with atomic_bool

2024-10-18 Thread Edward Liaw
Some additional synchronization is needed on Android ARM64; we see a deadlock with pthread_create when the parent thread races forward before the child has a chance to start doing work. Fixes: cff294582798 ("selftests/mm: extend and rename uffd pagemap test") CC: Ryan Roberts Signed-off-by: Edwar

[PATCH 2/3] Revert "selftests/mm: replace atomic_bool with pthread_barrier_t"

2024-10-18 Thread Edward Liaw
This reverts commit e61ef21e27e8deed8c474e9f47f4aa7bc37e138c. uffd_poll_thread may be called by other tests that do not initialize the pthread_barrier, so this approach is not correct. This will revert to using atomic_bool instead. Fixes: e61ef21e27e8 ("selftests/mm: replace atomic_bool with pth

Re: [PATCH 0/2] Enable compile testing for K3 RemoteProc drivers

2024-10-18 Thread Mathieu Poirier
On Wed, Oct 16, 2024 at 11:41:39AM -0500, Andrew Davis wrote: > Hello all, > > This is a follow up to [0] that adds the same for the other two K3 > RemoteProc drivers. Series is based on rproc-next branch. > > Thanks, > Andrew > > [0] https://lore.kernel.org/lkml/20241007132441.2732215-1-a...@ke

Re: [PATCH 1/2] selftest: rtc: Add to check rtc alarm status for alarm related test

2024-10-18 Thread Shuah Khan
On 10/18/24 02:27, Alexandre Belloni wrote: On 18/10/2024 12:26:44+0800, Joseph Jang wrote: On 2024/6/24 9:43 AM, Joseph Jang wrote: On 2024/6/21 3:36 AM, Alexandre Belloni wrote: On 23/05/2024 18:38:06-0700, Joseph Jang wrote: In alarm_wkalm_set and alarm_wkalm_set_minute test, they use

Re: [PATCH 2/2] selftest: rtc: Check if could access /dev/rtc0 before testing

2024-10-18 Thread Shuah Khan
On 10/17/24 22:18, Joseph Jang wrote: On 2024/9/25 3:57 AM, Shuah Khan wrote: On 9/24/24 13:31, Alexandre Belloni wrote: Hello, On 24/09/2024 10:05:43-0600, Shuah Khan wrote: On 9/23/24 23:37, Joseph Jang wrote: Hi Alexandre, Thank you for looking at the rtc patch. I saw you Acked the [PA

Re: [PATCH net-next v5 3/3] connector/cn_proc: Selftest for threads

2024-10-18 Thread Anjali Kulkarni
> On Oct 18, 2024, at 3:04 AM, Simon Horman wrote: > > On Thu, Oct 17, 2024 at 11:14:36AM -0700, Anjali Kulkarni wrote: >> Test to check if setting PROC_CN_MCAST_NOTIFY in proc connector API, allows >> a thread's non-zero exit status to be returned to proc_filter. >> >> The threads.c program c

Re: [PATCH net-next v5 0/3] Threads support in proc connector

2024-10-18 Thread Anjali Kulkarni
> On Oct 18, 2024, at 2:49 AM, Simon Horman wrote: > > On Thu, Oct 17, 2024 at 11:14:33AM -0700, Anjali Kulkarni wrote: >> Recently we committed a fix to allow processes to receive notifications for >> non-zero exits via the process connector module. Commit is a4c9a56e6a2c. >> >> However, for

Re: [PATCH] selftest: drivers: Add support to check duplicate hwirq

2024-10-18 Thread Shuah Khan
On 10/17/24 22:29, Joseph Jang wrote: On 2024/9/4 9:44 AM, Joseph Jang wrote: Validate there are no duplicate hwirq from the irq debug file system /sys/kernel/debug/irq/irqs/* per chip name. One example log show 2 duplicated hwirq in the irq debug file system. $ sudo cat /sys/kernel/debug/ir

[PATCH v9 9/9] selftests/pcie_bwctrl: Create selftests

2024-10-18 Thread Ilpo Järvinen
Create selftests for PCIe BW control through the PCIe cooling device sysfs interface. First, the BW control selftest finds the PCIe Port to test with. By default, the PCIe Port with the highest Link Speed is selected but another PCIe Port can be provided with -d parameter. The actual test steps t

Re: [PATCH RESEND] vdpa: solidrun: Fix UB bug with devres

2024-10-18 Thread Stefano Garzarella
On Wed, Oct 16, 2024 at 09:25:54AM +0200, Philipp Stanner wrote: In psnet_open_pf_bar() and snet_open_vf_bar() a string later passed to pcim_iomap_regions() is placed on the stack. Neither pcim_iomap_regions() nor the functions it calls copy that string. Should the string later ever be used, thi

Re: [PATCH] virtio_net: fix integer overflow in stats

2024-10-18 Thread Stefano Garzarella
On Wed, Oct 16, 2024 at 01:27:07PM -0400, Michael S. Tsirkin wrote: Static analysis on linux-next has detected the following issue in function virtnet_stats_ctx_init, in drivers/net/virtio_net.c : if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_CVQ) { queue_type = VIRTNET_

Re: [PATCH 1/2] selftests/mm: replace atomic_bool with pthread_barrier_t

2024-10-18 Thread Ryan Roberts
On 03/10/2024 22:17, Edward Liaw wrote: > Swaps synchronization primitive with pthread_barrier, so that > stdatomic.h does not need to be included. > > The synchronization is needed on Android ARM64; we see a deadlock with > pthread_create when the parent thread races forward before the child has

Re: [PATCH net-next v5 2/3] connector/cn_proc: Kunit tests for threads hash table

2024-10-18 Thread Stanislav Fomichev
On 10/18, Anjali Kulkarni wrote: > > > > On Oct 17, 2024, at 5:55 PM, Stanislav Fomichev > > wrote: > > > > On 10/18, Anjali Kulkarni wrote: > >> > >> > >>> On Oct 17, 2024, at 5:13 PM, Stanislav Fomichev > >>> wrote: > >>> > >>> On 10/17, Anjali Kulkarni wrote: > Kunit tests to test

[PATCH v2] openrisc: Implement fixmap to fix earlycon

2024-10-18 Thread Stafford Horne
With commit 53c98e35dcbc ("openrisc: mm: remove unneeded early ioremap code") it was commented that early ioremap was not used in OpenRISC. I acked this but was wrong, earlycon was using it. Earlycon setup now fails with the below trace: Kernel command line: earlycon [ cut he

Re: [PATCH] selftests: netfilter: remove unused rplnlh parameter

2024-10-18 Thread Antoine Tenart
Quoting Liu Jing (2024-10-17 09:25:34) > The rplnlh parameter is not used in many functions, so delete it. > > Signed-off-by: Liu Jing > --- > tools/testing/selftests/net/netfilter/conntrack_dump_flush.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/tools/testing

[PATCH net-next v22 02/14] mm: move the page fragment allocator from page_alloc into its own file

2024-10-18 Thread Yunsheng Lin
Inspired by [1], move the page fragment allocator from page_alloc into its own c file and header file, as we are about to make more change for it to replace another page_frag implementation in sock.c As this patchset is going to replace 'struct page_frag' with 'struct page_frag_cache' in sched.h,

[PATCH net-next v22 11/14] mm: page_frag: add testing for the newly added prepare API

2024-10-18 Thread Yunsheng Lin
Add testing for the newly added prepare API, for both aligned and non-aligned API, also probe API is also tested along with prepare API. CC: Alexander Duyck Signed-off-by: Yunsheng Lin --- .../selftests/mm/page_frag/page_frag_test.c | 76 +-- tools/testing/selftests/mm/run_vmt

[RFC PATCH] remoteproc: core: Add support for predefined notifyids

2024-10-18 Thread Daniel Baluta
Currently we generate notifyids in the linux kernel and override those found in rsc_table. This doesn't play well with users expecting to use the exact ids from rsc_table. So, use predefined notifyids found in rsc_table if any. Otherwise, let Linux generate the ids as before. Keypoint is we also

[PATCH net-next v22 01/14] mm: page_frag: add a test module for page_frag

2024-10-18 Thread Yunsheng Lin
The testing is done by ensuring that the fragment allocated from a frag_frag_cache instance is pushed into a ptr_ring instance in a kthread binded to a specified cpu, and a kthread binded to a specified cpu will pop the fragment from the ptr_ring and free the fragment. CC: Alexander Duyck Signed-

Re: [PATCH v2] remoteproc: qcom_q6v5_pas: disable auto boot for wpss

2024-10-18 Thread Dmitry Baryshkov
On Fri, Oct 18, 2024 at 04:29:11PM +0530, Balaji Pothunoori wrote: > Currently, the rproc "atomic_t power" variable is incremented during: > a. WPSS rproc auto boot. > b. AHB power on for ath11k. > > During AHB power off (rmmod ath11k_ahb.ko), rproc_shutdown fails > to unload the WPSS firmware bec

[PATCH net-next v22 04/14] mm: page_frag: avoid caller accessing 'page_frag_cache' directly

2024-10-18 Thread Yunsheng Lin
Use appropriate frag_page API instead of caller accessing 'page_frag_cache' directly. CC: Alexander Duyck Signed-off-by: Yunsheng Lin Reviewed-by: Alexander Duyck Acked-by: Chuck Lever --- drivers/vhost/net.c | 2 +- include/linux/page_frag_cache.h

[PATCH v2] remoteproc: qcom_q6v5_pas: disable auto boot for wpss

2024-10-18 Thread Balaji Pothunoori
Currently, the rproc "atomic_t power" variable is incremented during: a. WPSS rproc auto boot. b. AHB power on for ath11k. During AHB power off (rmmod ath11k_ahb.ko), rproc_shutdown fails to unload the WPSS firmware because the rproc->power value is '2', causing the atomic_dec_and_test(&rproc->pow

Re: [PATCH V3 15/15] selftests/resctrl: Replace magic constants used as array size

2024-10-18 Thread Ilpo Järvinen
On Thu, 17 Oct 2024, Reinette Chatre wrote: > The Memory Bandwidth Allocation (MBA) test iterates through all possible > MBA allocations, from 10% (ALLOCATION_MIN) to 100% (ALLOCATION_MAX) with > increments of 10% (ALLOCATION_STEP) at each iteration. During each > iteration the test measures the a

[PATCH] selftests/net: Add missing va_end in test_snprintf

2024-10-18 Thread Liu Jing
There is no va_end after va_copy, just add it. Signed-off-by: Liu Jing Signed-off-by: Liu Jing --- tools/testing/selftests/net/tcp_ao/lib/aolib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/testing/selftests/net/tcp_ao/lib/aolib.h b/tools/testing/selftests/net/tcp_ao/lib/aolib.h

[PATCH] selftests: netfilter: remove unused rplnlh parameter

2024-10-18 Thread Liu Jing
The rplnlh parameter is not used in many functions, so delete it. Signed-off-by: Liu Jing --- tools/testing/selftests/net/netfilter/conntrack_dump_flush.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/testing/selftests/net/netfilter/conntrack_dump_flush.c b/tool

Re: [PATCH V3 12/15] selftests/resctrl: Use cache size to determine "fill_buf" buffer size

2024-10-18 Thread Ilpo Järvinen
On Thu, 17 Oct 2024, Reinette Chatre wrote: > By default the MBM and MBA tests use the "fill_buf" benchmark to > read from a buffer with the goal to measure the memory bandwidth > generated by this buffer access. > > Care should be taken when sizing the buffer used by the "fill_buf" > benchmark.

[PATCH v2] kselftests: Add test to detect boot event slowdowns

2024-10-18 Thread Laura Nao
Introduce a new kselftest to identify slowdowns in key boot events. This test uses ftrace to monitor the start and end times, as well as the durations of all initcalls, and compares these timings to reference values to identify significant slowdowns. The script functions in two modes: the 'generate

Re: [PATCH net-next v5 3/3] connector/cn_proc: Selftest for threads

2024-10-18 Thread Simon Horman
On Thu, Oct 17, 2024 at 11:14:36AM -0700, Anjali Kulkarni wrote: > Test to check if setting PROC_CN_MCAST_NOTIFY in proc connector API, allows > a thread's non-zero exit status to be returned to proc_filter. > > The threads.c program creates 2 child threads. 1st thread handles signal > SIGSEGV, an

Re: [PATCH net-next v5 0/3] Threads support in proc connector

2024-10-18 Thread Simon Horman
On Thu, Oct 17, 2024 at 11:14:33AM -0700, Anjali Kulkarni wrote: > Recently we committed a fix to allow processes to receive notifications for > non-zero exits via the process connector module. Commit is a4c9a56e6a2c. > > However, for threads, when it does a pthread_exit(&exit_status) call, the >

Re: [PATCH] remoteproc: qcom_q6v5_pas: disable auto boot for wpss

2024-10-18 Thread Dmitry Baryshkov
On Fri, 18 Oct 2024 at 11:42, Balaji Pothunoori (QUIC) wrote: > > > -Original Message- > > From: Dmitry Baryshkov > > Sent: Friday, October 18, 2024 3:59 AM > > To: Balaji Pothunoori (QUIC) > > Cc: anders...@kernel.org; mathieu.poir...@linaro.org; linux-arm- > > m...@vger.kernel.org; lin

Re: [RFC PATCH 26/39] KVM: guest_memfd: Track faultability within a struct kvm_gmem_private

2024-10-18 Thread Patrick Roy
On Fri, 2024-10-18 at 08:50 +0100, David Hildenbrand wrote: > On 18.10.24 09:15, Patrick Roy wrote: >> >> >> On Thu, 2024-10-17 at 20:18 +0100, Jason Gunthorpe wrote: >>> On Thu, Oct 17, 2024 at 03:11:10PM -0400, Peter Xu wrote: On Thu, Oct 17, 2024 at 02:10:10PM -0300, Jason Gunthorpe wrot

Re: [PATCH v2] selftest/tcp-ao: Add filter tests

2024-10-18 Thread Simon Horman
On Tue, Oct 15, 2024 at 10:51:52PM -0700, Leo Stone wrote: > Add tests that check if getsockopt(TCP_AO_GET_KEYS) returns the right > keys when using different filters. > > Sample output: > > > # ok 114 filter keys: by sndid, rcvid, address > > # ok 115 filter keys: by is_current > > # ok 116 filt

Re: [PATCH V3 10/15] selftests/resctrl: Make benchmark parameter passing robust

2024-10-18 Thread Ilpo Järvinen
On Thu, 17 Oct 2024, Reinette Chatre wrote: > The benchmark used during the CMT, MBM, and MBA tests can be provided by > the user via (-b) parameter, if not provided the default "fill_buf" > benchmark is used. The user is additionally able to override > any of the "fill_buf" default parameters whe

Re: [PATCH V3 08/15] selftests/resctrl: Only support measured read operation

2024-10-18 Thread Ilpo Järvinen
On Thu, 17 Oct 2024, Reinette Chatre wrote: > The CMT, MBM, and MBA tests rely on a benchmark to generate > memory traffic. By default this is the "fill_buf" benchmark that > can be replaced via the "-b" command line argument. > > The original intent of the "-b" command line parameter was > to re

Re: [PATCH V3 07/15] selftests/resctrl: Remove "once" parameter required to be false

2024-10-18 Thread Ilpo Järvinen
On Thu, 17 Oct 2024, Reinette Chatre wrote: > The CMT, MBM, and MBA tests rely on a benchmark that runs while > the test makes changes to needed configuration (for example memory > bandwidth allocation) and takes needed measurements. By default > the "fill_buf" benchmark is used and by default (vi

Re: [PATCH V3 05/15] selftests/resctrl: Protect against array overflow when reading strings

2024-10-18 Thread Ilpo Järvinen
On Thu, 17 Oct 2024, Reinette Chatre wrote: > resctrl selftests discover system properties via a variety of sysfs files. > The MBM and MBA tests need to discover the event and umask with which to > configure the performance event used to measure read memory bandwidth. > This is done by parsing the

Re: [PATCH V3 02/15] selftests/resctrl: Print accurate buffer size as part of MBM results

2024-10-18 Thread Ilpo Järvinen
On Thu, 17 Oct 2024, Reinette Chatre wrote: > By default the MBM test uses the "fill_buf" benchmark to keep reading > from a buffer with size DEFAULT_SPAN while measuring memory bandwidth. > User space can provide an alternate benchmark or amend the size of > the buffer "fill_buf" should use. > >

RE: [PATCH] remoteproc: qcom_q6v5_pas: disable auto boot for wpss

2024-10-18 Thread Balaji Pothunoori (QUIC)
> -Original Message- > From: Dmitry Baryshkov > Sent: Friday, October 18, 2024 3:59 AM > To: Balaji Pothunoori (QUIC) > Cc: anders...@kernel.org; mathieu.poir...@linaro.org; linux-arm- > m...@vger.kernel.org; linux-remotep...@vger.kernel.org; linux- > ker...@vger.kernel.org; ath...@lists.

Re: [PATCH 1/2] selftest: rtc: Add to check rtc alarm status for alarm related test

2024-10-18 Thread Alexandre Belloni
On 18/10/2024 12:26:44+0800, Joseph Jang wrote: > > > On 2024/6/24 9:43 AM, Joseph Jang wrote: > > > > > > On 2024/6/21 3:36 AM, Alexandre Belloni wrote: > > > On 23/05/2024 18:38:06-0700, Joseph Jang wrote: > > > > In alarm_wkalm_set and alarm_wkalm_set_minute test, they use different > > > >

Re: [PATCH net-next v9 23/23] testing/selftest: add test tool and scripts for ovpn module

2024-10-18 Thread Antonio Quartulli
On 17/10/2024 23:40, Shuah Khan wrote: On 10/17/24 05:27, Antonio Quartulli wrote: On 16/10/2024 23:14, Shuah Khan wrote: On 10/15/24 19:03, Antonio Quartulli wrote: The ovpn-cli tool can be compiled and used as selftest for the ovpn kernel module. It implements the netlink API and can thus b

Re: [RFC PATCH 26/39] KVM: guest_memfd: Track faultability within a struct kvm_gmem_private

2024-10-18 Thread David Hildenbrand
On 18.10.24 09:15, Patrick Roy wrote: On Thu, 2024-10-17 at 20:18 +0100, Jason Gunthorpe wrote: On Thu, Oct 17, 2024 at 03:11:10PM -0400, Peter Xu wrote: On Thu, Oct 17, 2024 at 02:10:10PM -0300, Jason Gunthorpe wrote: If so, maybe that's a non-issue for non-CoCo, where the VM object / gmemf

Re: [PATCH v4 3/4] selftests: pidfd: add pidfd.h UAPI wrapper

2024-10-18 Thread Lorenzo Stoakes
On Thu, Oct 17, 2024 at 02:45:43PM -0700, John Hubbard wrote: > On 10/17/24 2:05 PM, Lorenzo Stoakes wrote: > > Conflicts can arise between system fcntl.h and linux/fcntl.h, imported by > > the linux/pidfd.h UAPI header. > > > > Work around this by adding a wrapper for linux/pidfd.h to > > tools/in

Re: [RFC PATCH 26/39] KVM: guest_memfd: Track faultability within a struct kvm_gmem_private

2024-10-18 Thread Patrick Roy
On Thu, 2024-10-17 at 20:18 +0100, Jason Gunthorpe wrote: > On Thu, Oct 17, 2024 at 03:11:10PM -0400, Peter Xu wrote: >> On Thu, Oct 17, 2024 at 02:10:10PM -0300, Jason Gunthorpe wrote: If so, maybe that's a non-issue for non-CoCo, where the VM object / gmemfd object (when created) can

Re: [RFC PATCH 30/39] KVM: guest_memfd: Handle folio preparation for guest_memfd mmap

2024-10-18 Thread Patrick Roy
On Fri, 2024-10-18 at 00:16 +0100, Ackerley Tng wrote: > Patrick Roy writes: > >> On Tue, 2024-10-08 at 20:56 +0100, Sean Christopherson wrote: >>> On Tue, Oct 08, 2024, Ackerley Tng wrote: Patrick Roy writes: > For the "non-CoCo with direct map entries removed" VMs that we at AWS >>