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
February
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
Lkft-triage
June 2020
----- 2025 -----
February 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
lkft-triage@lists.linaro.org
40 participants
877 discussions
Start a n
N
ew thread
stable-rc 4.9.229-rc1/d950bdd9d642: no regressions found in project stable v4.9.y on OE - sanity
by Linaro QA
Summary ------------------------------------------------------------------------ kernel: 4.9.229-rc1 git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
git branch: linux-4.9.y git commit: d950bdd9d6429373211cf99b34b10f992e84ea35 git describe: v4.9.228-111-gd950bdd9d642 Test details:
https://qa-reports.linaro.org/lkft/linux-stable-rc-4.9-oe-sanity/build/v4.9…
No regressions (compared to build v4.9.228-86-g5b75f3b71340) No fixes (compared to build v4.9.228-86-g5b75f3b71340) Boards, architectures and test suites: ------------------------------------- i386 * linux-log-parser - pass: 8, * ltp-quickhit-tests - pass: 107, juno-r2 - arm64 * linux-log-parser - pass: 8, * ltp-quickhit-tests - pass: 106, skip: 1, x86_64 * linux-log-parser - pass: 8, * ltp-quickhit-tests - pass: 106, skip: 1, -- Linaro QA
https://qa-reports.linaro.org
4 years, 8 months
1
0
0
0
Re: [PATCH AUTOSEL 4.14 090/108] ovl: verify permissions in ovl_path_open()
by Naresh Kamboju
On Thu, 18 Jun 2020 at 07:18, Sasha Levin <sashal(a)kernel.org> wrote: > > From: Miklos Szeredi <mszeredi(a)redhat.com> > > [ Upstream commit 56230d956739b9cb1cbde439d76227d77979a04d ] > > Check permission before opening a real file. > > ovl_path_open() is used by readdir and copy-up routines. > > ovl_permission() theoretically already checked copy up permissions, but it > doesn't hurt to re-do these checks during the actual copy-up. > > For directory reading ovl_permission() only checks access to topmost > underlying layer. Readdir on a merged directory accesses layers below the > topmost one as well. Permission wasn't checked for these layers. > > Note: modifying ovl_permission() to perform this check would be far more > complex and hence more bug prone. The result is less precise permissions > returned in access(2). If this turns out to be an issue, we can revisit > this bug. > > Signed-off-by: Miklos Szeredi <mszeredi(a)redhat.com> > Signed-off-by: Sasha Levin <sashal(a)kernel.org> > --- > fs/overlayfs/util.c | 27 ++++++++++++++++++++++++++- > 1 file changed, 26 insertions(+), 1 deletion(-) > > diff --git a/fs/overlayfs/util.c b/fs/overlayfs/util.c > index afdc2533ce74..76d6610767f6 100644 > --- a/fs/overlayfs/util.c > +++ b/fs/overlayfs/util.c > @@ -307,7 +307,32 @@ bool ovl_is_whiteout(struct dentry *dentry) > > struct file *ovl_path_open(struct path *path, int flags) > { > - return dentry_open(path, flags | O_NOATIME, current_cred()); > + struct inode *inode = d_inode(path->dentry); > + int err, acc_mode; > + > + if (flags & ~(O_ACCMODE | O_LARGEFILE)) > + BUG(); > + > + switch (flags & O_ACCMODE) { > + case O_RDONLY: > + acc_mode = MAY_READ; > + break; > + case O_WRONLY: > + acc_mode = MAY_WRITE; > + break; > + default: > + BUG(); This BUG: triggered on stable-rc 5.7, 5.4, 4.19 and 4.14. steps to reproduce: - cd /opt/ltp - ./runltp -s execveat03 Test output: mke2fs 1.43.8 (1-Jan-2018) [ 47.739682] ------------[ cut here ]------------ [ 47.744317] kernel BUG at fs/overlayfs/util.c:314! [ 47.749117] Internal error: Oops - BUG: 0 [#1] PREEMPT SMP [ 47.754608] Modules linked in: overlay rfkill crc32_ce crct10dif_ce fuse [ 47.761335] Process execveat03 (pid: 2880, stack limit = 0xffff00000ec60000) [ 47.768397] CPU: 3 PID: 2880 Comm: execveat03 Not tainted 4.14.186-rc1-00111-gb518002db397 #1 [ 47.776933] Hardware name: ARM Juno development board (r2) (DT) [ 47.782860] task: ffff8009546ade80 task.stack: ffff00000ec60000 [ 47.788819] pc : ovl_path_open+0xa8/0xb0 [overlay] [ 47.793641] lr : ovl_check_d_type_supported+0x38/0xf0 [overlay] [ 47.799567] sp : ffff00000ec63ba0 pstate : 40000145 [ 47.804449] x29: ffff00000ec63ba0 x28: 0000000000000000 [ 47.809770] x27: ffff800955bfb710 x26: ffff800955bfb700 [ 47.815091] x25: ffff00000ec63ce0 x24: 0000000000000000 [ 47.820412] x23: ffff00000ec63cd0 x22: 0000000000000001 [ 47.825733] x21: ffff8009509609b8 x20: ffff00000ec63ce0 [ 47.831054] x19: 0000000000004000 x18: 0000000000000000 [ 47.836375] x17: 0000000000000000 x16: ffff0000080d1800 [ 47.841696] x15: 095a041701101c00 x14: ff00000000000000 [ 47.847017] x13: 0000000000000000 x12: 000000000000000b [ 47.852338] x11: 0101010101010101 x10: ffff800950960b40 [ 47.857659] x9 : 7f7f7f7f7f7f7f7f x8 : 6f2d6c6473727872 [ 47.862980] x7 : 001c100117045a09 x6 : 095a041701101c00 [ 47.868301] x5 : 0000000000000000 x4 : 0000000000000000 [ 47.873622] x3 : 0000000000000000 x2 : ffff000000b7ec88 [ 47.878943] x1 : ffff800953f78180 x0 : 0000000000004000 [ 47.884264] Call trace: [ 47.886736] ovl_path_open+0xa8/0xb0 [overlay] [ 47.891209] ovl_check_d_type_supported+0x38/0xf0 [overlay] [ 47.896812] ovl_fill_super+0x540/0xc98 [overlay] [ 47.901528] mount_nodev+0x4c/0xa8 [ 47.904954] ovl_mount+0x14/0x28 [overlay] [ 47.909056] mount_fs+0x54/0x188 [ 47.912289] vfs_kern_mount.part.0+0x4c/0x118 [ 47.916651] do_mount+0x1cc/0xbe0 [ 47.919970] compat_SyS_mount+0xb0/0x1b8 [ 47.923899] __sys_trace_return+0x0/0x4 [ 47.927742] Code: f94013f5 a8c37bfd d65f03c0 d4210000 (d4210000) [ 47.933845] ---[ end trace 1b32b515dde8d9db ]--- Test link,
https://lkft.validation.linaro.org/scheduler/job/1517781#L1266
metadata: git branch: linux-4.14.y git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
git commit: b518002db397b51173a3e17045bfb3ff0e1aa0ed kernel-config:
https://builds.tuxbuild.com/B_xCv6-0v8npcEVw6hA_ZQ/kernel.config
-- Linaro LKFT
https://lkft.linaro.org
4 years, 8 months
3
3
0
0
mainline 5.8.0-rc2/3e08a95294a4: no regressions found in project mainline on OE - sanity
by Linaro QA
Summary ------------------------------------------------------------------------ kernel: 5.8.0-rc2 git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git branch: master git commit: 3e08a95294a4fb3702bb3d35ed08028433c37fe6 git describe: v5.8-rc2-34-g3e08a95294a4 Test details:
https://qa-reports.linaro.org/lkft/linux-mainline-oe-sanity/build/v5.8-rc2-…
No regressions (compared to build v5.8-rc2-23-gdd0d718152e4) No fixes (compared to build v5.8-rc2-23-gdd0d718152e4) Boards, architectures and test suites: ------------------------------------- dragonboard-410c * build - pass: 1, * linux-log-parser - pass: 8, i386 * build - pass: 1, * linux-log-parser - pass: 16, * ltp-quickhit-tests - pass: 105, juno-r2 - arm64 * linux-log-parser - pass: 8, * ltp-quickhit-tests - pass: 106, skip: 1, x15 - arm * build - pass: 1, * install-android-platform-tools-r2800 - pass: 2, * linux-log-parser - pass: 16, * ltp-quickhit-tests - pass: 106, skip: 1, x86_64 * linux-log-parser - pass: 8, * ltp-quickhit-tests - pass: 106, skip: 1, -- Linaro QA
https://qa-reports.linaro.org
4 years, 8 months
1
0
0
0
Re: [PATCH AUTOSEL 5.4 219/266] ovl: verify permissions in ovl_path_open()
by Naresh Kamboju
On Thu, 18 Jun 2020 at 06:51, Sasha Levin <sashal(a)kernel.org> wrote: > > From: Miklos Szeredi <mszeredi(a)redhat.com> > > [ Upstream commit 56230d956739b9cb1cbde439d76227d77979a04d ] > > Check permission before opening a real file. > > ovl_path_open() is used by readdir and copy-up routines. > > ovl_permission() theoretically already checked copy up permissions, but it > doesn't hurt to re-do these checks during the actual copy-up. > > For directory reading ovl_permission() only checks access to topmost > underlying layer. Readdir on a merged directory accesses layers below the > topmost one as well. Permission wasn't checked for these layers. > > Note: modifying ovl_permission() to perform this check would be far more > complex and hence more bug prone. The result is less precise permissions > returned in access(2). If this turns out to be an issue, we can revisit > this bug. > > Signed-off-by: Miklos Szeredi <mszeredi(a)redhat.com> > Signed-off-by: Sasha Levin <sashal(a)kernel.org> > --- > fs/overlayfs/util.c | 27 ++++++++++++++++++++++++++- > 1 file changed, 26 insertions(+), 1 deletion(-) > > diff --git a/fs/overlayfs/util.c b/fs/overlayfs/util.c > index f5678a3f8350..eb325322a893 100644 > --- a/fs/overlayfs/util.c > +++ b/fs/overlayfs/util.c > @@ -475,7 +475,32 @@ bool ovl_is_whiteout(struct dentry *dentry) > > struct file *ovl_path_open(struct path *path, int flags) > { > - return dentsteps to reproduce: - cd /opt/ltp - ./runltp -s execveat03ry_open(path, flags | O_NOATIME, current_cred()); > + struct inode *inode = d_inode(path->dentry); > + int err, acc_mode; > + > + if (flags & ~(O_ACCMODE | O_LARGEFILE)) > + BUG(); This BUG: triggered on stable-rc 5.7, 5.4, 4.19 and 4.14 on arm64 architecture. steps to reproduce: - cd /opt/ltp - ./runltp -s execveat03 [ 461.024389] ------------[ cut here ]------------ [ 461.029029] kernel BUG at fs/overlayfs/util.c:482! [ 461.033832] Internal error: Oops - BUG: 0 [#1] PREEMPT SMP [ 461.039328] Modules linked in: overlay rfkill tda998x drm_kms_helper drm crct10dif_ce fuse [ 461.047637] CPU: 2 PID: 15049 Comm: execveat03 Not tainted 5.4.49-rc1-00549-g1d94fa9fbd5f #1 [ 461.056093] Hardware name: ARM Juno development board (r2) (DT) [ 461.062026] pstate: 60000005 (nZCv daif -PAN -UAO) [ 461.066879] pc : ovl_path_open+0xc4/0xc8 [overlay] [ 461.071723] lr : ovl_path_open+0x2c/0xc8 [overlay] [ 461.076521] sp : ffff0008d9d578d0 [ 461.079841] x29: ffff0008d9d578d0 x28: ffff00090821186c [ 461.085167] x27: ffff000908211800 x26: ffff000902fc7000 [ 461.090493] x25: ffffa0000956e800 x24: ffff000902fc7540 [ 461.095818] x23: ffff0008d9d57b80 x22: ffff00091149c880 [ 461.101143] x21: ffff0008d9d57b80 x20: ffff0008dd24cb10 [ 461.106467] x19: 0000000000004000 x18: 0000000000000000 [ 461.111791] x17: 0000000000000000 x16: 0000000000000000 [ 461.117114] x15: 0000000000000000 x14: ffffa00010395a3c [ 461.122439] x13: ffffa00010394ff0 x12: ffff80011baea816 [ 461.127763] x11: 1fffe0011baea815 x10: ffff80011baea815 [ 461.133087] x9 : dfffa00000000000 x8 : 0000000000000001 [ 461.138411] x7 : ffff0008dd7540a8 x6 : 00000000f1f1f1f1 [ 461.143735] x5 : 00000000f3000000 x4 : 000000000000002d [ 461.149059] x3 : dfffa00000000000 x2 : 0000000000000007 [ 461.154383] x1 : 0000000000004000 x0 : 0000000000000000 [ 461.159706] Call trace: [ 461.162201] ovl_path_open+0xc4/0xc8 [overlay] [ 461.166697] ovl_check_d_type_supported+0x98/0x178 [overlay] [ 461.172410] ovl_fill_super+0x8b4/0x1c78 [overlay] [ 461.177215] mount_nodev+0x4c/0xb8 [ 461.180665] ovl_mount+0x18/0x20 [overlay] [ 461.184772] legacy_get_tree+0x70/0xb8 [ 461.188531] vfs_get_tree+0x48/0x158 [ 461.192116] do_mount+0x6f8/0xb38 [ 461.195438] ksys_mount+0x8c/0xe8 [ 461.198762] __arm64_sys_mount+0x64/0x80 [ 461.202697] el0_svc_common.constprop.0+0xa0/0x1d0 [ 461.207500] el0_svc_handler+0x34/0x98 [ 461.211256] el0_svc+0x8/0xc [ 461.214150] Code: f94013f5 a8c37bfd d65f03c0 d4210000 (d4210000) [ 461.220258] ---[ end trace 13147ca9b270cd0f ]--- [ 461.224884] note: execveat03[15049] exited with preempt_count 1 [ 461.233327] ------------[ cut here ]------------ [ 461.237984] WARNING: CPU: 2 PID: 0 at kernel/rcu/tree.c:569 rcu_idle_enter+0xc4/0xd0 [ 461.245742] Modules linked in: overlay rfkill tda998x drm_kms_helper drm crct10dif_ce fuse [ 461.254052] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G D 5.4.49-rc1-00549-g1d94fa9fbd5f #1 [ 461.263465] Hardware name: ARM Juno development board (r2) (DT) [ 461.269397] pstate: 20000085 (nzCv daIf -PAN -UAO) [ 461.274200] pc : rcu_idle_enter+0xc4/0xd0 [ 461.278224] lr : rcu_idle_enter+0x30/0xd0 [ 461.282397] sp : ffff000935577e90 [ 461.285715] x29: ffff000935577e90 x28: 0000000000000000 [ 461.291202] x27: ffff00091330b800 x26: ffffa0001309e220 Broadcast message from systemd-jo[ 461.296528] x25: ffff00093554ba00 x24: 1fffe00126aaefe4 urnald@juno (Tue 2020-06-23 03:3[ 461.304710] x23: ffffa00012227c38 x22: ffffa0001309e1f8 3:27 UTC): [ 461.312810] x21: ffff0009366edc98 x20: ffffa00012231bc0 [ 461.319253] x19: ffff0009366edbc0 x18: 0000000000000000 [ 461.324576] x17: 0000000000000000 x16: 0000000000000000 [ 461.329973] x15: 0000000000000000 x14: ffffa0001009d8c0 [ 461.335298] x13: ffffa00010395afc x12: ffff800126cddb24 [ 461.340784] x11: 1fffe00126cddb23 x10: ffff800126cddb23 kernel[310]: [ 461.033832] Inter[ 461.346109] x9 : dfffa00000000000 x8 : 0000000000000001 nal error: Oops - BUG: 0 [#1] PR[ 461.354293] x7 : ffff0009366ed91b x6 : ffff0009366ed918 EEMPT SMP [ 461.362392] x5 : 00007ffed93224dd x4 : 000000000000002d [ 461.368747] x3 : dfffa00000000000 x2 : 0000000000000007 [ 461.374071] x1 : 4000000000000002 x0 : 4000000000000000 [ 461.379468] Call trace: [ 461.381922] rcu_idle_enter+0xc4/0xd0 [ 461.385755] do_idle+0x27c/0x320 exit01 1 TPASS : exit() t[ 461.388992] cpu_startup_entry+0x20/0x40 est PASSED[ 461.395788] secondary_start_kernel+0x250/0x2b8 [ 461.401184] ---[ end trace 13147ca9b270cd10 ]--- test link,
https://lkft.validation.linaro.org/scheduler/job/1516380#L3866
metadata: git branch: linux-5.4.y git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
git commit: 1d94fa9fbd5f0a775217d4180270dae8cede3f92 git describe: v5.4.47-549-g1d94fa9fbd5f make_kernelversion: 5.4.49-rc1 kernel-config:
https://builds.tuxbuild.com/-hEoWZbVgbGrYjKHXXPiuQ/kernel.config
build-url:
https://gitlab.com/Linaro/lkft/kernel-runs/-/pipelines/158927561
-- Linaro LKFT
https://lkft.linaro.org
4 years, 8 months
1
0
0
0
Re: [PATCH AUTOSEL 4.19 138/172] ovl: verify permissions in ovl_path_open()
by Naresh Kamboju
On Thu, 18 Jun 2020 at 07:16, Sasha Levin <sashal(a)kernel.org> wrote: > > From: Miklos Szeredi <mszeredi(a)redhat.com> > > [ Upstream commit 56230d956739b9cb1cbde439d76227d77979a04d ] > > Check permission before opening a real file. > > ovl_path_open() is used by readdir and copy-up routines. > > ovl_permission() theoretically already checked copy up permissions, but it > doesn't hurt to re-do these checks during the actual copy-up. > > For directory reading ovl_permission() only checks access to topmost > underlying layer. Readdir on a merged directory accesses layers below the > topmost one as well. Permission wasn't checked for these layers. > > Note: modifying ovl_permission() to perform this check would be far more > complex and hence more bug prone. The result is less precise permissions > returned in access(2). If this turns out to be an issue, we can revisit > this bug. > > Signed-off-by: Miklos Szeredi <mszeredi(a)redhat.com> > Signed-off-by: Sasha Levin <sashal(a)kernel.org> > --- > fs/overlayfs/util.c | 27 ++++++++++++++++++++++++++- > 1 file changed, 26 insertions(+), 1 deletion(-) > > diff --git a/fs/overlayfs/util.c b/fs/overlayfs/util.c > index db8bdb29b320..afbc6a97da2a 100644 > --- a/fs/overlayfs/util.c > +++ b/fs/overlayfs/util.c > @@ -479,7 +479,32 @@ bool ovl_is_whiteout(struct dentry *dentry) > > struct file *ovl_path_open(struct path *path, int flags) > { > - return dentry_open(path, flags | O_NOATIME, current_cred()); > + struct inode *inode = d_inode(path->dentry); > + int err, acc_mode; > + > + if (flags & ~(O_ACCMODE | O_LARGEFILE)) > + BUG(); This BUG: triggered on stable-rc 5.7, 5.4, 4.19 and 4.14 on arm64 architecture. steps to reproduce: - cd /opt/ltp - ./runltp -s execveat03 tst_device.c:262: INFO: Using test device LTP_DEV='/dev/loop0' tst_mkfs.c:90: INFO: Formatting /dev/loop0 with ext2 opts='' extra opts='' mke2fs 1.43.8 (1-Jan-2018) [ 407.103235] ------------[ cut here ]------------ [ 407.107890] kernel BUG at fs/overlayfs/util.c:486! [ 407.112704] Internal error: Oops - BUG: 0 [#1] PREEMPT SMP [ 407.118209] Modules linked in: overlay rfkill crc32_ce crct10dif_ce fuse [ 407.124965] Process execveat03 (pid: 17583, stack limit = 0x0000000043f145d5) [ 407.132136] CPU: 5 PID: 17583 Comm: execveat03 Not tainted 4.19.130-rc1-00442-g6c3e013be752 #1 [ 407.140774] Hardware name: ARM Juno development board (r2) (DT) [ 407.146718] pstate: 60000005 (nZCv daif -PAN -UAO) [ 407.151634] pc : ovl_path_open+0xc4/0xc8 [overlay] [ 407.156537] lr : ovl_path_open+0x2c/0xc8 [overlay] [ 407.161345] sp : ffff800909eaf8c0 [ 407.164673] x29: ffff800909eaf8c0 x28: ffff800909eafb40 [ 407.170011] x27: 0000000000000000 x26: ffff2000012de1c0 [ 407.175349] x25: ffff800909785e6c x24: ffff8009042073f0 [ 407.180687] x23: ffff800909eafb40 x22: ffff200009d4d8c8 [ 407.186026] x21: ffff800909eafb40 x20: ffff8008e4e25238 [ 407.191364] x19: 0000000000004000 x18: 0000000000000000 [ 407.196700] x17: 0000000000000000 x16: 0000000000000000 [ 407.202037] x15: 0000000000000000 x14: ffff200008340864 [ 407.207375] x13: ffff20000833f61c x12: ffff20000833b7bc [ 407.212714] x11: ffff20000830c52c x10: ffff2000012c8158 [ 407.218052] x9 : ffff20000830b12c x8 : ffff200008084788 [ 407.223390] x7 : 0000000041b58ab3 x6 : 00000000f1f1f1f1 [ 407.228726] x5 : 00000000f3000000 x4 : dfff200000000000 [ 407.234064] x3 : dfff200000000000 x2 : 0000000000000007 [ 407.239401] x1 : 0000000000004000 x0 : 0000000000000000 [ 407.244736] Call trace: [ 407.247289] ovl_path_open+0xc4/0xc8 [overlay] [ 407.251846] ovl_check_d_type_supported+0x9c/0x178 [overlay] [ 407.257616] ovl_fill_super+0x8d4/0x1ad8 [overlay] [ 407.262437] mount_nodev+0x4c/0xb8 [ 407.265942] ovl_mount+0x18/0x20 [overlay] [ 407.270060] mount_fs+0x64/0x1d8 [ 407.273314] vfs_kern_mount.part.0+0x4c/0x1a0 [ 407.277696] do_mount+0x27c/0x1080 [ 407.281121] ksys_mount+0x8c/0xe8 [ 407.284459] __arm64_sys_mount+0x64/0x80 [ 407.288409] el0_svc_common+0xac/0x1e8 [ 407.292182] el0_svc_handler+0x38/0x80 [ 407.295951] el0_svc+0x8/0xc [ 407.298859] Code: f94013f5 a8c37bfd d65f03c0 d4210000 (d4210000) [ 407.304977] ---[ end trace 50a1985db0cfa610 ]---
https://lkft.validation.linaro.org/scheduler/job/1515127#L3772
metadata: git branch: linux-4.19.y git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
git commit: 6c3e013be752bf70e7321d7c813d68eac8ac36b0 git describe: v4.19.128-442-g6c3e013be752 make_kernelversion: 4.19.130-rc1 kernel-config:
https://builds.tuxbuild.com/xGjDe8DWEXpxwsygVrqa6Q/kernel.config
build-url:
https://gitlab.com/Linaro/lkft/kernel-runs/-/pipelines/158883698
-- Linaro LKFT
https://lkft.linaro.org
4 years, 8 months
1
0
0
0
next 5.8.0-rc2/37e7f89b58c9: regressions detected in project next on OE
by Linaro QA
Summary ------------------------------------------------------------------------ kernel: 5.8.0-rc2 git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
git branch: master git commit: 37e7f89b58c9732c6843602ec3e1db9aa00086f2 git describe: next-20200623 Test details:
https://qa-reports.linaro.org/lkft/linux-next-oe/build/next-20200623
Regressions (compared to build next-20200622) ------------------------------------------------------------------------ hi6220-hikey: network-basic-tests: * ip-link-interface-up * ping-gateway Fixes (compared to build next-20200622) ------------------------------------------------------------------------ qemu_i386: ltp-controllers-tests: * cpuset_hotplug Boards, architectures and test suites: ------------------------------------- dragonboard-410c - arm64 * build - pass: 1, * install-android-platform-tools-r2600 - pass: 6, * install-android-platform-tools-r2800 - pass: 34, * kselftest - fail: 100, pass: 103, skip: 45, * kselftest/drivers - pass: 1, * kselftest/filesystems - fail: 1, pass: 1, * kselftest/net - fail: 56, pass: 3, * linux-log-parser - fail: 5, pass: 163, * ltp-commands-tests - fail: 1, pass: 28, skip: 13, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 5, pass: 279, skip: 54, xfail: 1 * ltp-dio-tests - pass: 10, skip: 20, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 59, skip: 7, xfail: 1 * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 19, skip: 2, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 10, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - fail: 2, pass: 1134, skip: 172, xfail: 2 * perf - fail: 3, pass: 64, skip: 9, xfail: 1 * v4l2-compliance - pass: 42, xfail: 2 hi6220-hikey - arm64 * build - pass: 1, * install-android-platform-tools-r2600 - pass: 8, * install-android-platform-tools-r2800 - pass: 36, * kselftest - pass: 26, skip: 4, * kselftest/drivers - pass: 1, * kselftest/filesystems - fail: 1, * kvm-unit-tests - pass: 14, skip: 2, xfail: 1 * libhugetlbfs - pass: 90, skip: 1, * linux-log-parser - fail: 4, pass: 180, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 5, pass: 277, skip: 54, xfail: 3 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - fail: 2, pass: 7, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 59, skip: 7, xfail: 1 * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 20, skip: 1, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 6, skip: 4, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - fail: 2, pass: 1136, skip: 171, xfail: 1 * network-basic-tests - fail: 2, pass: 18, skip: 2, * perf - fail: 3, pass: 61, skip: 12, xfail: 1 * v4l2-compliance - pass: 43, xfail: 2 i386 * build - pass: 1, * linux-log-parser - pass: 8, juno-r2 - arm64 * build - pass: 1, * linux-log-parser - pass: 8, qemu_arm * libhugetlbfs - pass: 87, skip: 1, * linux-log-parser - fail: 1, pass: 127, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 5, pass: 122, skip: 211, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - fail: 2, pass: 7, * ltp-dio-tests - pass: 18, skip: 11, xfail: 1 * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 60, skip: 7, * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 20, skip: 1, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 51, skip: 23, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 4, skip: 6, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - fail: 2, pass: 1188, skip: 117, xfail: 3 * v4l2-compliance - pass: 43, xfail: 2 qemu_arm64 * libhugetlbfs - pass: 90, skip: 1, * linux-log-parser - fail: 5, pass: 123, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - fail: 2, pass: 7, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 59, skip: 7, xfail: 1 * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 21, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 4, skip: 6, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - fail: 2, pass: 1119, skip: 185, xfail: 4 * v4l2-compliance - pass: 43, xfail: 2 qemu_i386 * libhugetlbfs - pass: 87, skip: 1, * linux-log-parser - fail: 5, pass: 123, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 27, skip: 15, * ltp-containers-tests - fail: 8, pass: 76, xfail: 1 * ltp-controllers-tests - fail: 4, pass: 197, skip: 137, xfail: 1 * ltp-cpuhotplug-tests - pass: 4, skip: 1, xfail: 1 * ltp-crypto-tests - fail: 1, pass: 8, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 62, skip: 5, * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 20, skip: 1, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 52, skip: 22, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 10, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - fail: 13, pass: 1195, skip: 99, xfail: 3 * v4l2-compliance - pass: 43, xfail: 2 qemu_x86_64 * libhugetlbfs - pass: 90, skip: 1, * linux-log-parser - fail: 3, pass: 125, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 27, skip: 15, * ltp-containers-tests - fail: 8, pass: 76, xfail: 1 * ltp-controllers-tests - fail: 5, pass: 196, skip: 137, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - fail: 2, pass: 7, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 62, skip: 5, * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 21, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 10, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - fail: 3, pass: 1134, skip: 172, xfail: 1 * v4l2-compliance - pass: 43, xfail: 2 x15 - arm * build - pass: 1, * linux-log-parser - pass: 8, x86_64 * build - pass: 1, * linux-log-parser - pass: 8, -- Linaro QA
https://qa-reports.linaro.org
4 years, 8 months
1
0
0
0
next 5.8.0-rc2/37e7f89b58c9: no regressions found in project next on OE - sanity
by Linaro QA
Summary ------------------------------------------------------------------------ kernel: 5.8.0-rc2 git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
git branch: master git commit: 37e7f89b58c9732c6843602ec3e1db9aa00086f2 git describe: next-20200623 Test details:
https://qa-reports.linaro.org/lkft/linux-next-oe-sanity/build/next-20200623
No regressions (compared to build next-20200622) No fixes (compared to build next-20200622) Boards, architectures and test suites: ------------------------------------- dragonboard-410c * build - pass: 1, * linux-log-parser - pass: 8, hi6220-hikey * build - pass: 1, * linux-log-parser - pass: 8, i386 * build - pass: 1, * linux-log-parser - pass: 16, * ltp-quickhit-tests - pass: 107, juno-r2 - arm64 * build - pass: 1, * linux-log-parser - pass: 16, * ltp-quickhit-tests - pass: 106, skip: 1, x15 - arm * build - pass: 1, * linux-log-parser - pass: 8, x86_64 * build - pass: 1, * linux-log-parser - pass: 16, * ltp-quickhit-tests - pass: 106, skip: 1, -- Linaro QA
https://qa-reports.linaro.org
4 years, 8 months
1
0
0
0
stable-rc 5.4.49-rc1/1d94fa9fbd5f: no regressions found in project stable v5.4.y on OE
by Linaro QA
Summary ------------------------------------------------------------------------ kernel: 5.4.49-rc1 git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
git branch: linux-5.4.y git commit: 1d94fa9fbd5f0a775217d4180270dae8cede3f92 git describe: v5.4.47-549-g1d94fa9fbd5f Test details:
https://qa-reports.linaro.org/lkft/linux-stable-rc-5.4-oe/build/v5.4.47-549…
No regressions (compared to build v5.4.47-260-ga9a8b229b188) No fixes (compared to build v5.4.47-260-ga9a8b229b188) Boards, architectures and test suites: ------------------------------------- dragonboard-410c * install-android-platform-tools-r2800 - pass: 28, * linux-log-parser - pass: 136, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 59, skip: 7, xfail: 1 * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 19, skip: 2, * ltp-mm-tests - pass: 54, skip: 19, xfail: 1 * ltp-sched-tests - pass: 10, * v4l2-compliance - pass: 43, xfail: 2 hi6220-hikey * install-android-platform-tools-r2800 - pass: 36, * libhugetlbfs - pass: 90, skip: 1, * linux-log-parser - fail: 4, pass: 140, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 4, pass: 280, skip: 54, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-cve-tests - pass: 38, skip: 14, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 59, skip: 7, xfail: 1 * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 20, skip: 1, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 56, skip: 18, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 6, skip: 4, * ltp-securebits-tests - pass: 3, * network-basic-tests - pass: 10, skip: 1, * v4l2-compliance - pass: 43, xfail: 2 i386 * libhugetlbfs - pass: 1, * linux-log-parser - fail: 4, pass: 140, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 4, pass: 196, skip: 138, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-cve-tests - pass: 45, skip: 6, xfail: 1 * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 62, skip: 5, * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 19, skip: 2, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 53, skip: 21, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-open-posix-tests - pass: 1691, skip: 41, xfail: 5 * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 6, skip: 4, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - pass: 1229, skip: 80, xfail: 1 * network-basic-tests - pass: 10, skip: 1, * v4l2-compliance - pass: 42, xfail: 2 juno-r2 * kvm-unit-tests - pass: 14, skip: 2, xfail: 1 * libhugetlbfs - pass: 90, skip: 1, * linux-log-parser - fail: 8, pass: 248, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 16, pass: 142, skip: 10, xfail: 2 * ltp-controllers-tests - fail: 4, pass: 280, skip: 54, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-cve-tests - pass: 76, skip: 28, * ltp-dio-tests - pass: 38, skip: 22, * ltp-fcntl-locktests-tests - pass: 2, * ltp-filecaps-tests - pass: 2, * ltp-fs-tests - pass: 118, skip: 14, xfail: 2 * ltp-fs_bind-tests - pass: 2, * ltp-fs_perms_simple-tests - pass: 36, * ltp-fsx-tests - pass: 2, * ltp-hugetlb-tests - pass: 42, * ltp-io-tests - pass: 4, * ltp-ipc-tests - pass: 16, * ltp-math-tests - pass: 20, * ltp-mm-tests - pass: 112, skip: 36, xfail: 2 * ltp-nptl-tests - pass: 2, * ltp-open-posix-tests - pass: 1690, skip: 42, xfail: 5 * ltp-pty-tests - pass: 8, skip: 4, * ltp-sched-tests - pass: 12, skip: 8, * ltp-securebits-tests - pass: 6, * network-basic-tests - pass: 10, skip: 1, * v4l2-compliance - pass: 43, xfail: 2 juno-r2-compat * linux-log-parser - fail: 4, pass: 4, juno-r2-kasan * linux-log-parser - fail: 4, pass: 100, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-cve-tests - pass: 38, skip: 14, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 59, skip: 7, xfail: 1 * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 21, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 56, skip: 18, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 6, skip: 4, * ltp-securebits-tests - pass: 3, nxp-ls2088 * kvm-unit-tests - pass: 17, * libhugetlbfs - pass: 90, skip: 1, * linux-log-parser - pass: 144, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 27, skip: 14, xfail: 1 * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 4, pass: 278, skip: 54, xfail: 3 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-dio-tests - pass: 10, skip: 20, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 59, skip: 7, xfail: 1 * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 20, skip: 1, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 54, skip: 19, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 6, skip: 4, * ltp-securebits-tests - pass: 3, * network-basic-tests - pass: 10, skip: 1, * v4l2-compliance - pass: 43, xfail: 2 qemu_arm * libhugetlbfs - pass: 87, skip: 1, * linux-log-parser - pass: 128, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 4, pass: 122, skip: 212, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-cve-tests - pass: 38, skip: 14, * ltp-dio-tests - pass: 18, skip: 11, xfail: 1 * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 60, skip: 7, * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 20, skip: 1, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 51, skip: 23, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 4, skip: 6, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - pass: 1188, skip: 120, xfail: 2 * v4l2-compliance - pass: 43, xfail: 2 qemu_arm64 * libhugetlbfs - pass: 90, skip: 1, * linux-log-parser - fail: 6, pass: 122, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 59, skip: 7, xfail: 1 * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 21, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 56, skip: 18, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 4, skip: 6, * ltp-securebits-tests - pass: 3, * v4l2-compliance - pass: 43, xfail: 2 qemu_i386 * libhugetlbfs - pass: 87, skip: 1, * linux-log-parser - fail: 4, pass: 124, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 27, skip: 15, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 4, pass: 196, skip: 138, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-cve-tests - pass: 45, skip: 6, xfail: 1 * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 62, skip: 5, * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 20, skip: 1, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 52, skip: 22, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 10, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - pass: 1203, skip: 106, xfail: 1 * v4l2-compliance - pass: 42, xfail: 2 qemu_x86_64 * libhugetlbfs - pass: 90, skip: 1, * linux-log-parser - pass: 128, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 27, skip: 15, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 4, pass: 196, skip: 138, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-cve-tests - pass: 46, skip: 6, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 62, skip: 5, * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 21, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 58, skip: 16, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 10, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - pass: 1131, skip: 179, * v4l2-compliance - pass: 42, xfail: 2 x15 * install-android-platform-tools-r2800 - pass: 24, * libhugetlbfs - pass: 87, skip: 1, * linux-log-parser - pass: 144, * ltp-commands-tests - pass: 28, skip: 14, * ltp-controllers-tests - fail: 5, pass: 121, skip: 212, xfail: 1 * ltp-cve-tests - pass: 38, skip: 14, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fs-tests - pass: 60, skip: 7, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - pass: 1204, skip: 104, xfail: 2 * network-basic-tests - pass: 10, skip: 1, * v4l2-compliance - pass: 43, xfail: 2 x86 * kvm-unit-tests - fail: 2, pass: 48, skip: 11, xfail: 1 * libhugetlbfs - pass: 90, skip: 1, * linux-log-parser - pass: 152, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 4, pass: 194, skip: 138, xfail: 3 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 62, skip: 5, * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 21, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 58, skip: 16, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-open-posix-tests - pass: 1690, skip: 42, xfail: 5 * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 6, skip: 4, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - pass: 1163, skip: 147, * network-basic-tests - pass: 10, skip: 1, * v4l2-compliance - pass: 42, xfail: 2 x86-kasan * linux-log-parser - pass: 104, * ltp-cap_bounds-tests - pass: 1, * ltp-commands-tests - pass: 28, skip: 14, * ltp-containers-tests - fail: 8, pass: 71, skip: 5, xfail: 1 * ltp-controllers-tests - fail: 4, pass: 196, skip: 138, xfail: 1 * ltp-cpuhotplug-tests - pass: 5, skip: 1, * ltp-crypto-tests - pass: 9, * ltp-cve-tests - pass: 46, skip: 6, * ltp-dio-tests - pass: 19, skip: 11, * ltp-fcntl-locktests-tests - pass: 1, * ltp-filecaps-tests - pass: 1, * ltp-fs-tests - pass: 62, skip: 5, * ltp-fs_bind-tests - pass: 1, * ltp-fs_perms_simple-tests - pass: 18, * ltp-fsx-tests - pass: 1, * ltp-hugetlb-tests - pass: 21, * ltp-io-tests - pass: 2, * ltp-ipc-tests - pass: 8, * ltp-math-tests - pass: 10, * ltp-mm-tests - pass: 58, skip: 16, xfail: 1 * ltp-nptl-tests - pass: 1, * ltp-pty-tests - pass: 4, skip: 2, * ltp-sched-tests - pass: 6, skip: 4, * ltp-securebits-tests - pass: 3, * ltp-syscalls-tests - pass: 1163, skip: 147, -- Linaro QA
https://qa-reports.linaro.org
4 years, 8 months
1
0
0
0
stable-rc 5.4.49-rc1/1d94fa9fbd5f: no regressions found in project stable v5.4.y on OE
by Linaro QA
Summary ------------------------------------------------------------------------ kernel: 5.4.49-rc1 git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
git branch: linux-5.4.y git commit: 1d94fa9fbd5f0a775217d4180270dae8cede3f92 git describe: v5.4.48-289-g1d94fa9fbd5f Test details:
https://qa-reports.linaro.org/lkft/linux-stable-rc-5.4-oe/build/v5.4.48-289…
No regressions (compared to build v5.4.47-260-ga9a8b229b188) No fixes (compared to build v5.4.47-260-ga9a8b229b188) Boards, architectures and test suites: ------------------------------------- dragonboard-410c * build - pass: 1, * install-android-platform-tools-r2600 - pass: 6, * kselftest - fail: 33, pass: 68, skip: 92, xfail: 25 * kselftest/drivers - pass: 1, * kselftest/filesystems - fail: 1, pass: 1, * kselftest/net - fail: 58, xfail: 1 * linux-log-parser - pass: 32, * perf - fail: 4, pass: 55, skip: 9, xfail: 1 hi6220-hikey * build - pass: 1, * install-android-platform-tools-r2600 - pass: 8, * kselftest - fail: 22, pass: 36, skip: 5, xfail: 13 * kselftest/drivers - pass: 1, * kselftest/filesystems - fail: 1, pass: 1, * linux-log-parser - pass: 40, * network-basic-tests - pass: 10, skip: 1, * perf - fail: 4, pass: 52, skip: 12, xfail: 1 i386 * build - pass: 1, * kselftest - fail: 39, pass: 59, skip: 88, xfail: 41 * kselftest/drivers - pass: 1, * kselftest/filesystems - fail: 1, pass: 1, * kselftest/net - fail: 57, xfail: 1 * linux-log-parser - pass: 40, * network-basic-tests - pass: 10, skip: 1, * perf - fail: 10, pass: 56, skip: 10, juno-r2 * build - pass: 1, * linux-log-parser - pass: 8, x15 * build - pass: 1, * install-android-platform-tools-r2600 - pass: 6, * kselftest - fail: 40, pass: 52, skip: 87, xfail: 47 * kselftest/drivers - pass: 1, * kselftest/filesystems - fail: 1, pass: 1, * kselftest/net - fail: 58, xfail: 1 * linux-log-parser - pass: 48, * network-basic-tests - pass: 10, skip: 1, x86 * build - pass: 1, * kselftest - fail: 32, pass: 82, skip: 84, xfail: 22 * kselftest-vsyscall-mode-native - fail: 36, pass: 83, skip: 84, xfail: 21 * kselftest-vsyscall-mode-native/drivers - pass: 1, * kselftest-vsyscall-mode-native/filesystems - fail: 1, pass: 1, * kselftest-vsyscall-mode-native/net - fail: 58, xfail: 1 * kselftest-vsyscall-mode-none - fail: 36, pass: 83, skip: 84, xfail: 22 * kselftest-vsyscall-mode-none/drivers - pass: 1, * kselftest-vsyscall-mode-none/filesystems - fail: 1, pass: 1, * kselftest-vsyscall-mode-none/net - fail: 58, xfail: 1 * kselftest/drivers - pass: 1, * kselftest/filesystems - fail: 1, pass: 1, * kselftest/net - fail: 58, xfail: 1 * linux-log-parser - pass: 56, * network-basic-tests - pass: 10, skip: 1, * perf - fail: 4, pass: 63, skip: 10, -- Linaro QA
https://qa-reports.linaro.org
4 years, 8 months
1
0
0
0
stable-rc 4.19.130-rc1/74874ce1e245: no regressions found in project stable v4.19.y on OE
by Linaro QA
Summary ------------------------------------------------------------------------ kernel: 4.19.130-rc1 git repo:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
git branch: linux-4.19.y git commit: 74874ce1e24550bc345185188f9abbaec8ec6746 git describe: v4.19.129-180-g74874ce1e245 Test details:
https://qa-reports.linaro.org/lkft/linux-stable-rc-4.19-oe/build/v4.19.129-…
No regressions (compared to build v4.19.128-266-g7e6addf7237f) Fixes (compared to build v4.19.128-266-g7e6addf7237f) ------------------------------------------------------------------------ x15: kselftest: * net_fin_ack_lat.sh Boards, architectures and test suites: ------------------------------------- dragonboard-410c - arm64 * build - pass: 1, * install-android-platform-tools-r2600 - pass: 6, * kselftest - fail: 23, pass: 61, skip: 100, xfail: 39 * kselftest/drivers - fail: 1, * kselftest/filesystems - fail: 2, * kselftest/net - fail: 58, xfail: 1 * linux-log-parser - fail: 2, pass: 30, * perf - fail: 7, pass: 44, skip: 10, xfail: 1 hi6220-hikey - arm64 * build - pass: 1, * install-android-platform-tools-r2600 - pass: 8, * kselftest - fail: 15, pass: 32, skip: 8, xfail: 19 * kselftest/drivers - fail: 1, * kselftest/filesystems - fail: 2, * linux-log-parser - pass: 40, * network-basic-tests - pass: 10, skip: 1, * perf - fail: 7, pass: 41, skip: 13, xfail: 1 i386 * build - pass: 1, * linux-log-parser - pass: 8, juno-r2 - arm64 * build - pass: 1, * linux-log-parser - pass: 8, x15 - arm * build - pass: 1, * install-android-platform-tools-r2600 - pass: 8, * kselftest - fail: 31, pass: 45, skip: 96, xfail: 54 * kselftest/drivers - fail: 1, * kselftest/filesystems - fail: 2, * kselftest/net - fail: 58, xfail: 1 * linux-log-parser - pass: 40, * network-basic-tests - pass: 10, skip: 1, * perf - fail: 8, pass: 43, skip: 10, xfail: 1 x86_64 * build - pass: 1, * linux-log-parser - pass: 8, -- Linaro QA
https://qa-reports.linaro.org
4 years, 8 months
1
0
0
0
← Newer
1
...
18
19
20
21
22
23
24
...
88
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
Results per page:
10
25
50
100
200