lists.linaro.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
2021
December
November
October
September
August
July
June
May
April
March
February
January
2020
December
November
October
September
August
July
June
May
April
March
February
January
2019
December
November
October
September
August
July
June
May
April
March
February
January
2018
December
November
October
September
August
July
June
May
April
March
February
January
2017
December
November
List overview
Download
Linux-stable-mirror
July 2019
----- 2025 -----
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
----- 2021 -----
December 2021
November 2021
October 2021
September 2021
August 2021
July 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
----- 2020 -----
December 2020
November 2020
October 2020
September 2020
August 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
----- 2019 -----
December 2019
November 2019
October 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
----- 2018 -----
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
----- 2017 -----
December 2017
November 2017
linux-stable-mirror@lists.linaro.org
317 participants
1084 discussions
Start a n
N
ew thread
[PATCH] Bluetooth: SMP: Workaround Microsoft Surface Precision Mouse bug
by Szymon Janc
Microsoft Surface Precision Mouse provides bogus identity address when pairing. It connects with Static Random address but provides Public Address in SMP Identity Address Information PDU. Address has same value but type is different. Workaround this by dropping IRK if ID address discrepancy is detected. > HCI Event: LE Meta Event (0x3e) plen 19 LE Connection Complete (0x01) Status: Success (0x00) Handle: 75 Role: Master (0x00) Peer address type: Random (0x01) Peer address: E0:52:33:93:3B:21 (Static) Connection interval: 50.00 msec (0x0028) Connection latency: 0 (0x0000) Supervision timeout: 420 msec (0x002a) Master clock accuracy: 0x00 .... > ACL Data RX: Handle 75 flags 0x02 dlen 12 SMP: Identity Address Information (0x09) len 7 Address type: Public (0x00) Address: E0:52:33:93:3B:21 Signed-off-by: Szymon Janc <szymon.janc(a)codecoup.pl> Tested-by: Maarten Fonville <maarten.fonville(a)gmail.com> Bugzilla:
https://bugzilla.kernel.org/show_bug.cgi?id=199461
Cc: stable(a)vger.kernel.org --- net/bluetooth/smp.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c index e68c715f8d37..d528d95a2c27 100644 --- a/net/bluetooth/smp.c +++ b/net/bluetooth/smp.c @@ -2579,6 +2579,20 @@ static int smp_cmd_ident_addr_info(struct l2cap_conn *conn, goto distribute; } + /* + * Drop IRK if peer is using identity address during pairing but is + * providing different address as identity information. + * + * Microsoft Surface Precision Mouse is known to have this bug. + */ + if (hci_is_identity_address(&hcon->dst, hcon->dst_type) && + (bacmp(&info->bdaddr, &hcon->dst) || + info->addr_type != hcon->dst_type)) { + bt_dev_err(hcon->hdev, + "ignoring IRK with invalid identity address"); + goto distribute; + } + bacpy(&smp->id_addr, &info->bdaddr); smp->id_addr_type = info->addr_type; -- 2.21.0
5 years, 6 months
2
2
0
0
stable-rc/linux-5.1.y boot: 139 boots: 3 failed, 136 passed (v5.1.16-89-g2b5fd394355a)
by kernelci.org bot
stable-rc/linux-5.1.y boot: 139 boots: 3 failed, 136 passed (v5.1.16-89-g2b5fd394355a) Full Boot Summary:
https://kernelci.org/boot/all/job/stable-rc/branch/linux-5.1.y/kernel/v5.1.…
Full Build Summary:
https://kernelci.org/build/stable-rc/branch/linux-5.1.y/kernel/v5.1.16-89-g…
Tree: stable-rc Branch: linux-5.1.y Git Describe: v5.1.16-89-g2b5fd394355a Git Commit: 2b5fd394355ac0b2cc9572232727cb2bce7c15a7 Git URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Tested: 79 unique boards, 27 SoC families, 17 builds out of 209 Boot Failures Detected: arm: sunxi_defconfig: gcc-8: sun7i-a20-bananapi: 1 failed lab multi_v7_defconfig: gcc-8: bcm4708-smartrg-sr400ac: 1 failed lab sun7i-a20-bananapi: 1 failed lab --- For more info write to <info(a)kernelci.org>
5 years, 6 months
1
0
0
0
stable-rc/linux-4.14.y boot: 129 boots: 4 failed, 125 passed (v4.14.132-53-g9dcaaa6f681f)
by kernelci.org bot
stable-rc/linux-4.14.y boot: 129 boots: 4 failed, 125 passed (v4.14.132-53-g9dcaaa6f681f) Full Boot Summary:
https://kernelci.org/boot/all/job/stable-rc/branch/linux-4.14.y/kernel/v4.1…
Full Build Summary:
https://kernelci.org/build/stable-rc/branch/linux-4.14.y/kernel/v4.14.132-5…
Tree: stable-rc Branch: linux-4.14.y Git Describe: v4.14.132-53-g9dcaaa6f681f Git Commit: 9dcaaa6f681f924b484eec519c4db6a3f4fc22f3 Git URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Tested: 69 unique boards, 26 SoC families, 16 builds out of 201 Boot Failures Detected: arc: hsdk_defconfig: gcc-8: hsdk: 1 failed lab arm: sunxi_defconfig: gcc-8: sun7i-a20-bananapi: 1 failed lab multi_v7_defconfig: gcc-8: sun7i-a20-bananapi: 1 failed lab arm64: defconfig: gcc-8: rk3399-firefly: 1 failed lab --- For more info write to <info(a)kernelci.org>
5 years, 6 months
1
0
0
0
✅ PASS: Test report for kernel 4.19.58-rc1-8d95b95.cki (stable)
by CKI Project
Hello, We ran automated tests on a recent commit from this kernel tree: Kernel repo:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Commit: 8d95b9513ddb - Linux 4.19.58-rc1 The results of these automated tests are provided below. Overall result: PASSED Merge: OK Compile: OK Tests: OK Please reply to this email if you have any questions about the tests that we ran or if you have any suggestions on how to make future tests more effective. ,-. ,-. ( C ) ( K ) Continuous `-',-.`-' Kernel ( I ) Integration `-' ______________________________________________________________________________ Compile testing --------------- We compiled the kernel for 4 architectures: aarch64: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/aarch64/kernel-stable-aarch64-8d95…
kernel build:
https://artifacts.cki-project.org/builds/aarch64/kernel-stable-aarch64-8d95…
ppc64le: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/ppc64le/kernel-stable-ppc64le-8d95…
kernel build:
https://artifacts.cki-project.org/builds/ppc64le/kernel-stable-ppc64le-8d95…
s390x: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/s390x/kernel-stable-s390x-8d95b951…
kernel build:
https://artifacts.cki-project.org/builds/s390x/kernel-stable-s390x-8d95b951…
x86_64: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/x86_64/kernel-stable-x86_64-8d95b9…
kernel build:
https://artifacts.cki-project.org/builds/x86_64/kernel-stable-x86_64-8d95b9…
Hardware testing ---------------- We booted each kernel and ran the following tests: aarch64: Host 1: ✅ Boot test [0] ✅ xfstests: ext4 [1] ✅ xfstests: xfs [1] 🚧 ✅ selinux-policy: serge-testsuite [2] Host 2: ✅ Boot test [0] ✅ LTP lite [3] ✅ Loopdev Sanity [4] ✅ Memory function: memfd_create [5] ✅ AMTU (Abstract Machine Test Utility) [6] ✅ LTP: openposix test suite [7] ✅ Ethernet drivers sanity [8] ✅ audit: audit testsuite test [9] ✅ httpd: mod_ssl smoke sanity [10] ✅ iotop: sanity [11] ✅ redhat-rpm-config: detect-kabi-provides sanity [12] ✅ Usex - version 1.9-29 [13] ✅ lvm thinp sanity [14] 🚧 ✅ Networking socket: fuzz [15] 🚧 ✅ Networking sctp-auth: sockopts test [16] 🚧 ✅ Networking: igmp conformance test [17] 🚧 ✅ Networking route: pmtu [18] 🚧 ✅ Networking route_func: local [19] 🚧 ✅ Networking route_func: forward [19] 🚧 ✅ Networking TCP: keepalive test [20] 🚧 ✅ Networking UDP: socket [21] 🚧 ✅ Networking tunnel: gre basic [22] 🚧 ✅ Networking tunnel: vxlan basic [23] 🚧 ✅ Networking tunnel: geneve basic test [24] 🚧 ✅ Networking ipsec: basic netns transport [25] 🚧 ✅ Networking ipsec: basic netns tunnel [25] 🚧 ✅ tuned: tune-processes-through-perf [26] 🚧 ✅ Storage blktests [27] 🚧 ✅ storage: SCSI VPD [28] 🚧 ✅ storage: software RAID testing [29] 🚧 ✅ stress: stress-ng [30] 🚧 ✅ Libhugetlbfs - version 2.2.1 [31] ppc64le: Host 1: ✅ Boot test [0] ✅ xfstests: ext4 [1] ✅ xfstests: xfs [1] 🚧 ✅ selinux-policy: serge-testsuite [2] Host 2: ✅ Boot test [0] ✅ LTP lite [3] ✅ Loopdev Sanity [4] ✅ Memory function: memfd_create [5] ✅ AMTU (Abstract Machine Test Utility) [6] ✅ LTP: openposix test suite [7] ✅ Ethernet drivers sanity [8] ✅ audit: audit testsuite test [9] ✅ httpd: mod_ssl smoke sanity [10] ✅ iotop: sanity [11] ✅ redhat-rpm-config: detect-kabi-provides sanity [12] ✅ Usex - version 1.9-29 [13] ✅ lvm thinp sanity [14] 🚧 ✅ Networking socket: fuzz [15] 🚧 ✅ Networking sctp-auth: sockopts test [16] 🚧 ✅ Networking route: pmtu [18] 🚧 ✅ Networking route_func: local [19] 🚧 ✅ Networking route_func: forward [19] 🚧 ✅ Networking TCP: keepalive test [20] 🚧 ✅ Networking UDP: socket [21] 🚧 ✅ Networking tunnel: gre basic [22] 🚧 ✅ Networking tunnel: vxlan basic [23] 🚧 ✅ Networking tunnel: geneve basic test [24] 🚧 ✅ Networking ipsec: basic netns tunnel [25] 🚧 ✅ tuned: tune-processes-through-perf [26] 🚧 ✅ Storage blktests [27] 🚧 ✅ storage: software RAID testing [29] 🚧 ✅ Libhugetlbfs - version 2.2.1 [31] s390x: Host 1: ✅ Boot test [0] 🚧 ✅ selinux-policy: serge-testsuite [2] Host 2: ✅ Boot test [0] ✅ LTP lite [3] ✅ Loopdev Sanity [4] ✅ Memory function: memfd_create [5] ✅ LTP: openposix test suite [7] ✅ Ethernet drivers sanity [8] ✅ audit: audit testsuite test [9] ✅ httpd: mod_ssl smoke sanity [10] ✅ iotop: sanity [11] ✅ redhat-rpm-config: detect-kabi-provides sanity [12] ✅ lvm thinp sanity [14] 🚧 ✅ Networking socket: fuzz [15] 🚧 ✅ Networking sctp-auth: sockopts test [16] 🚧 ✅ Networking: igmp conformance test [17] 🚧 ✅ Networking route: pmtu [18] 🚧 ✅ Networking route_func: local [19] 🚧 ✅ Networking route_func: forward [19] 🚧 ✅ Networking TCP: keepalive test [20] 🚧 ✅ Networking UDP: socket [21] 🚧 ✅ Networking tunnel: gre basic [22] 🚧 ✅ Networking tunnel: vxlan basic [23] 🚧 ✅ Networking tunnel: geneve basic test [24] 🚧 ✅ Networking ipsec: basic netns transport [25] 🚧 ✅ Networking ipsec: basic netns tunnel [25] 🚧 ✅ tuned: tune-processes-through-perf [26] 🚧 ✅ Storage blktests [27] 🚧 ✅ storage: software RAID testing [29] 🚧 ✅ stress: stress-ng [30] Host 3: ✅ Boot test [0] ✅ kdump: sysrq-c [32] x86_64: Host 1: ✅ Boot test [0] ✅ LTP lite [3] ✅ Loopdev Sanity [4] ✅ Memory function: memfd_create [5] ✅ AMTU (Abstract Machine Test Utility) [6] ✅ LTP: openposix test suite [7] ✅ Ethernet drivers sanity [8] ✅ audit: audit testsuite test [9] ✅ httpd: mod_ssl smoke sanity [10] ✅ iotop: sanity [11] ✅ redhat-rpm-config: detect-kabi-provides sanity [12] ✅ Usex - version 1.9-29 [13] ✅ lvm thinp sanity [14] 🚧 ✅ Networking socket: fuzz [15] 🚧 ✅ Networking sctp-auth: sockopts test [16] 🚧 ✅ Networking: igmp conformance test [17] 🚧 ✅ Networking route: pmtu [18] 🚧 ✅ Networking route_func: local [19] 🚧 ✅ Networking route_func: forward [19] 🚧 ✅ Networking TCP: keepalive test [20] 🚧 ✅ Networking UDP: socket [21] 🚧 ✅ Networking tunnel: gre basic [22] 🚧 ✅ Networking tunnel: vxlan basic [23] 🚧 ✅ Networking tunnel: geneve basic test [24] 🚧 ✅ Networking ipsec: basic netns transport [25] 🚧 ✅ Networking ipsec: basic netns tunnel [25] 🚧 ✅ tuned: tune-processes-through-perf [26] 🚧 ✅ Storage blktests [27] 🚧 ✅ storage: SCSI VPD [28] 🚧 ✅ storage: software RAID testing [29] 🚧 ✅ stress: stress-ng [30] 🚧 ✅ Libhugetlbfs - version 2.2.1 [31] Host 2: ✅ Boot test [0] ✅ xfstests: ext4 [1] ✅ xfstests: xfs [1] 🚧 ✅ selinux-policy: serge-testsuite [2] Host 3: ✅ Boot test [0] ✅ kdump: sysrq-c [32] Test source: 💚 Pull requests are welcome for new tests or improvements to existing tests! [0]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#distribution…
[1]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/filesystems…
[2]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/packages/se…
[3]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#distribution…
[4]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#filesystems/…
[5]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/memory/func…
[6]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#misc/amtu
[7]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#distribution…
[8]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[9]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/aud…
[10]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/htt…
[11]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/iot…
[12]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/red…
[13]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#standards/us…
[14]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/lvm/…
[15]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[16]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#networking/s…
[17]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#networking/i…
[18]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[19]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[20]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#networking/t…
[21]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#networking/u…
[22]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[23]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[24]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[25]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[26]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/tun…
[27]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/blk
[28]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/scsi…
[29]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/swra…
[30]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#stress/stres…
[31]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#vm/hugepage/…
[32]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/kdump/kdump…
Waived tests (marked with 🚧) ----------------------------- This test run included waived tests. Such tests are executed but their results are not taken into account. Tests are waived when their results are not reliable enough, e.g. when they're just introduced or are being fixed.
5 years, 6 months
1
0
0
0
✅ PASS: Test report for kernel 5.1.17-rc1-2b5fd39.cki (stable)
by CKI Project
Hello, We ran automated tests on a recent commit from this kernel tree: Kernel repo:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Commit: 2b5fd394355a - Linux 5.1.17-rc1 The results of these automated tests are provided below. Overall result: PASSED Merge: OK Compile: OK Tests: OK Please reply to this email if you have any questions about the tests that we ran or if you have any suggestions on how to make future tests more effective. ,-. ,-. ( C ) ( K ) Continuous `-',-.`-' Kernel ( I ) Integration `-' ______________________________________________________________________________ Compile testing --------------- We compiled the kernel for 4 architectures: aarch64: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/aarch64/kernel-stable-aarch64-2b5f…
kernel build:
https://artifacts.cki-project.org/builds/aarch64/kernel-stable-aarch64-2b5f…
ppc64le: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/ppc64le/kernel-stable-ppc64le-2b5f…
kernel build:
https://artifacts.cki-project.org/builds/ppc64le/kernel-stable-ppc64le-2b5f…
s390x: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/s390x/kernel-stable-s390x-2b5fd394…
kernel build:
https://artifacts.cki-project.org/builds/s390x/kernel-stable-s390x-2b5fd394…
x86_64: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/x86_64/kernel-stable-x86_64-2b5fd3…
kernel build:
https://artifacts.cki-project.org/builds/x86_64/kernel-stable-x86_64-2b5fd3…
Hardware testing ---------------- We booted each kernel and ran the following tests: aarch64: Host 1: ✅ Boot test [0] ✅ xfstests: ext4 [1] ✅ xfstests: xfs [1] 🚧 ✅ selinux-policy: serge-testsuite [2] Host 2: ✅ Boot test [0] ✅ LTP lite [3] ✅ Loopdev Sanity [4] ✅ Memory function: memfd_create [5] ✅ AMTU (Abstract Machine Test Utility) [6] ✅ LTP: openposix test suite [7] ✅ Ethernet drivers sanity [8] ✅ audit: audit testsuite test [9] ✅ httpd: mod_ssl smoke sanity [10] ✅ iotop: sanity [11] ✅ redhat-rpm-config: detect-kabi-provides sanity [12] ✅ Usex - version 1.9-29 [13] ✅ lvm thinp sanity [14] 🚧 ✅ Networking socket: fuzz [15] 🚧 ✅ Networking sctp-auth: sockopts test [16] 🚧 ✅ Networking: igmp conformance test [17] 🚧 ✅ Networking route: pmtu [18] 🚧 ✅ Networking route_func: local [19] 🚧 ✅ Networking route_func: forward [19] 🚧 ✅ Networking TCP: keepalive test [20] 🚧 ✅ Networking UDP: socket [21] 🚧 ✅ Networking tunnel: gre basic [22] 🚧 ✅ Networking tunnel: vxlan basic [23] 🚧 ✅ Networking tunnel: geneve basic test [24] 🚧 ✅ Networking ipsec: basic netns transport [25] 🚧 ✅ Networking ipsec: basic netns tunnel [25] 🚧 ✅ tuned: tune-processes-through-perf [26] 🚧 ✅ Storage blktests [27] 🚧 ✅ storage: SCSI VPD [28] 🚧 ✅ storage: software RAID testing [29] 🚧 ✅ stress: stress-ng [30] 🚧 ✅ Libhugetlbfs - version 2.2.1 [31] ppc64le: Host 1: ✅ Boot test [0] ✅ xfstests: ext4 [1] ✅ xfstests: xfs [1] 🚧 ✅ selinux-policy: serge-testsuite [2] Host 2: ✅ Boot test [0] ✅ LTP lite [3] ✅ Loopdev Sanity [4] ✅ Memory function: memfd_create [5] ✅ AMTU (Abstract Machine Test Utility) [6] ✅ LTP: openposix test suite [7] ✅ Ethernet drivers sanity [8] ✅ audit: audit testsuite test [9] ✅ httpd: mod_ssl smoke sanity [10] ✅ iotop: sanity [11] ✅ redhat-rpm-config: detect-kabi-provides sanity [12] ✅ Usex - version 1.9-29 [13] ✅ lvm thinp sanity [14] 🚧 ✅ Networking socket: fuzz [15] 🚧 ✅ Networking sctp-auth: sockopts test [16] 🚧 ✅ Networking route: pmtu [18] 🚧 ✅ Networking route_func: local [19] 🚧 ✅ Networking route_func: forward [19] 🚧 ✅ Networking TCP: keepalive test [20] 🚧 ✅ Networking UDP: socket [21] 🚧 ✅ Networking tunnel: gre basic [22] 🚧 ✅ Networking tunnel: vxlan basic [23] 🚧 ✅ Networking tunnel: geneve basic test [24] 🚧 ✅ Networking ipsec: basic netns tunnel [25] 🚧 ✅ tuned: tune-processes-through-perf [26] 🚧 ✅ Storage blktests [27] 🚧 ✅ storage: software RAID testing [29] 🚧 ✅ Libhugetlbfs - version 2.2.1 [31] s390x: Host 1: ✅ Boot test [0] 🚧 ✅ selinux-policy: serge-testsuite [2] Host 2: ✅ Boot test [0] ✅ LTP lite [3] ✅ Loopdev Sanity [4] ✅ Memory function: memfd_create [5] ✅ LTP: openposix test suite [7] ✅ Ethernet drivers sanity [8] ✅ audit: audit testsuite test [9] ✅ httpd: mod_ssl smoke sanity [10] ✅ iotop: sanity [11] ✅ redhat-rpm-config: detect-kabi-provides sanity [12] ✅ lvm thinp sanity [14] 🚧 ✅ Networking socket: fuzz [15] 🚧 ✅ Networking sctp-auth: sockopts test [16] 🚧 ✅ Networking: igmp conformance test [17] 🚧 ✅ Networking route: pmtu [18] 🚧 ✅ Networking route_func: local [19] 🚧 ✅ Networking route_func: forward [19] 🚧 ✅ Networking TCP: keepalive test [20] 🚧 ✅ Networking UDP: socket [21] 🚧 ✅ Networking tunnel: gre basic [22] 🚧 ✅ Networking tunnel: vxlan basic [23] 🚧 ✅ Networking tunnel: geneve basic test [24] 🚧 ✅ Networking ipsec: basic netns transport [25] 🚧 ✅ Networking ipsec: basic netns tunnel [25] 🚧 ✅ tuned: tune-processes-through-perf [26] 🚧 ✅ Storage blktests [27] 🚧 ✅ storage: software RAID testing [29] 🚧 ✅ stress: stress-ng [30] Host 3: ✅ Boot test [0] ✅ kdump: sysrq-c [32] x86_64: Host 1: ✅ Boot test [0] ✅ xfstests: ext4 [1] ✅ xfstests: xfs [1] 🚧 ✅ selinux-policy: serge-testsuite [2] Host 2: ✅ Boot test [0] ✅ kdump: sysrq-c [32] Host 3: ✅ Boot test [0] ✅ LTP lite [3] ✅ Loopdev Sanity [4] ✅ Memory function: memfd_create [5] ✅ AMTU (Abstract Machine Test Utility) [6] ✅ LTP: openposix test suite [7] ✅ Ethernet drivers sanity [8] ✅ audit: audit testsuite test [9] ✅ httpd: mod_ssl smoke sanity [10] ✅ iotop: sanity [11] ✅ redhat-rpm-config: detect-kabi-provides sanity [12] ✅ Usex - version 1.9-29 [13] ✅ lvm thinp sanity [14] 🚧 ✅ Networking socket: fuzz [15] 🚧 ✅ Networking sctp-auth: sockopts test [16] 🚧 ✅ Networking: igmp conformance test [17] 🚧 ✅ Networking route: pmtu [18] 🚧 ✅ Networking route_func: local [19] 🚧 ✅ Networking route_func: forward [19] 🚧 ✅ Networking TCP: keepalive test [20] 🚧 ✅ Networking UDP: socket [21] 🚧 ✅ Networking tunnel: gre basic [22] 🚧 ✅ Networking tunnel: vxlan basic [23] 🚧 ✅ Networking tunnel: geneve basic test [24] 🚧 ✅ Networking ipsec: basic netns transport [25] 🚧 ✅ Networking ipsec: basic netns tunnel [25] 🚧 ✅ tuned: tune-processes-through-perf [26] 🚧 ✅ Storage blktests [27] 🚧 ✅ storage: SCSI VPD [28] 🚧 ✅ storage: software RAID testing [29] 🚧 ✅ stress: stress-ng [30] 🚧 ✅ Libhugetlbfs - version 2.2.1 [31] Test source: 💚 Pull requests are welcome for new tests or improvements to existing tests! [0]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#distribution…
[1]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/filesystems…
[2]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/packages/se…
[3]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#distribution…
[4]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#filesystems/…
[5]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/memory/func…
[6]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#misc/amtu
[7]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#distribution…
[8]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[9]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/aud…
[10]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/htt…
[11]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/iot…
[12]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/red…
[13]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#standards/us…
[14]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/lvm/…
[15]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[16]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#networking/s…
[17]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#networking/i…
[18]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[19]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[20]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#networking/t…
[21]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#networking/u…
[22]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[23]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[24]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[25]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[26]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/tun…
[27]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/blk
[28]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/scsi…
[29]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/swra…
[30]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#stress/stres…
[31]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#vm/hugepage/…
[32]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/kdump/kdump…
Waived tests (marked with 🚧) ----------------------------- This test run included waived tests. Such tests are executed but their results are not taken into account. Tests are waived when their results are not reliable enough, e.g. when they're just introduced or are being fixed.
5 years, 6 months
1
0
0
0
stable-rc/linux-4.9.y boot: 110 boots: 2 failed, 108 passed (v4.9.184-100-ga04bcbcf4f5e)
by kernelci.org bot
stable-rc/linux-4.9.y boot: 110 boots: 2 failed, 108 passed (v4.9.184-100-ga04bcbcf4f5e) Full Boot Summary:
https://kernelci.org/boot/all/job/stable-rc/branch/linux-4.9.y/kernel/v4.9.…
Full Build Summary:
https://kernelci.org/build/stable-rc/branch/linux-4.9.y/kernel/v4.9.184-100…
Tree: stable-rc Branch: linux-4.9.y Git Describe: v4.9.184-100-ga04bcbcf4f5e Git Commit: a04bcbcf4f5e60f955eff8266693d9042186a3a6 Git URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Tested: 53 unique boards, 23 SoC families, 15 builds out of 197 Boot Failures Detected: arm: sunxi_defconfig: gcc-8: sun7i-a20-bananapi: 1 failed lab multi_v7_defconfig: gcc-8: sun7i-a20-bananapi: 1 failed lab --- For more info write to <info(a)kernelci.org>
5 years, 6 months
1
0
0
0
stable-rc/linux-4.19.y boot: 131 boots: 3 failed, 128 passed (v4.19.57-86-g8d95b9513ddb)
by kernelci.org bot
stable-rc/linux-4.19.y boot: 131 boots: 3 failed, 128 passed (v4.19.57-86-g8d95b9513ddb) Full Boot Summary:
https://kernelci.org/boot/all/job/stable-rc/branch/linux-4.19.y/kernel/v4.1…
Full Build Summary:
https://kernelci.org/build/stable-rc/branch/linux-4.19.y/kernel/v4.19.57-86…
Tree: stable-rc Branch: linux-4.19.y Git Describe: v4.19.57-86-g8d95b9513ddb Git Commit: 8d95b9513ddb95fb0987162263d3da9031d83d40 Git URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Tested: 73 unique boards, 27 SoC families, 17 builds out of 206 Boot Failures Detected: arc: hsdk_defconfig: gcc-8: hsdk: 1 failed lab arm: sunxi_defconfig: gcc-8: sun7i-a20-bananapi: 1 failed lab multi_v7_defconfig: gcc-8: sun7i-a20-bananapi: 1 failed lab --- For more info write to <info(a)kernelci.org>
5 years, 6 months
1
0
0
0
[PATCH v3 2/2] Bluetooth: hci_ldisc: Add NULL check for tiocmget() and tiocmset() in hci_uart_set_flow_control()
by Myungho Jung
tiocmget() or tiocmset() operations are optional. Just return from hci_uart_set_flow_control() if tiocmget() or tiocmset() operation is NULL. Fixes: 2a973dfada2b ("hci_uart: Add new line discipline enhancements") Cc: <stable(a)vger.kernel.org> # 4.2 Signed-off-by: Myungho Jung <mhjungk(a)gmail.com> --- Changes in v2: - Remove braces in if statment Changes in v3: - Split into 2 patches - Add stable CC and fixes tags drivers/bluetooth/hci_ldisc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c index fbf7b4df23ab..cb31c2d8d826 100644 --- a/drivers/bluetooth/hci_ldisc.c +++ b/drivers/bluetooth/hci_ldisc.c @@ -314,6 +314,10 @@ void hci_uart_set_flow_control(struct hci_uart *hu, bool enable) return; } + /* tiocmget() and tiocmset() operations are optional */ + if (!tty->driver->ops->tiocmget || !tty->driver->ops->tiocmset) + return; + if (enable) { /* Disable hardware flow control */ ktermios = tty->termios; -- 2.17.1
5 years, 6 months
2
1
0
0
stable-rc/linux-4.4.y boot: 100 boots: 4 failed, 95 passed with 1 conflict (v4.4.184-73-g71b130d46805)
by kernelci.org bot
stable-rc/linux-4.4.y boot: 100 boots: 4 failed, 95 passed with 1 conflict (v4.4.184-73-g71b130d46805) Full Boot Summary:
https://kernelci.org/boot/all/job/stable-rc/branch/linux-4.4.y/kernel/v4.4.…
Full Build Summary:
https://kernelci.org/build/stable-rc/branch/linux-4.4.y/kernel/v4.4.184-73-…
Tree: stable-rc Branch: linux-4.4.y Git Describe: v4.4.184-73-g71b130d46805 Git Commit: 71b130d468055291345db697052e5256d6e46397 Git URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
Tested: 46 unique boards, 20 SoC families, 14 builds out of 190 Boot Failures Detected: arm: sunxi_defconfig: gcc-8: sun7i-a20-bananapi: 1 failed lab multi_v7_defconfig: gcc-8: stih410-b2120: 1 failed lab sun7i-a20-bananapi: 1 failed lab arm64: defconfig: gcc-8: qcom-qdf2400: 1 failed lab Conflicting Boot Failure Detected: (These likely are not failures as other labs are reporting PASS. Needs review.) x86_64: x86_64_defconfig: qemu: lab-drue: PASS (gcc-8) lab-baylibre: FAIL (gcc-8) lab-mhart: PASS (gcc-8) lab-collabora: PASS (gcc-8) lab-linaro-lkft: PASS (gcc-8) --- For more info write to <info(a)kernelci.org>
5 years, 6 months
1
0
0
0
✅ PASS: Stable queue: queue-4.19
by CKI Project
Hello, We ran automated tests on a patchset that was proposed for merging into this kernel tree. The patches were applied to: Kernel repo:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Commit: 1a0592436669 - Linux 4.19.57 The results of these automated tests are provided below. Overall result: PASSED Merge: OK Compile: OK Tests: OK Please reply to this email if you have any questions about the tests that we ran or if you have any suggestions on how to make future tests more effective. ,-. ,-. ( C ) ( K ) Continuous `-',-.`-' Kernel ( I ) Integration `-' ______________________________________________________________________________ Merge testing ------------- We cloned this repository and checked out the following commit: Repo:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Commit: 1a0592436669 - Linux 4.19.57 We grabbed the 7dedd6dfadfd commit of the stable queue repository. We then merged the patchset with `git am`: bluetooth-fix-faulty-expression-for-minimum-encryption-key-size-check.patch block-fix-a-null-pointer-dereference-in-generic_make_request.patch md-raid0-do-not-bypass-blocking-queue-entered-for-raid0-bios.patch netfilter-nf_flow_table-ignore-df-bit-setting.patch netfilter-nft_flow_offload-set-liberal-tracking-mode-for-tcp.patch netfilter-nft_flow_offload-don-t-offload-when-sequence-numbers-need-adjustment.patch netfilter-nft_flow_offload-ipcb-is-only-valid-for-ipv4-family.patch asoc-cs4265-readable-register-too-low.patch asoc-ak4458-add-return-value-for-ak4458_probe.patch asoc-soc-pcm-be-dai-needs-prepare-when-pause-release.patch asoc-ak4458-rstn_control-return-a-non-zero-on-error-.patch spi-bitbang-fix-null-pointer-dereference-in-spi_unre.patch drm-mediatek-fix-unbind-functions.patch drm-mediatek-unbind-components-in-mtk_drm_unbind.patch drm-mediatek-call-drm_atomic_helper_shutdown-when-un.patch drm-mediatek-clear-num_pipes-when-unbind-driver.patch drm-mediatek-call-mtk_dsi_stop-after-mtk_drm_crtc_at.patch asoc-max98090-remove-24-bit-format-support-if-rj-is-.patch asoc-sun4i-i2s-fix-sun8i-tx-channel-offset-mask.patch asoc-sun4i-i2s-add-offset-to-rx-channel-select.patch x86-cpu-add-more-icelake-model-numbers.patch usb-gadget-fusb300_udc-fix-memory-leak-of-fusb300-ep.patch usb-gadget-udc-lpc32xx-allocate-descriptor-with-gfp_.patch alsa-hdac-fix-memory-release-for-sst-and-sof-drivers.patch soc-rt274-fix-internal-jack-assignment-in-set_jack-c.patch scsi-hpsa-correct-ioaccel2-chaining.patch drm-panel-orientation-quirks-add-quirk-for-gpd-pocke.patch drm-panel-orientation-quirks-add-quirk-for-gpd-micro.patch platform-x86-asus-wmi-only-tell-ec-the-os-will-handl.patch platform-x86-intel-vbtn-report-switch-events-when-ev.patch platform-x86-mlx-platform-fix-parent-device-in-i2c-m.patch platform-mellanox-mlxreg-hotplug-add-devm_free_irq-c.patch i2c-pca-platform-fix-gpio-lookup-code.patch cpuset-restore-sanity-to-cpuset_cpus_allowed_fallbac.patch scripts-decode_stacktrace.sh-prefix-addr2line-with-c.patch mm-mlock.c-change-count_mm_mlocked_page_nr-return-ty.patch tracing-avoid-build-warning-with-have_nop_mcount.patch module-fix-livepatch-ftrace-module-text-permissions-.patch ftrace-fix-null-pointer-dereference-in-free_ftrace_f.patch drm-i915-dmc-protect-against-reading-random-memory.patch ptrace-fix-ptracer_cred-handling-for-ptrace_traceme.patch crypto-user-prevent-operating-on-larval-algorithms.patch crypto-cryptd-fix-skcipher-instance-memory-leak.patch alsa-seq-fix-incorrect-order-of-dest_client-dest_ports-arguments.patch alsa-firewire-lib-fireworks-fix-miss-detection-of-received-midi-messages.patch alsa-line6-fix-write-on-zero-sized-buffer.patch alsa-usb-audio-fix-sign-unintended-sign-extension-on-left-shifts.patch alsa-hda-realtek-add-quirks-for-several-clevo-notebook-barebones.patch alsa-hda-realtek-change-front-mic-location-for-lenovo-m710q.patch lib-mpi-fix-karactx-leak-in-mpi_powm.patch fs-userfaultfd.c-disable-irqs-for-fault_pending-and-event-locks.patch tracing-snapshot-resize-spare-buffer-if-size-changed.patch arm-dts-armada-xp-98dx3236-switch-to-armada-38x-uart-serial-node.patch arm64-kaslr-keep-modules-inside-module-region-when-kasan-is-enabled.patch drm-amd-powerplay-use-hardware-fan-control-if-no-powerplay-fan-table.patch drm-amdgpu-gfx9-use-reset-default-for-pa_sc_fifo_size.patch drm-etnaviv-add-missing-failure-path-to-destroy-suballoc.patch drm-imx-notify-drm-core-before-sending-event-during-crtc-disable.patch drm-imx-only-send-event-on-crtc-disable-if-kept-disabled.patch ftrace-x86-remove-possible-deadlock-between-register_kprobe-and-ftrace_run_update_code.patch mm-vmscan.c-prevent-useless-kswapd-loops.patch btrfs-ensure-replaced-device-doesn-t-have-pending-chunk-allocation.patch tty-rocket-fix-incorrect-forward-declaration-of-rp_i.patch mlxsw-spectrum-handle-vlan-device-unlinking.patch net-smc-move-unhash-before-release-of-clcsock.patch media-s5p-mfc-fix-incorrect-bus-assignment-in-virtua.patch drm-fb-helper-generic-don-t-take-module-ref-for-fbco.patch f2fs-don-t-access-node-meta-inode-mapping-after-iput.patch mac80211-mesh-fix-missing-unlock-on-error-in-table_p.patch scsi-tcmu-fix-use-after-free.patch selftests-fib_rule_tests-fix-icmp-proto-with-ipv6.patch x86-boot-compressed-64-do-not-corrupt-edx-on-efer.lm.patch net-hns-fixes-the-missing-put_device-in-positive-leg.patch alsa-hda-initialize-power_state-field-properly.patch rds-fix-warning.patch ip6-fix-skb-leak-in-ip6frag_expire_frag_queue.patch netfilter-ipv6-nf_defrag-fix-leakage-of-unqueued-fra.patch sc16is7xx-move-label-err_spi-to-correct-section.patch net-hns-fix-unsigned-comparison-to-less-than-zero.patch bpf-fix-bpf_jit_limit-knob-for-page_size-64k.patch netfilter-ipv6-nf_defrag-accept-duplicate-fragments-.patch kvm-x86-degrade-warn-to-pr_warn_ratelimited.patch kvm-lapic-fix-pending-interrupt-in-irr-blocked-by-software-disable-lapic.patch nfsd-fix-overflow-causing-non-working-mounts-on-1-tb-machines.patch svcrdma-ignore-source-port-when-computing-drc-hash.patch Compile testing --------------- We compiled the kernel for 4 architectures: aarch64: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/aarch64/kernel-stable_queue_4.19-a…
kernel build:
https://artifacts.cki-project.org/builds/aarch64/kernel-stable_queue_4.19-a…
ppc64le: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/ppc64le/kernel-stable_queue_4.19-p…
kernel build:
https://artifacts.cki-project.org/builds/ppc64le/kernel-stable_queue_4.19-p…
s390x: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/s390x/kernel-stable_queue_4.19-s39…
kernel build:
https://artifacts.cki-project.org/builds/s390x/kernel-stable_queue_4.19-s39…
x86_64: build options: -j20 INSTALL_MOD_STRIP=1 targz-pkg configuration:
https://artifacts.cki-project.org/builds/x86_64/kernel-stable_queue_4.19-x8…
kernel build:
https://artifacts.cki-project.org/builds/x86_64/kernel-stable_queue_4.19-x8…
Hardware testing ---------------- We booted each kernel and ran the following tests: aarch64: Host 1: ✅ Boot test [0] ✅ LTP lite [1] ✅ Loopdev Sanity [2] ✅ AMTU (Abstract Machine Test Utility) [3] ✅ LTP: openposix test suite [4] ✅ Ethernet drivers sanity [5] ✅ audit: audit testsuite test [6] ✅ httpd: mod_ssl smoke sanity [7] ✅ iotop: sanity [8] ✅ Usex - version 1.9-29 [9] ✅ lvm thinp sanity [10] 🚧 ✅ Networking socket: fuzz [11] 🚧 ✅ tuned: tune-processes-through-perf [12] 🚧 ✅ storage: SCSI VPD [13] 🚧 ✅ storage: software RAID testing [14] Host 2: ✅ Boot test [0] ✅ xfstests: xfs [16] 🚧 ✅ selinux-policy: serge-testsuite [17] ppc64le: Host 1: ✅ Boot test [0] ✅ xfstests: xfs [16] 🚧 ✅ selinux-policy: serge-testsuite [17] Host 2: ✅ Boot test [0] ✅ LTP lite [1] ✅ Loopdev Sanity [2] ✅ AMTU (Abstract Machine Test Utility) [3] ✅ LTP: openposix test suite [4] ✅ Ethernet drivers sanity [5] ✅ audit: audit testsuite test [6] ✅ httpd: mod_ssl smoke sanity [7] ✅ iotop: sanity [8] ✅ Usex - version 1.9-29 [9] ✅ lvm thinp sanity [10] 🚧 ✅ Networking socket: fuzz [11] 🚧 ✅ tuned: tune-processes-through-perf [12] 🚧 ✅ storage: software RAID testing [14] s390x: Host 1: ✅ Boot test [0] 🚧 ✅ selinux-policy: serge-testsuite [17] Host 2: ✅ Boot test [0] ✅ LTP lite [1] ✅ Loopdev Sanity [2] ✅ LTP: openposix test suite [4] ✅ Ethernet drivers sanity [5] ✅ audit: audit testsuite test [6] ✅ httpd: mod_ssl smoke sanity [7] ✅ iotop: sanity [8] ✅ lvm thinp sanity [10] 🚧 ✅ Networking socket: fuzz [11] 🚧 ✅ tuned: tune-processes-through-perf [12] 🚧 ✅ storage: software RAID testing [14] 🚧 ✅ stress: stress-ng [15] x86_64: Host 1: ✅ Boot test [0] ✅ LTP lite [1] ✅ Loopdev Sanity [2] ✅ AMTU (Abstract Machine Test Utility) [3] ✅ LTP: openposix test suite [4] ✅ Ethernet drivers sanity [5] ✅ audit: audit testsuite test [6] ✅ httpd: mod_ssl smoke sanity [7] ✅ iotop: sanity [8] ✅ Usex - version 1.9-29 [9] ✅ lvm thinp sanity [10] 🚧 ✅ Networking socket: fuzz [11] 🚧 ✅ tuned: tune-processes-through-perf [12] 🚧 ✅ storage: SCSI VPD [13] 🚧 ✅ storage: software RAID testing [14] 🚧 ✅ stress: stress-ng [15] Host 2: ✅ Boot test [0] ✅ xfstests: xfs [16] 🚧 ✅ selinux-policy: serge-testsuite [17] Test source: 💚 Pull requests are welcome for new tests or improvements to existing tests! [0]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#distribution…
[1]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#distribution…
[2]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#filesystems/…
[3]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#misc/amtu
[4]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#distribution…
[5]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[6]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/aud…
[7]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/htt…
[8]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/iot…
[9]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#standards/us…
[10]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/lvm/…
[11]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/networking/…
[12]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#packages/tun…
[13]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/scsi…
[14]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#storage/swra…
[15]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#stress/stres…
[16]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/filesystems…
[17]:
https://github.com/CKI-project/tests-beaker/archive/master.zip#/packages/se…
Waived tests (marked with 🚧) ----------------------------- This test run included waived tests. Such tests are executed but their results are not taken into account. Tests are waived when their results are not reliable enough, e.g. when they're just introduced or are being fixed.
5 years, 6 months
1
0
0
0
← Newer
1
...
79
80
81
82
83
84
85
...
109
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
Results per page:
10
25
50
100
200