We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be339dd commit 9fe17b7Copy full SHA for 9fe17b7
tools/testing/selftests/bpf/prog_tests/xdp_adjust_tail.c
@@ -82,6 +82,8 @@ static void test_xdp_adjust_tail_grow2(void)
82
/* SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) */
83
#if defined(__s390x__)
84
int tailroom = 512;
85
+#elif defined(__powerpc__)
86
+ int tailroom = 384;
87
#else
88
int tailroom = 320;
89
#endif
tools/testing/selftests/bpf/progs/test_xdp_adjust_tail_grow.c
@@ -10,6 +10,8 @@ int _xdp_adjust_tail_grow(struct xdp_md *xdp)
10
11
#if defined(__TARGET_ARCH_s390)
12
13
+#elif defined(__TARGET_ARCH_powerpc)
14
15
16
17
0 commit comments