[Kernel-packages] [Bug 1840935] Re: [Regression] net test from ubuntu_kernel_selftests failed due to bpf test compilation issue

2019-11-12 Thread Sean Feole
Verified Fix Released, updating bug

** Changed in: ubuntu-kernel-tests
   Status: New => Triaged

** Changed in: ubuntu-kernel-tests
 Assignee: (unassigned) => Sean Feole (sfeole)

** Changed in: linux (Ubuntu)
   Status: Incomplete => Fix Released

** Changed in: ubuntu-kernel-tests
   Status: Triaged => Fix Released

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1840935

Title:
  [Regression] net test from ubuntu_kernel_selftests failed due to bpf
  test compilation issue

Status in ubuntu-kernel-tests:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Bionic:
  Fix Released

Bug description:
  [Impact]
  Commit a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) in 
Bionic tree

  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  gcc -Wall -O2 -I../../../include/uapi -I../../../lib 
-I../../../../include/generated  -I../../../includetest_verifier.c 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/libbpf.a 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/cgroup_helpers.c
 -lcap -lelf -lrt -o 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier
  test_verifier.c:2173:4: error: ‘struct bpf_test’ has no member named ‘retval’
     .retval = 0,
  ^~
  ../lib.mk:121: recipe for target 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier'
 failed
  make[1]: *** 
[/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier]
 Error 1
  make[1]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  Makefile:73: recipe for target 'all' failed
  make: *** [all] Error 2
  make: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'

  [Fix]
  Bionic misses 111e6b45315c (selftests/bpf: make test_verifier run most 
programs), which adds the 'retval' member to struct bpf_test. The fix is a 
SAUCE patch to remove setting '.retval = 0'.

  [Test Case]
  Run bpf kernel selftests.

  [Regression Potential]
  Low. There's a chance that not backporting 111e6b45315c (selftests/bpf: make 
test_verifier run most programs) will cause possible bugs on the changes added 
by a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) to 
remain uncaught.

  
  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-1040-gke 4.15.0-1040.42
  ProcVersionSignature: Ubuntu 4.15.0-1040.42-gke 4.15.18
  Uname: Linux 4.15.0-1040-gke x86_64
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  Date: Wed Aug 21 15:09:32 2019
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-gke-4.15
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1840935/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1840935] Re: [Regression] net test from ubuntu_kernel_selftests failed due to bpf test compilation issue

2019-08-26 Thread Kleber Sacilotto de Souza
ubuntu_kernel_selftests.net completed successfully with kernel
4.15.0-60.67.

https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
/autopkgtest-bionic/bionic/amd64/l/linux/20190824_081505_2c3e7@/log.gz

** Tags removed: verification-needed-bionic
** Tags added: verification-done-bionic

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1840935

Title:
  [Regression] net test from ubuntu_kernel_selftests failed due to bpf
  test compilation issue

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Fix Committed

Bug description:
  [Impact]
  Commit a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) in 
Bionic tree

  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  gcc -Wall -O2 -I../../../include/uapi -I../../../lib 
-I../../../../include/generated  -I../../../includetest_verifier.c 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/libbpf.a 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/cgroup_helpers.c
 -lcap -lelf -lrt -o 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier
  test_verifier.c:2173:4: error: ‘struct bpf_test’ has no member named ‘retval’
     .retval = 0,
  ^~
  ../lib.mk:121: recipe for target 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier'
 failed
  make[1]: *** 
[/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier]
 Error 1
  make[1]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  Makefile:73: recipe for target 'all' failed
  make: *** [all] Error 2
  make: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'

  [Fix]
  Bionic misses 111e6b45315c (selftests/bpf: make test_verifier run most 
programs), which adds the 'retval' member to struct bpf_test. The fix is a 
SAUCE patch to remove setting '.retval = 0'.

  [Test Case]
  Run bpf kernel selftests.

  [Regression Potential]
  Low. There's a chance that not backporting 111e6b45315c (selftests/bpf: make 
test_verifier run most programs) will cause possible bugs on the changes added 
by a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) to 
remain uncaught.

  
  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-1040-gke 4.15.0-1040.42
  ProcVersionSignature: Ubuntu 4.15.0-1040.42-gke 4.15.18
  Uname: Linux 4.15.0-1040-gke x86_64
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  Date: Wed Aug 21 15:09:32 2019
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-gke-4.15
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1840935/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1840935] Re: [Regression] net test from ubuntu_kernel_selftests failed due to bpf test compilation issue

2019-08-24 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed-
bionic' to 'verification-done-bionic'. If the problem still exists,
change the tag 'verification-needed-bionic' to 'verification-failed-
bionic'.

If verification is not done by 5 working days from today, this fix will
be dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!


** Tags added: verification-needed-bionic

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1840935

Title:
  [Regression] net test from ubuntu_kernel_selftests failed due to bpf
  test compilation issue

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Fix Committed

Bug description:
  [Impact]
  Commit a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) in 
Bionic tree

  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  gcc -Wall -O2 -I../../../include/uapi -I../../../lib 
-I../../../../include/generated  -I../../../includetest_verifier.c 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/libbpf.a 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/cgroup_helpers.c
 -lcap -lelf -lrt -o 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier
  test_verifier.c:2173:4: error: ‘struct bpf_test’ has no member named ‘retval’
     .retval = 0,
  ^~
  ../lib.mk:121: recipe for target 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier'
 failed
  make[1]: *** 
[/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier]
 Error 1
  make[1]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  Makefile:73: recipe for target 'all' failed
  make: *** [all] Error 2
  make: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'

  [Fix]
  Bionic misses 111e6b45315c (selftests/bpf: make test_verifier run most 
programs), which adds the 'retval' member to struct bpf_test. The fix is a 
SAUCE patch to remove setting '.retval = 0'.

  [Test Case]
  Run bpf kernel selftests.

  [Regression Potential]
  Low. There's a chance that not backporting 111e6b45315c (selftests/bpf: make 
test_verifier run most programs) will cause possible bugs on the changes added 
by a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) to 
remain uncaught.

  
  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-1040-gke 4.15.0-1040.42
  ProcVersionSignature: Ubuntu 4.15.0-1040.42-gke 4.15.18
  Uname: Linux 4.15.0-1040-gke x86_64
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  Date: Wed Aug 21 15:09:32 2019
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-gke-4.15
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1840935/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1840935] Re: [Regression] net test from ubuntu_kernel_selftests failed due to bpf test compilation issue

2019-08-22 Thread Stefan Bader
** Changed in: linux (Ubuntu Bionic)
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1840935

Title:
  [Regression] net test from ubuntu_kernel_selftests failed due to bpf
  test compilation issue

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Fix Committed

Bug description:
  [Impact]
  Commit a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) in 
Bionic tree

  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  gcc -Wall -O2 -I../../../include/uapi -I../../../lib 
-I../../../../include/generated  -I../../../includetest_verifier.c 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/libbpf.a 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/cgroup_helpers.c
 -lcap -lelf -lrt -o 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier
  test_verifier.c:2173:4: error: ‘struct bpf_test’ has no member named ‘retval’
     .retval = 0,
  ^~
  ../lib.mk:121: recipe for target 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier'
 failed
  make[1]: *** 
[/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier]
 Error 1
  make[1]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  Makefile:73: recipe for target 'all' failed
  make: *** [all] Error 2
  make: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'

  [Fix]
  Bionic misses 111e6b45315c (selftests/bpf: make test_verifier run most 
programs), which adds the 'retval' member to struct bpf_test. The fix is a 
SAUCE patch to remove setting '.retval = 0'.

  [Test Case]
  Run bpf kernel selftests.

  [Regression Potential]
  Low. There's a chance that not backporting 111e6b45315c (selftests/bpf: make 
test_verifier run most programs) will cause possible bugs on the changes added 
by a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) to 
remain uncaught.

  
  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-1040-gke 4.15.0-1040.42
  ProcVersionSignature: Ubuntu 4.15.0-1040.42-gke 4.15.18
  Uname: Linux 4.15.0-1040-gke x86_64
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  Date: Wed Aug 21 15:09:32 2019
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-gke-4.15
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1840935/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1840935] Re: [Regression] net test from ubuntu_kernel_selftests failed due to bpf test compilation issue

2019-08-22 Thread Kleber Sacilotto de Souza
** Description changed:

- Commit e434b8cd (bpf: relax verifier restriction on BPF_MOV | BPF_ALU)
- in Bionic tree
+ [Impact]
+ Commit a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) in 
Bionic tree
  
  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  gcc -Wall -O2 -I../../../include/uapi -I../../../lib 
-I../../../../include/generated  -I../../../includetest_verifier.c 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/libbpf.a 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/cgroup_helpers.c
 -lcap -lelf -lrt -o 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier
  test_verifier.c:2173:4: error: ‘struct bpf_test’ has no member named ‘retval’
     .retval = 0,
  ^~
  ../lib.mk:121: recipe for target 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier'
 failed
  make[1]: *** 
[/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier]
 Error 1
  make[1]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  Makefile:73: recipe for target 'all' failed
  make: *** [all] Error 2
  make: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  
+ [Fix]
+ Bionic misses 111e6b45315c (selftests/bpf: make test_verifier run most 
programs), which adds the 'retval' member to struct bpf_test. The fix is a 
SAUCE patch to remove setting '.retval = 0'.
+ 
+ [Test Case]
+ Run bpf kernel selftests.
+ 
+ [Regression Potential]
+ Low. There's a chance that not backporting 111e6b45315c (selftests/bpf: make 
test_verifier run most programs) will cause possible bugs on the changes added 
by a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) to 
remain uncaught.
+ 
+ 
  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-1040-gke 4.15.0-1040.42
  ProcVersionSignature: Ubuntu 4.15.0-1040.42-gke 4.15.18
  Uname: Linux 4.15.0-1040-gke x86_64
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  Date: Wed Aug 21 15:09:32 2019
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-gke-4.15
  UpgradeStatus: No upgrade log present (probably fresh install)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1840935

Title:
  [Regression] net test from ubuntu_kernel_selftests failed due to bpf
  test compilation issue

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  In Progress

Bug description:
  [Impact]
  Commit a25d38b54163 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU) in 
Bionic tree

  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
 

[Kernel-packages] [Bug 1840935] Re: [Regression] net test from ubuntu_kernel_selftests failed due to bpf test compilation issue

2019-08-21 Thread Kleber Sacilotto de Souza
Commit e434b8cd (bpf: relax verifier restriction on BPF_MOV | BPF_ALU)
seems to need as prerequisite:

111e6b45315c selftests/bpf: make test_verifier run most programs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1840935

Title:
  [Regression] net test from ubuntu_kernel_selftests failed due to bpf
  test compilation issue

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  In Progress

Bug description:
  Commit e434b8cd (bpf: relax verifier restriction on BPF_MOV | BPF_ALU)
  in Bionic tree

  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  gcc -Wall -O2 -I../../../include/uapi -I../../../lib 
-I../../../../include/generated  -I../../../includetest_verifier.c 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/libbpf.a 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/cgroup_helpers.c
 -lcap -lelf -lrt -o 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier
  test_verifier.c:2173:4: error: ‘struct bpf_test’ has no member named ‘retval’
     .retval = 0,
  ^~
  ../lib.mk:121: recipe for target 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier'
 failed
  make[1]: *** 
[/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier]
 Error 1
  make[1]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  Makefile:73: recipe for target 'all' failed
  make: *** [all] Error 2
  make: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-1040-gke 4.15.0-1040.42
  ProcVersionSignature: Ubuntu 4.15.0-1040.42-gke 4.15.18
  Uname: Linux 4.15.0-1040-gke x86_64
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  Date: Wed Aug 21 15:09:32 2019
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-gke-4.15
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1840935/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1840935] Re: [Regression] net test from ubuntu_kernel_selftests failed due to bpf test compilation issue

2019-08-21 Thread Kleber Sacilotto de Souza
** Changed in: linux (Ubuntu Bionic)
   Status: Incomplete => Confirmed

** Changed in: linux (Ubuntu Bionic)
   Status: Confirmed => In Progress

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1840935

Title:
  [Regression] net test from ubuntu_kernel_selftests failed due to bpf
  test compilation issue

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  In Progress

Bug description:
  Commit e434b8cd (bpf: relax verifier restriction on BPF_MOV | BPF_ALU)
  in Bionic tree

  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  gcc -Wall -O2 -I../../../include/uapi -I../../../lib 
-I../../../../include/generated  -I../../../includetest_verifier.c 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/libbpf.a 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/cgroup_helpers.c
 -lcap -lelf -lrt -o 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier
  test_verifier.c:2173:4: error: ‘struct bpf_test’ has no member named ‘retval’
     .retval = 0,
  ^~
  ../lib.mk:121: recipe for target 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier'
 failed
  make[1]: *** 
[/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier]
 Error 1
  make[1]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  Makefile:73: recipe for target 'all' failed
  make: *** [all] Error 2
  make: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-1040-gke 4.15.0-1040.42
  ProcVersionSignature: Ubuntu 4.15.0-1040.42-gke 4.15.18
  Uname: Linux 4.15.0-1040-gke x86_64
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  Date: Wed Aug 21 15:09:32 2019
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C.UTF-8
   SHELL=/bin/bash
  SourcePackage: linux-signed-gke-4.15
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1840935/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1840935] Re: [Regression] net test from ubuntu_kernel_selftests failed due to bpf test compilation issue

2019-08-21 Thread Po-Hsu Lin
** Description changed:

- Commit a25d38b5 (bpf: relax verifier restriction on BPF_MOV | BPF_ALU)
+ Commit e434b8cd (bpf: relax verifier restriction on BPF_MOV | BPF_ALU)
+ in Bionic tree
  
  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  gcc -Wall -O2 -I../../../include/uapi -I../../../lib 
-I../../../../include/generated  -I../../../includetest_verifier.c 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/libbpf.a 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/cgroup_helpers.c
 -lcap -lelf -lrt -o 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier
  test_verifier.c:2173:4: error: ‘struct bpf_test’ has no member named ‘retval’
-.retval = 0,
- ^~
+    .retval = 0,
+ ^~
  ../lib.mk:121: recipe for target 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier'
 failed
  make[1]: *** 
[/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier]
 Error 1
  make[1]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  Makefile:73: recipe for target 'all' failed
  make: *** [all] Error 2
  make: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  
  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-1040-gke 4.15.0-1040.42
  ProcVersionSignature: Ubuntu 4.15.0-1040.42-gke 4.15.18
  Uname: Linux 4.15.0-1040-gke x86_64
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  Date: Wed Aug 21 15:09:32 2019
  ProcEnviron:
-  TERM=xterm-256color
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=C.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=C.UTF-8
+  SHELL=/bin/bash
  SourcePackage: linux-signed-gke-4.15
  UpgradeStatus: No upgrade log present (probably fresh install)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1840935

Title:
  [Regression] net test from ubuntu_kernel_selftests failed due to bpf
  test compilation issue

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Incomplete

Bug description:
  Commit e434b8cd (bpf: relax verifier restriction on BPF_MOV | BPF_ALU)
  in Bionic tree

  Is causing bpf test compilation failure:
  $ sudo make -C tools/testing/selftests TARGETS=bpf run_tests
  make: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests'
  make[1]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  make -C ../../../lib/bpf 
OUTPUT=/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/
  make[2]: Entering directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from 
latest version at 'include/uapi/linux/bpf.h'
  make[2]: Leaving directory 
'/home/jenkins/ubuntu-gke-4.15-bionic/tools/lib/bpf'
  gcc -Wall -O2 -I../../../include/uapi -I../../../lib 
-I../../../../include/generated  -I../../../includetest_verifier.c 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/libbpf.a 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/cgroup_helpers.c
 -lcap -lelf -lrt -o 
/home/jenkins/ubuntu-gke-4.15-bionic/tools/testing/selftests/bpf/test_verifier
  test_verifier.c:2173:4: error: ‘struct bpf_test’ has no member named ‘retval’
     .retval = 0,