bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH bpf] selftests/bpf: Add lru_bug to s390x deny list
@ 2022-08-10 20:07 Daniel Müller
  2022-08-11  0:27 ` Mykola Lysenko
  2022-08-12 16:50 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Daniel Müller @ 2022-08-10 20:07 UTC (permalink / raw)
  To: bpf, ast, andrii, daniel, kernel-team

The lru_bug BPF selftest is failing execution on s390x machines. The
failure is due to program attachment failing in turn, similar to a bunch
of other tests. Those other tests have already been deny-listed and with
this change we do the same for the lru_bug test, adding it to the
corresponding file.

Fixes: de7b9927105b ("selftests/bpf: Add test for prealloc_lru_pop bug")
Signed-off-by: Daniel Müller <deso@posteo.net>
---
 tools/testing/selftests/bpf/DENYLIST.s390x | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/bpf/DENYLIST.s390x b/tools/testing/selftests/bpf/DENYLIST.s390x
index e33cab..db9810 100644
--- a/tools/testing/selftests/bpf/DENYLIST.s390x
+++ b/tools/testing/selftests/bpf/DENYLIST.s390x
@@ -65,3 +65,4 @@ send_signal                              # intermittently fails to receive signa
 select_reuseport                         # intermittently fails on new s390x setup
 xdp_synproxy                             # JIT does not support calling kernel function                                (kfunc)
 unpriv_bpf_disabled                      # fentry
+lru_bug                                  # prog 'printk': failed to auto-attach: -524
-- 
2.30.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH bpf] selftests/bpf: Add lru_bug to s390x deny list
  2022-08-10 20:07 [PATCH bpf] selftests/bpf: Add lru_bug to s390x deny list Daniel Müller
@ 2022-08-11  0:27 ` Mykola Lysenko
  2022-08-12 16:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Mykola Lysenko @ 2022-08-11  0:27 UTC (permalink / raw)
  To: Daniel Müller; +Cc: Mykola Lysenko, bpf, ast, andrii, daniel, Kernel Team

Thanks Daniel for fixing this quickly. It should recover: https://github.com/kernel-patches/bpf/runs/7772305011?check_suite_focus=true

Acked-by: Mykola Lysenko <mykolal@fb.com>

> On Aug 10, 2022, at 1:07 PM, Daniel Müller <deso@posteo.net> wrote:
> 
> The lru_bug BPF selftest is failing execution on s390x machines. The
> failure is due to program attachment failing in turn, similar to a bunch
> of other tests. Those other tests have already been deny-listed and with
> this change we do the same for the lru_bug test, adding it to the
> corresponding file.
> 
> Fixes: de7b9927105b ("selftests/bpf: Add test for prealloc_lru_pop bug")
> Signed-off-by: Daniel Müller <deso@posteo.net>
> ---
> tools/testing/selftests/bpf/DENYLIST.s390x | 1 +
> 1 file changed, 1 insertion(+)
> 
> diff --git a/tools/testing/selftests/bpf/DENYLIST.s390x b/tools/testing/selftests/bpf/DENYLIST.s390x
> index e33cab..db9810 100644
> --- a/tools/testing/selftests/bpf/DENYLIST.s390x
> +++ b/tools/testing/selftests/bpf/DENYLIST.s390x
> @@ -65,3 +65,4 @@ send_signal                              # intermittently fails to receive signa
> select_reuseport                         # intermittently fails on new s390x setup
> xdp_synproxy                             # JIT does not support calling kernel function                                (kfunc)
> unpriv_bpf_disabled                      # fentry
> +lru_bug                                  # prog 'printk': failed to auto-attach: -524
> -- 
> 2.30.2
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH bpf] selftests/bpf: Add lru_bug to s390x deny list
  2022-08-10 20:07 [PATCH bpf] selftests/bpf: Add lru_bug to s390x deny list Daniel Müller
  2022-08-11  0:27 ` Mykola Lysenko
@ 2022-08-12 16:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-08-12 16:50 UTC (permalink / raw)
  To: =?utf-8?q?Daniel_M=C3=BCller_=3Cdeso=40posteo=2Enet=3E?=
  Cc: bpf, ast, andrii, daniel, kernel-team

Hello:

This patch was applied to bpf/bpf.git (master)
by Alexei Starovoitov <ast@kernel.org>:

On Wed, 10 Aug 2022 20:07:10 +0000 you wrote:
> The lru_bug BPF selftest is failing execution on s390x machines. The
> failure is due to program attachment failing in turn, similar to a bunch
> of other tests. Those other tests have already been deny-listed and with
> this change we do the same for the lru_bug test, adding it to the
> corresponding file.
> 
> Fixes: de7b9927105b ("selftests/bpf: Add test for prealloc_lru_pop bug")
> Signed-off-by: Daniel Müller <deso@posteo.net>
> 
> [...]

Here is the summary with links:
  - [bpf] selftests/bpf: Add lru_bug to s390x deny list
    https://git.kernel.org/bpf/bpf/c/27e23836ce22

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-08-12 16:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-10 20:07 [PATCH bpf] selftests/bpf: Add lru_bug to s390x deny list Daniel Müller
2022-08-11  0:27 ` Mykola Lysenko
2022-08-12 16:50 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).