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
Linux-stable-mirror
May 2023
----- 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
linux-stable-mirror@lists.linaro.org
431 participants
1874 discussions
Start a n
N
ew thread
[PATCH AUTOSEL 5.15 01/13] RDMA/core: Fix multiple -Warray-bounds warnings
by Sasha Levin
From: "Gustavo A. R. Silva" <gustavoars(a)kernel.org> [ Upstream commit aa4d540b4150052ae3b36d286b9c833a961ce291 ] GCC-13 (and Clang)[1] does not like to access a partially allocated object, since it cannot reason about it for bounds checking. In this case 140 bytes are allocated for an object of type struct ib_umad_packet: packet = kzalloc(sizeof(*packet) + IB_MGMT_RMPP_HDR, GFP_KERNEL); However, notice that sizeof(*packet) is only 104 bytes: struct ib_umad_packet { struct ib_mad_send_buf * msg; /* 0 8 */ struct ib_mad_recv_wc * recv_wc; /* 8 8 */ struct list_head list; /* 16 16 */ int length; /* 32 4 */ /* XXX 4 bytes hole, try to pack */ struct ib_user_mad mad __attribute__((__aligned__(8))); /* 40 64 */ /* size: 104, cachelines: 2, members: 5 */ /* sum members: 100, holes: 1, sum holes: 4 */ /* forced alignments: 1, forced holes: 1, sum forced holes: 4 */ /* last cacheline: 40 bytes */ } __attribute__((__aligned__(8))); and 36 bytes extra bytes are allocated for a flexible-array member in struct ib_user_mad: include/rdma/ib_mad.h: 120 enum { ... 123 IB_MGMT_RMPP_HDR = 36, ... } struct ib_user_mad { struct ib_user_mad_hdr hdr; /* 0 64 */ /* --- cacheline 1 boundary (64 bytes) --- */ __u64 data[] __attribute__((__aligned__(8))); /* 64 0 */ /* size: 64, cachelines: 1, members: 2 */ /* forced alignments: 1 */ } __attribute__((__aligned__(8))); So we have sizeof(*packet) + IB_MGMT_RMPP_HDR == 140 bytes Then the address of the flex-array member (for which only 36 bytes were allocated) is casted and copied into a pointer to struct ib_rmpp_mad, which, in turn, is of size 256 bytes: rmpp_mad = (struct ib_rmpp_mad *) packet->mad.data; struct ib_rmpp_mad { struct ib_mad_hdr mad_hdr; /* 0 24 */ struct ib_rmpp_hdr rmpp_hdr; /* 24 12 */ u8 data[220]; /* 36 220 */ /* size: 256, cachelines: 4, members: 3 */ }; The thing is that those 36 bytes allocated for flex-array member data in struct ib_user_mad onlly account for the size of both struct ib_mad_hdr and struct ib_rmpp_hdr, but nothing is left for array u8 data[220]. So, the compiler is legitimately complaining about accessing an object for which not enough memory was allocated. Apparently, the only members of struct ib_rmpp_mad that are relevant (that are actually being used) in function ib_umad_write() are mad_hdr and rmpp_hdr. So, instead of casting packet->mad.data to (struct ib_rmpp_mad *) create a new structure struct ib_rmpp_mad_hdr { struct ib_mad_hdr mad_hdr; struct ib_rmpp_hdr rmpp_hdr; } __packed; and cast packet->mad.data to (struct ib_rmpp_mad_hdr *). Notice that IB_MGMT_RMPP_HDR == sizeof(struct ib_rmpp_mad_hdr) == 36 bytes Refactor the rest of the code, accordingly. Fix the following warnings seen under GCC-13 and -Warray-bounds: drivers/infiniband/core/user_mad.c:564:50: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] drivers/infiniband/core/user_mad.c:566:42: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] drivers/infiniband/core/user_mad.c:618:25: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] drivers/infiniband/core/user_mad.c:622:44: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] Link:
https://github.com/KSPP/linux/issues/273
Link:
https://godbolt.org/z/oYWaGM4Yb
[1] Signed-off-by: Gustavo A. R. Silva <gustavoars(a)kernel.org> Link:
https://lore.kernel.org/r/ZBpB91qQcB10m3Fw@work
Signed-off-by: Leon Romanovsky <leon(a)kernel.org> Signed-off-by: Sasha Levin <sashal(a)kernel.org> --- drivers/infiniband/core/user_mad.c | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/drivers/infiniband/core/user_mad.c b/drivers/infiniband/core/user_mad.c index 98cb594cd9a69..a61c9ede43387 100644 --- a/drivers/infiniband/core/user_mad.c +++ b/drivers/infiniband/core/user_mad.c @@ -131,6 +131,11 @@ struct ib_umad_packet { struct ib_user_mad mad; }; +struct ib_rmpp_mad_hdr { + struct ib_mad_hdr mad_hdr; + struct ib_rmpp_hdr rmpp_hdr; +} __packed; + #define CREATE_TRACE_POINTS #include <trace/events/ib_umad.h> @@ -494,11 +499,11 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, size_t count, loff_t *pos) { struct ib_umad_file *file = filp->private_data; + struct ib_rmpp_mad_hdr *rmpp_mad_hdr; struct ib_umad_packet *packet; struct ib_mad_agent *agent; struct rdma_ah_attr ah_attr; struct ib_ah *ah; - struct ib_rmpp_mad *rmpp_mad; __be64 *tid; int ret, data_len, hdr_len, copy_offset, rmpp_active; u8 base_version; @@ -506,7 +511,7 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, if (count < hdr_size(file) + IB_MGMT_RMPP_HDR) return -EINVAL; - packet = kzalloc(sizeof *packet + IB_MGMT_RMPP_HDR, GFP_KERNEL); + packet = kzalloc(sizeof(*packet) + IB_MGMT_RMPP_HDR, GFP_KERNEL); if (!packet) return -ENOMEM; @@ -560,13 +565,13 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, goto err_up; } - rmpp_mad = (struct ib_rmpp_mad *) packet->mad.data; - hdr_len = ib_get_mad_data_offset(rmpp_mad->mad_hdr.mgmt_class); + rmpp_mad_hdr = (struct ib_rmpp_mad_hdr *)packet->mad.data; + hdr_len = ib_get_mad_data_offset(rmpp_mad_hdr->mad_hdr.mgmt_class); - if (ib_is_mad_class_rmpp(rmpp_mad->mad_hdr.mgmt_class) + if (ib_is_mad_class_rmpp(rmpp_mad_hdr->mad_hdr.mgmt_class) && ib_mad_kernel_rmpp_agent(agent)) { copy_offset = IB_MGMT_RMPP_HDR; - rmpp_active = ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) & + rmpp_active = ib_get_rmpp_flags(&rmpp_mad_hdr->rmpp_hdr) & IB_MGMT_RMPP_FLAG_ACTIVE; } else { copy_offset = IB_MGMT_MAD_HDR; @@ -615,12 +620,12 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, tid = &((struct ib_mad_hdr *) packet->msg->mad)->tid; *tid = cpu_to_be64(((u64) agent->hi_tid) << 32 | (be64_to_cpup(tid) & 0xffffffff)); - rmpp_mad->mad_hdr.tid = *tid; + rmpp_mad_hdr->mad_hdr.tid = *tid; } if (!ib_mad_kernel_rmpp_agent(agent) - && ib_is_mad_class_rmpp(rmpp_mad->mad_hdr.mgmt_class) - && (ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) & IB_MGMT_RMPP_FLAG_ACTIVE)) { + && ib_is_mad_class_rmpp(rmpp_mad_hdr->mad_hdr.mgmt_class) + && (ib_get_rmpp_flags(&rmpp_mad_hdr->rmpp_hdr) & IB_MGMT_RMPP_FLAG_ACTIVE)) { spin_lock_irq(&file->send_lock); list_add_tail(&packet->list, &file->send_list); spin_unlock_irq(&file->send_lock); -- 2.39.2
1 year, 9 months
1
12
0
0
[PATCH AUTOSEL 6.2 01/18] RDMA/core: Fix multiple -Warray-bounds warnings
by Sasha Levin
From: "Gustavo A. R. Silva" <gustavoars(a)kernel.org> [ Upstream commit aa4d540b4150052ae3b36d286b9c833a961ce291 ] GCC-13 (and Clang)[1] does not like to access a partially allocated object, since it cannot reason about it for bounds checking. In this case 140 bytes are allocated for an object of type struct ib_umad_packet: packet = kzalloc(sizeof(*packet) + IB_MGMT_RMPP_HDR, GFP_KERNEL); However, notice that sizeof(*packet) is only 104 bytes: struct ib_umad_packet { struct ib_mad_send_buf * msg; /* 0 8 */ struct ib_mad_recv_wc * recv_wc; /* 8 8 */ struct list_head list; /* 16 16 */ int length; /* 32 4 */ /* XXX 4 bytes hole, try to pack */ struct ib_user_mad mad __attribute__((__aligned__(8))); /* 40 64 */ /* size: 104, cachelines: 2, members: 5 */ /* sum members: 100, holes: 1, sum holes: 4 */ /* forced alignments: 1, forced holes: 1, sum forced holes: 4 */ /* last cacheline: 40 bytes */ } __attribute__((__aligned__(8))); and 36 bytes extra bytes are allocated for a flexible-array member in struct ib_user_mad: include/rdma/ib_mad.h: 120 enum { ... 123 IB_MGMT_RMPP_HDR = 36, ... } struct ib_user_mad { struct ib_user_mad_hdr hdr; /* 0 64 */ /* --- cacheline 1 boundary (64 bytes) --- */ __u64 data[] __attribute__((__aligned__(8))); /* 64 0 */ /* size: 64, cachelines: 1, members: 2 */ /* forced alignments: 1 */ } __attribute__((__aligned__(8))); So we have sizeof(*packet) + IB_MGMT_RMPP_HDR == 140 bytes Then the address of the flex-array member (for which only 36 bytes were allocated) is casted and copied into a pointer to struct ib_rmpp_mad, which, in turn, is of size 256 bytes: rmpp_mad = (struct ib_rmpp_mad *) packet->mad.data; struct ib_rmpp_mad { struct ib_mad_hdr mad_hdr; /* 0 24 */ struct ib_rmpp_hdr rmpp_hdr; /* 24 12 */ u8 data[220]; /* 36 220 */ /* size: 256, cachelines: 4, members: 3 */ }; The thing is that those 36 bytes allocated for flex-array member data in struct ib_user_mad onlly account for the size of both struct ib_mad_hdr and struct ib_rmpp_hdr, but nothing is left for array u8 data[220]. So, the compiler is legitimately complaining about accessing an object for which not enough memory was allocated. Apparently, the only members of struct ib_rmpp_mad that are relevant (that are actually being used) in function ib_umad_write() are mad_hdr and rmpp_hdr. So, instead of casting packet->mad.data to (struct ib_rmpp_mad *) create a new structure struct ib_rmpp_mad_hdr { struct ib_mad_hdr mad_hdr; struct ib_rmpp_hdr rmpp_hdr; } __packed; and cast packet->mad.data to (struct ib_rmpp_mad_hdr *). Notice that IB_MGMT_RMPP_HDR == sizeof(struct ib_rmpp_mad_hdr) == 36 bytes Refactor the rest of the code, accordingly. Fix the following warnings seen under GCC-13 and -Warray-bounds: drivers/infiniband/core/user_mad.c:564:50: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] drivers/infiniband/core/user_mad.c:566:42: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] drivers/infiniband/core/user_mad.c:618:25: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] drivers/infiniband/core/user_mad.c:622:44: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] Link:
https://github.com/KSPP/linux/issues/273
Link:
https://godbolt.org/z/oYWaGM4Yb
[1] Signed-off-by: Gustavo A. R. Silva <gustavoars(a)kernel.org> Link:
https://lore.kernel.org/r/ZBpB91qQcB10m3Fw@work
Signed-off-by: Leon Romanovsky <leon(a)kernel.org> Signed-off-by: Sasha Levin <sashal(a)kernel.org> --- drivers/infiniband/core/user_mad.c | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/drivers/infiniband/core/user_mad.c b/drivers/infiniband/core/user_mad.c index f83954180a338..d21c0a042f0a5 100644 --- a/drivers/infiniband/core/user_mad.c +++ b/drivers/infiniband/core/user_mad.c @@ -131,6 +131,11 @@ struct ib_umad_packet { struct ib_user_mad mad; }; +struct ib_rmpp_mad_hdr { + struct ib_mad_hdr mad_hdr; + struct ib_rmpp_hdr rmpp_hdr; +} __packed; + #define CREATE_TRACE_POINTS #include <trace/events/ib_umad.h> @@ -494,11 +499,11 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, size_t count, loff_t *pos) { struct ib_umad_file *file = filp->private_data; + struct ib_rmpp_mad_hdr *rmpp_mad_hdr; struct ib_umad_packet *packet; struct ib_mad_agent *agent; struct rdma_ah_attr ah_attr; struct ib_ah *ah; - struct ib_rmpp_mad *rmpp_mad; __be64 *tid; int ret, data_len, hdr_len, copy_offset, rmpp_active; u8 base_version; @@ -506,7 +511,7 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, if (count < hdr_size(file) + IB_MGMT_RMPP_HDR) return -EINVAL; - packet = kzalloc(sizeof *packet + IB_MGMT_RMPP_HDR, GFP_KERNEL); + packet = kzalloc(sizeof(*packet) + IB_MGMT_RMPP_HDR, GFP_KERNEL); if (!packet) return -ENOMEM; @@ -560,13 +565,13 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, goto err_up; } - rmpp_mad = (struct ib_rmpp_mad *) packet->mad.data; - hdr_len = ib_get_mad_data_offset(rmpp_mad->mad_hdr.mgmt_class); + rmpp_mad_hdr = (struct ib_rmpp_mad_hdr *)packet->mad.data; + hdr_len = ib_get_mad_data_offset(rmpp_mad_hdr->mad_hdr.mgmt_class); - if (ib_is_mad_class_rmpp(rmpp_mad->mad_hdr.mgmt_class) + if (ib_is_mad_class_rmpp(rmpp_mad_hdr->mad_hdr.mgmt_class) && ib_mad_kernel_rmpp_agent(agent)) { copy_offset = IB_MGMT_RMPP_HDR; - rmpp_active = ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) & + rmpp_active = ib_get_rmpp_flags(&rmpp_mad_hdr->rmpp_hdr) & IB_MGMT_RMPP_FLAG_ACTIVE; } else { copy_offset = IB_MGMT_MAD_HDR; @@ -615,12 +620,12 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, tid = &((struct ib_mad_hdr *) packet->msg->mad)->tid; *tid = cpu_to_be64(((u64) agent->hi_tid) << 32 | (be64_to_cpup(tid) & 0xffffffff)); - rmpp_mad->mad_hdr.tid = *tid; + rmpp_mad_hdr->mad_hdr.tid = *tid; } if (!ib_mad_kernel_rmpp_agent(agent) - && ib_is_mad_class_rmpp(rmpp_mad->mad_hdr.mgmt_class) - && (ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) & IB_MGMT_RMPP_FLAG_ACTIVE)) { + && ib_is_mad_class_rmpp(rmpp_mad_hdr->mad_hdr.mgmt_class) + && (ib_get_rmpp_flags(&rmpp_mad_hdr->rmpp_hdr) & IB_MGMT_RMPP_FLAG_ACTIVE)) { spin_lock_irq(&file->send_lock); list_add_tail(&packet->list, &file->send_list); spin_unlock_irq(&file->send_lock); -- 2.39.2
1 year, 9 months
1
17
0
0
[PATCH AUTOSEL 6.3 01/18] RDMA/core: Fix multiple -Warray-bounds warnings
by Sasha Levin
From: "Gustavo A. R. Silva" <gustavoars(a)kernel.org> [ Upstream commit aa4d540b4150052ae3b36d286b9c833a961ce291 ] GCC-13 (and Clang)[1] does not like to access a partially allocated object, since it cannot reason about it for bounds checking. In this case 140 bytes are allocated for an object of type struct ib_umad_packet: packet = kzalloc(sizeof(*packet) + IB_MGMT_RMPP_HDR, GFP_KERNEL); However, notice that sizeof(*packet) is only 104 bytes: struct ib_umad_packet { struct ib_mad_send_buf * msg; /* 0 8 */ struct ib_mad_recv_wc * recv_wc; /* 8 8 */ struct list_head list; /* 16 16 */ int length; /* 32 4 */ /* XXX 4 bytes hole, try to pack */ struct ib_user_mad mad __attribute__((__aligned__(8))); /* 40 64 */ /* size: 104, cachelines: 2, members: 5 */ /* sum members: 100, holes: 1, sum holes: 4 */ /* forced alignments: 1, forced holes: 1, sum forced holes: 4 */ /* last cacheline: 40 bytes */ } __attribute__((__aligned__(8))); and 36 bytes extra bytes are allocated for a flexible-array member in struct ib_user_mad: include/rdma/ib_mad.h: 120 enum { ... 123 IB_MGMT_RMPP_HDR = 36, ... } struct ib_user_mad { struct ib_user_mad_hdr hdr; /* 0 64 */ /* --- cacheline 1 boundary (64 bytes) --- */ __u64 data[] __attribute__((__aligned__(8))); /* 64 0 */ /* size: 64, cachelines: 1, members: 2 */ /* forced alignments: 1 */ } __attribute__((__aligned__(8))); So we have sizeof(*packet) + IB_MGMT_RMPP_HDR == 140 bytes Then the address of the flex-array member (for which only 36 bytes were allocated) is casted and copied into a pointer to struct ib_rmpp_mad, which, in turn, is of size 256 bytes: rmpp_mad = (struct ib_rmpp_mad *) packet->mad.data; struct ib_rmpp_mad { struct ib_mad_hdr mad_hdr; /* 0 24 */ struct ib_rmpp_hdr rmpp_hdr; /* 24 12 */ u8 data[220]; /* 36 220 */ /* size: 256, cachelines: 4, members: 3 */ }; The thing is that those 36 bytes allocated for flex-array member data in struct ib_user_mad onlly account for the size of both struct ib_mad_hdr and struct ib_rmpp_hdr, but nothing is left for array u8 data[220]. So, the compiler is legitimately complaining about accessing an object for which not enough memory was allocated. Apparently, the only members of struct ib_rmpp_mad that are relevant (that are actually being used) in function ib_umad_write() are mad_hdr and rmpp_hdr. So, instead of casting packet->mad.data to (struct ib_rmpp_mad *) create a new structure struct ib_rmpp_mad_hdr { struct ib_mad_hdr mad_hdr; struct ib_rmpp_hdr rmpp_hdr; } __packed; and cast packet->mad.data to (struct ib_rmpp_mad_hdr *). Notice that IB_MGMT_RMPP_HDR == sizeof(struct ib_rmpp_mad_hdr) == 36 bytes Refactor the rest of the code, accordingly. Fix the following warnings seen under GCC-13 and -Warray-bounds: drivers/infiniband/core/user_mad.c:564:50: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] drivers/infiniband/core/user_mad.c:566:42: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] drivers/infiniband/core/user_mad.c:618:25: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] drivers/infiniband/core/user_mad.c:622:44: warning: array subscript ‘struct ib_rmpp_mad[0]’ is partly outside array bounds of ‘unsigned char[140]’ [-Warray-bounds=] Link:
https://github.com/KSPP/linux/issues/273
Link:
https://godbolt.org/z/oYWaGM4Yb
[1] Signed-off-by: Gustavo A. R. Silva <gustavoars(a)kernel.org> Link:
https://lore.kernel.org/r/ZBpB91qQcB10m3Fw@work
Signed-off-by: Leon Romanovsky <leon(a)kernel.org> Signed-off-by: Sasha Levin <sashal(a)kernel.org> --- drivers/infiniband/core/user_mad.c | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/drivers/infiniband/core/user_mad.c b/drivers/infiniband/core/user_mad.c index f83954180a338..d21c0a042f0a5 100644 --- a/drivers/infiniband/core/user_mad.c +++ b/drivers/infiniband/core/user_mad.c @@ -131,6 +131,11 @@ struct ib_umad_packet { struct ib_user_mad mad; }; +struct ib_rmpp_mad_hdr { + struct ib_mad_hdr mad_hdr; + struct ib_rmpp_hdr rmpp_hdr; +} __packed; + #define CREATE_TRACE_POINTS #include <trace/events/ib_umad.h> @@ -494,11 +499,11 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, size_t count, loff_t *pos) { struct ib_umad_file *file = filp->private_data; + struct ib_rmpp_mad_hdr *rmpp_mad_hdr; struct ib_umad_packet *packet; struct ib_mad_agent *agent; struct rdma_ah_attr ah_attr; struct ib_ah *ah; - struct ib_rmpp_mad *rmpp_mad; __be64 *tid; int ret, data_len, hdr_len, copy_offset, rmpp_active; u8 base_version; @@ -506,7 +511,7 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, if (count < hdr_size(file) + IB_MGMT_RMPP_HDR) return -EINVAL; - packet = kzalloc(sizeof *packet + IB_MGMT_RMPP_HDR, GFP_KERNEL); + packet = kzalloc(sizeof(*packet) + IB_MGMT_RMPP_HDR, GFP_KERNEL); if (!packet) return -ENOMEM; @@ -560,13 +565,13 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, goto err_up; } - rmpp_mad = (struct ib_rmpp_mad *) packet->mad.data; - hdr_len = ib_get_mad_data_offset(rmpp_mad->mad_hdr.mgmt_class); + rmpp_mad_hdr = (struct ib_rmpp_mad_hdr *)packet->mad.data; + hdr_len = ib_get_mad_data_offset(rmpp_mad_hdr->mad_hdr.mgmt_class); - if (ib_is_mad_class_rmpp(rmpp_mad->mad_hdr.mgmt_class) + if (ib_is_mad_class_rmpp(rmpp_mad_hdr->mad_hdr.mgmt_class) && ib_mad_kernel_rmpp_agent(agent)) { copy_offset = IB_MGMT_RMPP_HDR; - rmpp_active = ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) & + rmpp_active = ib_get_rmpp_flags(&rmpp_mad_hdr->rmpp_hdr) & IB_MGMT_RMPP_FLAG_ACTIVE; } else { copy_offset = IB_MGMT_MAD_HDR; @@ -615,12 +620,12 @@ static ssize_t ib_umad_write(struct file *filp, const char __user *buf, tid = &((struct ib_mad_hdr *) packet->msg->mad)->tid; *tid = cpu_to_be64(((u64) agent->hi_tid) << 32 | (be64_to_cpup(tid) & 0xffffffff)); - rmpp_mad->mad_hdr.tid = *tid; + rmpp_mad_hdr->mad_hdr.tid = *tid; } if (!ib_mad_kernel_rmpp_agent(agent) - && ib_is_mad_class_rmpp(rmpp_mad->mad_hdr.mgmt_class) - && (ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) & IB_MGMT_RMPP_FLAG_ACTIVE)) { + && ib_is_mad_class_rmpp(rmpp_mad_hdr->mad_hdr.mgmt_class) + && (ib_get_rmpp_flags(&rmpp_mad_hdr->rmpp_hdr) & IB_MGMT_RMPP_FLAG_ACTIVE)) { spin_lock_irq(&file->send_lock); list_add_tail(&packet->list, &file->send_list); spin_unlock_irq(&file->send_lock); -- 2.39.2
1 year, 9 months
1
17
0
0
[PATCH 6.1 000/611] 6.1.28-rc1 review
by Greg Kroah-Hartman
This is the start of the stable review cycle for the 6.1.28 release. There are 611 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be made by Wed, 10 May 2023 09:42:40 +0000. Anything received after that time might be too late. The whole patch series can be found in one patch at:
https://www.kernel.org/pub/linux/kernel/v6.x/stable-review/patch-6.1.28-rc1…
or in the git tree and branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
linux-6.1.y and the diffstat can be found below. thanks, greg k-h ------------- Pseudo-Shortlog of commits: Greg Kroah-Hartman <gregkh(a)linuxfoundation.org> Linux 6.1.28-rc1 Xingui Yang <yangxingui(a)huawei.com> scsi: libsas: Grab the ATA port lock in sas_ata_device_link_abort() Thomas Gleixner <tglx(a)linutronix.de> debugobject: Ensure pool refill (again) Jiri Slaby (SUSE) <jirislaby(a)kernel.org> drm/amd/display (gcc13): fix enum mismatch Jan Sokolowski <jan.sokolowski(a)intel.com> i40e: use int for i40e_status Jan Sokolowski <jan.sokolowski(a)intel.com> i40e: Remove string printing for i40e_status Jan Sokolowski <jan.sokolowski(a)intel.com> i40e: Remove unused i40e status codes Jiri Slaby (SUSE) <jirislaby(a)kernel.org> sfc (gcc13): synchronize ef100_enqueue_skb()'s return type Jiri Slaby (SUSE) <jirislaby(a)kernel.org> block/blk-iocost (gcc13): keep large values in a new enum Adrian Hunter <adrian.hunter(a)intel.com> perf intel-pt: Fix CYC timestamps after standalone CBR Adrian Hunter <adrian.hunter(a)intel.com> perf auxtrace: Fix address filter entire kernel size Jiri Slaby (SUSE) <jirislaby(a)kernel.org> wifi: ath11k: synchronize ath11k_mac_he_gi_to_nl80211_he_gi()'s return type Jiri Slaby (SUSE) <jirislaby(a)kernel.org> bonding (gcc13): synchronize bond_{a,t}lb_xmit() types Jiri Slaby (SUSE) <jirislaby(a)kernel.org> thunderbolt: Use correct type in tb_port_is_clx_enabled() prototype Paulo Alcantara <pc(a)manguebit.com> cifs: protect session status check in smb2_reconnect() Paulo Alcantara <pc(a)manguebit.com> cifs: fix potential use-after-free bugs in TCP_Server_Info::hostname Arnd Bergmann <arnd(a)arndb.de> blk-iocost: avoid 64-bit division in ioc_timer_fn Li Lingfeng <lilingfeng3(a)huawei.com> dm: don't lock fs when the map is NULL in process of resume Mike Snitzer <snitzer(a)kernel.org> dm ioctl: fix nested locking in table_clear() to remove deadlock concern Mikulas Patocka <mpatocka(a)redhat.com> dm flakey: fix a crash with invalid table line Mike Snitzer <snitzer(a)kernel.org> dm integrity: call kmem_cache_destroy() in dm_integrity_init() error path Mike Snitzer <snitzer(a)kernel.org> dm clone: call kmem_cache_destroy() in dm_clone_init() error path Yeongjin Gil <youngjin.gil(a)samsung.com> dm verity: fix error handling for check_at_most_once on FEC Cindy Lu <lulu(a)redhat.com> vhost_vdpa: fix unmap process in no-batch mode Lorenzo Stoakes <lstoakes(a)gmail.com> mm/mempolicy: correctly update prev when policy is equal on mbind Hugh Dickins <hughd(a)google.com> ia64: fix an addr to taddr in huge_pte_offset() Stefan Haberland <sth(a)linux.ibm.com> s390/dasd: fix hanging blockdevice after request requeue Qu Wenruo <wqu(a)suse.com> btrfs: scrub: reject unsupported scrub flags Peng Liu <liupeng17(a)lenovo.com> scripts/gdb: fix lx-timerlist for Python3 Quentin Schulz <quentin.schulz(a)theobroma-systems.com> clk: rockchip: rk3399: allow clk_cifout to force clk_cifout_src to reparent Conor Dooley <conor.dooley(a)microchip.com> clk: microchip: fix potential UAF in auxdev release callback Ping-Ke Shih <pkshih(a)realtek.com> wifi: rtw89: fix potential race condition between napi_init and napi_enable Bitterblue Smith <rtl8821cerfe2(a)gmail.com> wifi: rtl8xxxu: RTL8192EU always needs full init Tanmay Shah <tanmay.shah(a)amd.com> mailbox: zynqmp: Fix typo in IPI documentation Marco Elver <elver(a)google.com> kcsan: Avoid READ_ONCE() in read_instrumented_memory() Tanmay Shah <tanmay.shah(a)amd.com> mailbox: zynqmp: Fix IPI isr handling Tudor Ambarus <tudor.ambarus(a)linaro.org> mtd: spi-nor: core: Update flash's current address mode when changing address mode Michael Walle <michael(a)walle.cc> mtd: core: fix error path for nvmem provider Michael Walle <michael(a)walle.cc> mtd: core: fix nvmem error reporting Michael Walle <michael(a)walle.cc> mtd: core: provide unique name for nvmem device, take two Mark Rutland <mark.rutland(a)arm.com> kasan: hw_tags: avoid invalid virt_to_page() Jan Kara <jack(a)suse.cz> md/raid5: Improve performance for sequential IO Li Nan <linan122(a)huawei.com> md/raid10: fix null-ptr-deref in raid10_sync_request Christoph Böhmwalder <christoph.boehmwalder(a)linbit.com> drbd: correctly submit flush bio on barrier Jan Kara <jack(a)suse.cz> mm: do not reclaim private data from pinned page Ryusuke Konishi <konishi.ryusuke(a)gmail.com> nilfs2: fix infinite loop in nilfs_mdt_get_block() Ryusuke Konishi <konishi.ryusuke(a)gmail.com> nilfs2: do not write dirty data after degenerating to read-only Kai-Heng Feng <kai.heng.feng(a)canonical.com> ALSA: hda/realtek: Fix mute and micmute LEDs for an HP laptop Caleb Harper <calebharp2005(a)gmail.com> ALSA: hda/realtek: support HP Pavilion Aero 13-be0xxx Mute LED Mark Asselstine <asselsm(a)gmail.com> ALSA: hda/realtek: Add quirk for ASUS UM3402YAR using CS35L41 Vitaly Rodionov <vitalyr(a)opensource.cirrus.com> ALSA: hda/realtek: Add quirk for ThinkPad P1 Gen 6 Geraldo Nascimento <geraldogabriel(a)gmail.com> ALSA: usb-audio: Add quirk for Pioneer DDJ-800 Helge Deller <deller(a)gmx.de> parisc: Ensure page alignment in flush functions Helge Deller <deller(a)gmx.de> parisc: Fix argument pointer in real64_call_asm() Marc Dionne <marc.dionne(a)auristor.com> afs: Avoid endless loop if file is larger than expected David Howells <dhowells(a)redhat.com> afs: Fix getattr to report server i_size on dirs, not local size Marc Dionne <marc.dionne(a)auristor.com> afs: Fix updating of i_size with dv jump from server Chen Yu <yu.c.chen(a)intel.com> PM: hibernate: Do not get block device exclusively in test_resume mode Chen Yu <yu.c.chen(a)intel.com> PM: hibernate: Turn snapshot_test into global variable Hans de Goede <hdegoede(a)redhat.com> ACPI: PM: Do not turn of unused power resources on the Toshiba Click Mini Dan Carpenter <dan.carpenter(a)linaro.org> hte: tegra-194: Fix off by one in tegra_hte_map_to_line_id() Arnd Bergmann <arnd(a)arndb.de> hte: tegra: fix 'struct of_device_id' build error Charles Keepax <ckeepax(a)opensource.cirrus.com> mfd: arizona-spi: Add missing MODULE_DEVICE_TABLE Colin Foster <colin.foster(a)in-advantage.com> mfd: ocelot-spi: Fix unsupported bulk read Matthias Schiffer <matthias.schiffer(a)ew.tq-group.com> mfd: tqmx86: Correct board names for TQMxE39x Matthias Schiffer <matthias.schiffer(a)ew.tq-group.com> mfd: tqmx86: Specify IO port register range more precisely Matthias Schiffer <matthias.schiffer(a)ew.tq-group.com> mfd: tqmx86: Do not access I2C_DETECT register through io_base Kang Chen <void0red(a)hust.edu.cn> thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak in mtk_thermal_probe Hans Verkuil <hverkuil-cisco(a)xs4all.nl> pinctrl-bcm2835.c: fix race condition when setting gpio dir Claudiu Beznea <claudiu.beznea(a)microchip.com> dmaengine: at_xdmac: do not enable all cyclic channels Shunsuke Mie <mie(a)igel.co.jp> dmaengine: dw-edma: Fix to enable to issue dma request on DMA processing Shunsuke Mie <mie(a)igel.co.jp> dmaengine: dw-edma: Fix to change for continuous transfer Dmitry Baryshkov <dmitry.baryshkov(a)linaro.org> dma: gpi: remove spurious unlock in gpi_ch_init Siddharth Vadapalli <s-vadapalli(a)ti.com> phy: ti: j721e-wiz: Fix unreachable code in wiz_mode_select() Gaosheng Cui <cuigaosheng1(a)huawei.com> phy: tegra: xusb: Add missing tegra_xusb_port_unregister for usb2_port and ulpi_port Pierre-Louis Bossart <pierre-louis.bossart(a)linux.intel.com> soundwire: intel: don't save hw_params for use in prepare Pierre-Louis Bossart <pierre-louis.bossart(a)linux.intel.com> soundwire: cadence: rename sdw_cdns_dai_dma_data as sdw_cdns_dai_runtime AngeloGioacchino Del Regno <angelogioacchino.delregno(a)collabora.com> pwm: mtk-disp: Configure double buffering before reading in .get_state() AngeloGioacchino Del Regno <angelogioacchino.delregno(a)collabora.com> pwm: mtk-disp: Disable shadow registers before setting backlight values H. Nikolaus Schaller <hns(a)goldelico.com> leds: tca6507: Fix error handling of using fwnode_property_read_string Christophe JAILLET <christophe.jaillet(a)wanadoo.fr> dmaengine: mv_xor_v2: Fix an error code. Arınç ÜNAL <arinc.unal(a)arinc9.com> pinctrl: ralink: reintroduce ralink,rt2880-pinmux compatible string Randy Dunlap <rdunlap(a)infradead.org> leds: TI_LMU_COMMON: select REGMAP instead of depending on it Geert Uytterhoeven <geert+renesas(a)glider.be> pinctrl: renesas: r8a779g0: Fix ERROROUTC function names Geert Uytterhoeven <geert+renesas(a)glider.be> pinctrl: renesas: r8a779g0: Fix Group 6/7 pin functions Geert Uytterhoeven <geert+renesas(a)glider.be> pinctrl: renesas: r8a779g0: Fix Group 4/5 pin functions Phong Hoang <phong.hoang.wz(a)renesas.com> pinctrl: renesas: r8a779f0: Fix tsn1_avtp_pps pin group Hai Pham <hai.pham.ud(a)renesas.com> pinctrl: renesas: r8a779a0: Remove incorrect AVB[01] pinmux configuration Ye Bin <yebin10(a)huawei.com> ext4: fix use-after-free read in ext4_find_extent for bigalloc + inline Zhihao Cheng <chengzhihao1(a)huawei.com> ext4: fix i_disksize exceeding i_size problem in paritally written case Bharath SM <bharathsm(a)microsoft.com> SMB3: Close deferred file handles in case of handle lease break Bharath SM <bharathsm(a)microsoft.com> SMB3: Add missing locks to protect deferred close file list Geert Uytterhoeven <geert+renesas(a)glider.be> timekeeping: Fix references to nonexistent ktime_get_fast_ns() Stafford Horne <shorne(a)gmail.com> openrisc: Properly store r31 to pt_regs on unhandled exceptions Qinrun Dai <flno(a)hust.edu.cn> clocksource/drivers/davinci: Fix memory leak in davinci_timer_register when init fails Mark Zhang <markzhang(a)nvidia.com> RDMA/mlx5: Use correct device num_ports when modify DC Dai Ngo <dai.ngo(a)oracle.com> SUNRPC: remove the maximum number of retries in call_bind_status Mark Bloch <mbloch(a)nvidia.com> RDMA/mlx5: Fix flow counter query via DEVX Avihai Horon <avihaih(a)nvidia.com> RDMA/mlx5: Check pcie_relaxed_ordering_enabled() in UMR Michael Kelley <mikelley(a)microsoft.com> swiotlb: fix debugfs reporting of reserved memory pools Doug Berger <opendmb(a)gmail.com> swiotlb: relocate PageHighMem test away from rmem_swiotlb_setup Miaoqian Lin <linmq006(a)gmail.com> Input: raspberrypi-ts - fix refcount leak in rpi_ts_probe Konrad Dybcio <konrad.dybcio(a)linaro.org> clk: qcom: dispcc-qcm2290: Remove inexistent DSI1PHY clk Dmitry Baryshkov <dmitry.baryshkov(a)linaro.org> clk: qcom: dispcc-qcm2290: get rid of test clock Dmitry Baryshkov <dmitry.baryshkov(a)linaro.org> clk: qcom: gcc-sm8350: fix PCIe PIPE clocks handling Mohammad Rafi Shaik <quic_mohs(a)quicinc.com> clk: qcom: lpassaudiocc-sc7280: Add required gdsc power domain clks in lpass_cc_sc7280_desc Srinivasa Rao Mandadapu <quic_srivasam(a)quicinc.com> clk: qcom: lpasscc-sc7280: Skip qdsp6ss clock registration Jerry Snitselaar <jsnitsel(a)redhat.com> iommu/amd: Set page size bitmap during V2 domain allocation Trond Myklebust <trond.myklebust(a)hammerspace.com> NFSv4.1: Always send a RECLAIM_COMPLETE after establishing lease Peng Fan <peng.fan(a)nxp.com> clk: imx: imx8ulp: Fix XBAR_DIVBUS and AD_SLOW clock parents Peng Fan <peng.fan(a)nxp.com> clk: imx: fracn-gppll: disable hardware select control Peng Fan <peng.fan(a)nxp.com> clk: imx: fracn-gppll: fix the rate table Patrick Kelsey <pat.kelsey(a)cornelisnetworks.com> IB/hfi1: Fix bugs with non-PAGE_SIZE-end multi-iovec user SDMA requests Patrick Kelsey <pat.kelsey(a)cornelisnetworks.com> IB/hfi1: Fix SDMA mmu_rb_node not being evicted in LRU order Saravanan Vajravel <saravanan.vajravel(a)broadcom.com> RDMA/srpt: Add a check for valid 'mad_agent' pointer Mark Zhang <markzhang(a)nvidia.com> RDMA/cm: Trace icm_send_rej event before the cm state is reset Chris Morgan <macromorgan(a)hotmail.com> power: supply: rk817: Fix low SOC bugs Konrad Dybcio <konrad.dybcio(a)linaro.org> clk: qcom: gcc-sm6115: Mark RCGs shared where applicable Tetsuo Handa <penguin-kernel(a)I-love.SAKURA.ne.jp> RDMA/siw: Remove namespace check from siw_netdev_event() Clément Léger <clement.leger(a)bootlin.com> clk: add missing of_node_put() in "assigned-clocks" property parsing Sebastian Reichel <sre(a)kernel.org> power: supply: generic-adc-battery: fix unit scaling Yong Wu <yong.wu(a)mediatek.com> iommu/mediatek: Set dma_mask for PGTABLE_PA_35_EN Zeng Heng <zengheng4(a)huawei.com> fs/ntfs3: Fix slab-out-of-bounds read in hdr_delete_de() ZhangPeng <zhangpeng362(a)huawei.com> fs/ntfs3: Fix OOB read in indx_insert_into_buffer ZhangPeng <zhangpeng362(a)huawei.com> fs/ntfs3: Fix null-ptr-deref on inode->i_op in ntfs_lookup() Jiasheng Jiang <jiasheng(a)iscas.ac.cn> fs/ntfs3: Add check for kmemdup Chen Zhongjin <chenzhongjin(a)huawei.com> fs/ntfs3: Fix memory leak if ntfs_read_mft failed Cheng Xu <chengyou(a)linux.alibaba.com> RDMA/erdma: Use fixed hardware page size Dhruva Gole <d-gole(a)ti.com> rtc: k3: handle errors while enabling wake irq Martin Blumenstingl <martin.blumenstingl(a)googlemail.com> rtc: meson-vrtc: Use ktime_get_real_ts64() to get the current time Dan Carpenter <error27(a)gmail.com> RDMA/mlx4: Prevent shift wrapping in set_user_sq_size() Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> rtc: omap: include header for omap_rtc_power_off_program prototype Petr Mladek <pmladek(a)suse.com> workqueue: Fix hung time report of worker pools Konrad Dybcio <konrad.dybcio(a)linaro.org> clk: qcom: gcc-qcm2290: Fix up gcc_sdcc2_apps_clk_src Natalia Petrova <n.petrova(a)fintech.ru> RDMA/rdmavt: Delete unnecessary NULL check AngeloGioacchino Del Regno <angelogioacchino.delregno(a)collabora.com> clk: mediatek: mt8135: Properly use CLK_IS_CRITICAL flag AngeloGioacchino Del Regno <angelogioacchino.delregno(a)collabora.com> clk: mediatek: mt7622: Properly use CLK_IS_CRITICAL flag AngeloGioacchino Del Regno <angelogioacchino.delregno(a)collabora.com> clk: mediatek: Consistently use GATE_MTK() macro AngeloGioacchino Del Regno <angelogioacchino.delregno(a)collabora.com> clk: mediatek: mt2712: Add error handling to clk_mt2712_apmixed_probe() Daniil Dulov <d.dulov(a)aladdin.ru> RDMA/siw: Fix potential page_array out of range access Kang Chen <void0red(a)gmail.com> IB/hifi1: add a null check of kzalloc_node in hfi1_ipoib_txreq_init Claudiu Beznea <claudiu.beznea(a)microchip.com> clk: at91: clk-sam9x60-pll: fix return value check Beau Belgrave <beaub(a)linux.microsoft.com> tracing/user_events: Ensure write index cannot be negative Schspa Shi <schspa(a)gmail.com> sched/rt: Fix bad task migration for rt tasks Alexandre Ghiti <alexghiti(a)rivosinc.com> riscv: Fix ptdump when KASAN is enabled Josh Poimboeuf <jpoimboe(a)kernel.org> Revert "objtool: Support addition to set CFA base" Yang Jihong <yangjihong1(a)huawei.com> perf/core: Fix hardlockup failure caused by perf throttle Libo Chen <libo.chen(a)oracle.com> sched/fair: Fix inaccurate tally of ttwu_move_affine Nathan Lynch <nathanl(a)linux.ibm.com> powerpc/rtas: use memmove for potentially overlapping buffer copy Randy Dunlap <rdunlap(a)infradead.org> macintosh: via-pmu-led: requires ATA to be set Randy Dunlap <rdunlap(a)infradead.org> powerpc/sysdev/tsi108: fix resource printk format warnings Randy Dunlap <rdunlap(a)infradead.org> powerpc/wii: fix resource printk format warnings Randy Dunlap <rdunlap(a)infradead.org> powerpc/mpc512x: fix resource printk format warning Christophe Leroy <christophe.leroy(a)csgroup.eu> powerpc/perf: Properly detect mpc7450 family Liang He <windhl(a)126.com> macintosh/windfarm_smu_sat: Add missing of_node_put() Kajol Jain <kjain(a)linux.ibm.com> selftests/powerpc/pmu: Fix sample field check in the mmcra_thresh_marked_sample_test Christophe JAILLET <christophe.jaillet(a)wanadoo.fr> fbdev: mmp: Fix deferred clk handling in mmphw_probe() Dhruva Gole <d-gole(a)ti.com> spi: bcm63xx: remove PM_SLEEP based conditional compilation Albert Huang <huangjie.albert(a)bytedance.com> virtio_ring: don't update event idx on get_buf Jishnu Prakash <quic_jprakash(a)quicinc.com> spmi: Add a check for remove callback when removing a SPMI driver Philipp Hortmann <philipp.g.hortmann(a)gmail.com> staging: rtl8192e: Fix W_DISABLE# does not work after stop/start Dhruva Gole <d-gole(a)ti.com> spi: cadence-quadspi: use macro DEFINE_SIMPLE_DEV_PM_OPS Florian Fainelli <f.fainelli(a)gmail.com> serial: 8250: Add missing wakeup event reporting Shenwei Wang <shenwei.wang(a)nxp.com> tty: serial: fsl_lpuart: adjust buffer length to the intended size Dan Carpenter <dan.carpenter(a)linaro.org> firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe Chunfeng Yun <chunfeng.yun(a)mediatek.com> usb: mtu3: fix kernel panic at qmu transfer done irq handler Yinhao Hu <dddddd(a)hust.edu.cn> usb: chipidea: fix missing goto in `ci_hdrc_probe` Jon Hunter <jonathanh(a)nvidia.com> usb: gadget: tegra-xudc: Fix crash in vbus_draw John Paul Adrian Glaubitz <glaubitz(a)physik.fu-berlin.de> sh: sq: Fix incorrect element size for allocating bitmap buffer Kevin Brodsky <kevin.brodsky(a)arm.com> uapi/linux/const.h: prefer ISO-friendly __typeof__ Florian Fainelli <f.fainelli(a)gmail.com> scripts/gdb: raise error with reduced debugging information Lars-Peter Clausen <lars(a)metafoo.de> i2c: xiic: xiic_xfer(): Fix runtime PM leak on error path Lars-Peter Clausen <lars(a)metafoo.de> i2c: cadence: cdns_i2c_master_xfer(): Fix runtime PM leak on error path Dhruva Gole <d-gole(a)ti.com> spi: cadence-quadspi: fix suspend-resume implementations Konrad Dybcio <konrad.dybcio(a)linaro.org> drm/panel: novatek-nt35950: Only unregister DSI1 if it exists Alex Williamson <alex.williamson(a)redhat.com> PCI/PM: Extend D3hot delay for NVIDIA HDA controllers Liliang Ye <yll(a)hust.edu.cn> ASoC: fsl_mqs: move of_node_put() to the correct location Konrad Dybcio <konrad.dybcio(a)linaro.org> drm/panel: novatek-nt35950: Improve error handling Suzuki K Poulose <suzuki.poulose(a)arm.com> coresight: etm_pmu: Set the module field Pierre Gondois <pierre.gondois(a)arm.com> cacheinfo: Check sib_leaf in cache_leaves_are_shared() Basavaraj Natikar <Basavaraj.Natikar(a)amd.com> HID: amd_sfh: Handle "no sensors" enabled for SFH1.1 Basavaraj Natikar <Basavaraj.Natikar(a)amd.com> HID: amd_sfh: Increase sensor command timeout for SFH1.1 Basavaraj Natikar <Basavaraj.Natikar(a)amd.com> HID: amd_sfh: Correct the stop all command Basavaraj Natikar <Basavaraj.Natikar(a)amd.com> HID: amd_sfh: Add support for shutdown operation Basavaraj Natikar <Basavaraj.Natikar(a)amd.com> HID: amd_sfh: Fix illuminance value Basavaraj Natikar <Basavaraj.Natikar(a)amd.com> HID: amd_sfh: Correct the sensor enable and disable command Basavaraj Natikar <Basavaraj.Natikar(a)amd.com> HID: amd_sfh: Correct the structure fields Florian Fainelli <f.fainelli(a)gmail.com> scripts/gdb: bail early if there are no generic PD Florian Fainelli <f.fainelli(a)gmail.com> scripts/gdb: bail early if there are no clocks Randy Dunlap <rdunlap(a)infradead.org> ia64: salinfo: placate defined-but-not-used warning Randy Dunlap <rdunlap(a)infradead.org> ia64: mm/contig: fix section mismatch warning/error Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy(a)linux.intel.com> PCI/EDR: Clear Device Status after EDR error recovery Miquel Raynal <miquel.raynal(a)bootlin.com> of: Fix modalias string generation Dae R. Jeong <threeearcat(a)gmail.com> vmci_host: fix a race condition in vmci_host_poll() causing GPF Christophe Leroy <christophe.leroy(a)csgroup.eu> spi: fsl-spi: Fix CPM/QE mode Litte Endian Johan Hovold <johan+linaro(a)kernel.org> interconnect: qcom: rpm: drop bogus pm domain attach Uwe Kleine-König <u.kleine-koenig(a)pengutronix.de> spi: qup: Don't skip cleanup in remove's error path Randy Dunlap <rdunlap(a)infradead.org> linux/vt_buffer.h: allow either builtin or modular for macros Cristian Ciocaltea <cristian.ciocaltea(a)collabora.com> ASoC: es8316: Handle optional IRQ assignment H. Nikolaus Schaller <hns(a)goldelico.com> PCI: imx6: Install the fault handler only on compatible match Daniel Baluta <daniel.baluta(a)nxp.com> ASoC: soc-compress: Inherit atomicity from DAI link for Compress FE Zheng Wang <zyytlz.wz(a)163.com> usb: gadget: udc: renesas_usb3: Fix use after free bug in renesas_usb3_remove due to race condition Uwe Kleine-König <u.kleine-koenig(a)pengutronix.de> spi: imx: Don't skip cleanup in remove's error path Uwe Kleine-König <u.kleine-koenig(a)pengutronix.de> spi: atmel-quadspi: Free resources even if runtime resume failed in .remove() Uwe Kleine-König <u.kleine-koenig(a)pengutronix.de> spi: atmel-quadspi: Don't leak clk enable count in pm resume Doug Berger <opendmb(a)gmail.com> serial: 8250_bcm7271: Fix arbitration handling Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> iio: light: max44009: add missing OF device matching Marco Pagani <marpagan(a)redhat.com> fpga: bridge: fix kernel-doc parameter description Marek Vasut <marex(a)denx.de> serial: stm32: Re-assert RTS/DE GPIO in RS485 mode only if more data are transmitted Prashanth K <quic_prashk(a)quicinc.com> usb: dwc3: gadget: Change condition for processing suspend event Wolfram Sang <wsa+renesas(a)sang-engineering.com> usb: host: xhci-rcar: remove leftover quirk handling John Stultz <jstultz(a)google.com> pstore: Revert pmsg_lock back to a normal mutex Hans de Goede <hdegoede(a)redhat.com> drivers: staging: rtl8723bs: Fix locking in rtw_scan_timeout_handler() Hans de Goede <hdegoede(a)redhat.com> drivers: staging: rtl8723bs: Fix locking in _rtw_join_timeout_handler() Lucas Tanure <lucas.tanure(a)collabora.com> ASoC: cs35l41: Only disable internal boost Randy Dunlap <rdunlap(a)infradead.org> ipmi: ASPEED_BT_IPMI_BMC: select REGMAP_MMIO instead of depending on it Kuniyuki Iwashima <kuniyu(a)amazon.com> tcp/udp: Fix memleaks of sk and zerocopy skbs with TX timestamp. Gencen Gan <gangecen(a)hust.edu.cn> net: amd: Fix link leak when verifying config failed Kuniyuki Iwashima <kuniyu(a)amazon.com> netlink: Use copy_to_user() for optval in netlink_getsockopt(). Liu Jian <liujian56(a)huawei.com> Revert "Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished work" Ziyang Xuan <william.xuanziyang(a)huawei.com> ipv4: Fix potential uninit variable access bug in __ip_make_skb() Davide Caratti <dcaratti(a)redhat.com> net/sched: sch_fq: fix integer overflow of "credit" Dan Carpenter <dan.carpenter(a)linaro.org> net: dpaa: Fix uninitialized variable in dpaa_stop() Florian Westphal <fw(a)strlen.de> netfilter: nf_tables: don't write table validation state without mutex Stanislav Fomichev <sdf(a)google.com> bpf: Don't EFAULT for getsockopt with optval=NULL Alexei Starovoitov <ast(a)kernel.org> bpf: Fix race between btf_put and btf_idr walk. Yan Wang <rk.code(a)outlook.com> net: stmmac:fix system hang when setting up tag_8021q VLAN for DSA ports Aya Levin <ayal(a)nvidia.com> net/mlx5e: Nullify table pointer when failing to create Moshe Shemesh <moshe(a)nvidia.com> net/mlx5: Use recovery timeout on sync reset flow Moshe Shemesh <moshe(a)nvidia.com> Revert "net/mlx5: Remove "recovery" arg from mlx5_load_one() function" Jiri Pirko <jiri(a)nvidia.com> net/mlx5: Suspend auxiliary devices only in case of PCI device suspend Jiri Pirko <jiri(a)nvidia.com> net/mlx5: Remove "recovery" arg from mlx5_load_one() function Roi Dayan <roid(a)nvidia.com> net/mlx5e: Fix error flow in representor failing to add vport rx rule Chris Mi <cmi(a)nvidia.com> net/mlx5: E-switch, Don't destroy indirect table in split rule Chris Mi <cmi(a)nvidia.com> net/mlx5: E-switch, Create per vport table based on devlink encap mode Vlad Buslov <vladbu(a)nvidia.com> net/mlx5e: Don't clone flow post action attributes second time Joe Damato <jdamato(a)fastly.com> ixgbe: Enable setting RSS table to default values Joe Damato <jdamato(a)fastly.com> ixgbe: Allow flow hash to be set via ethtool Johannes Berg <johannes.berg(a)intel.com> wifi: iwlwifi: fw: fix memory leak in debugfs Tzung-Bi Shih <tzungbi(a)kernel.org> netfilter: conntrack: fix wrong ct->timeout value Pablo Neira Ayuso <pablo(a)netfilter.org> netfilter: conntrack: restore IPS_CONFIRMED out of nf_conntrack_hash_check_insert() Johannes Berg <johannes.berg(a)intel.com> wifi: iwlwifi: mvm: check firmware response size Ryder Lee <ryder.lee(a)mediatek.com> wifi: mt76: connac: fix txd multicast rate setting Quan Zhou <quan.zhou(a)mediatek.com> wifi: mt76: mt7921e: stop chip reset worker in unregister hook Quan Zhou <quan.zhou(a)mediatek.com> wifi: mt76: mt7921e: improve reliability of dma reset Jiefeng Li <jiefeng_li(a)hust.edu.cn> wifi: mt76: mt7921: fix missing unwind goto in `mt7921u_probe` Sean Wang <sean.wang(a)mediatek.com> mt76: mt7921: fix kernel panic by accessing unallocated eeprom.data Ming Yen Hsieh <mingyen.hsieh(a)mediatek.com> wifi: mt76: fix 6GHz high channel not be scanned Quan Zhou <quan.zhou(a)mediatek.com> wifi: mt76: mt7921e: fix probe timeout after reboot Deren Wu <deren.wu(a)mediatek.com> wifi: mt76: add flexible polling wait-interval support Kang Chen <void0red(a)gmail.com> wifi: mt76: handle failure of vzalloc in mt7615_coredump_work Lorenz Brun <lorenz(a)brun.one> wifi: mt76: mt7915: expose device tree match table Emmanuel Grumbach <emmanuel.grumbach(a)intel.com> wifi: iwlwifi: make the loop for card preparation effective Pavel Begunkov <asml.silence(a)gmail.com> io_uring/rsrc: use nospec'ed indexes Jan Kara <jack(a)suse.cz> jdb2: Don't refuse invalidation of already invalidated buffers Tom Rix <trix(a)redhat.com> wifi: iwlwifi: fw: move memset before early return Tom Rix <trix(a)redhat.com> wifi: iwlwifi: mvm: initialize seq variable Daniel Gabay <daniel.gabay(a)intel.com> wifi: iwlwifi: yoyo: Fix possible division by zero Daniel Gabay <daniel.gabay(a)intel.com> wifi: iwlwifi: yoyo: skip dump correctly on hw error Ayala Beker <ayala.beker(a)intel.com> wifi: iwlwifi: mvm: don't drop unencrypted MCAST frames Yu Kuai <yukuai3(a)huawei.com> md/raid10: don't call bio_start_io_acct twice for bio which experienced read error Yu Kuai <yukuai3(a)huawei.com> md/raid10: fix memleak of md thread Yu Kuai <yukuai3(a)huawei.com> md/raid10: fix memleak for 'conf->bio_split' Yu Kuai <yukuai3(a)huawei.com> md/raid10: fix leak of 'r10bio->remaining' for recovery Li Nan <linan122(a)huawei.com> md/raid10: fix task hung in raid10d Chao Yu <chao(a)kernel.org> f2fs: fix to check return value of inc_valid_block_count() Chao Yu <chao(a)kernel.org> f2fs: fix to check return value of f2fs_do_truncate_blocks() Daniel Borkmann <daniel(a)iogearbox.net> bpf, sockmap: Revert buggy deadlock fix in the sockhash and sockmap Avraham Stern <avraham.stern(a)intel.com> wifi: iwlwifi: mvm: don't set CHECKSUM_COMPLETE for unsupported protocols Avraham Stern <avraham.stern(a)intel.com> wifi: iwlwifi: trans: don't trigger d3 interrupt twice Johannes Berg <johannes.berg(a)intel.com> wifi: iwlwifi: debug: fix crash in __iwl_err() Christoph Hellwig <hch(a)lst.de> blk-mq: don't plug for head insertions in blk_execute_rq_nowait Song Liu <song(a)kernel.org> selftests/bpf: Fix leaked bpf_link in get_stackid_cannot_attach Song Liu <song(a)kernel.org> selftests/bpf: Use read_perf_max_sample_freq() in perf_event_stackmap Ming Lei <ming.lei(a)redhat.com> nvme-fcloop: fix "inconsistent {IN-HARDIRQ-W} -> {HARDIRQ-ON-W} usage" Keith Busch <kbusch(a)kernel.org> nvme: fix async event trace event Damien Le Moal <damien.lemoal(a)opensource.wdc.com> nvmet: fix I/O Command Set specific Identify Controller Damien Le Moal <damien.lemoal(a)opensource.wdc.com> nvmet: fix Identify Active Namespace ID list handling Damien Le Moal <damien.lemoal(a)opensource.wdc.com> nvmet: fix Identify Controller handling Damien Le Moal <damien.lemoal(a)opensource.wdc.com> nvmet: fix Identify Namespace handling Damien Le Moal <damien.lemoal(a)opensource.wdc.com> nvmet: fix error handling in nvmet_execute_identify_cns_cs_ns() Xin Liu <liuxin350(a)huawei.com> bpf, sockmap: fix deadlocks in the sockhash and sockmap P Praneesh <quic_ppranees(a)quicinc.com> wifi: ath11k: fix writing to unintended memory region Sebastian Reichel <sebastian.reichel(a)collabora.com> net: ethernet: stmmac: dwmac-rk: fix optional phy regulator handling Sebastian Reichel <sebastian.reichel(a)collabora.com> net: ethernet: stmmac: dwmac-rk: rework optional clock handling Shuchang Li <lishuchang(a)hust.edu.cn> scsi: lpfc: Fix ioremap issues in lpfc_sli4_pci_mem_setup() Feng Zhou <zhoufeng.zf(a)bytedance.com> bpf/btf: Fix is_int_ptr() Gregory Greenman <gregory.greenman(a)intel.com> wifi: iwlwifi: fix duplicate entry in iwl_dev_info_table Chao Yu <chao(a)kernel.org> f2fs: fix to avoid use-after-free for cached IPU bio Kal Conley <kal.conley(a)dectris.com> xsk: Fix unaligned descriptor validation Herbert Xu <herbert(a)gondor.apana.org.au> crypto: drbg - Only fail when jent is unavailable in FIPS mode Quentin Monnet <quentin(a)isovalent.com> bpftool: Fix bug for long instructions in program CFG dumps YiFei Zhu <zhuyifei(a)google.com> selftests/bpf: Wait for receive in cg_storage_multi test Kal Conley <kal.conley(a)dectris.com> selftests: xsk: Deflakify STATS_RX_DROPPED test Kal Conley <kal.conley(a)dectris.com> selftests: xsk: Disable IPv6 on VETH1 Kal Conley <kal.conley(a)dectris.com> selftests: xsk: Use correct UMEM size in testapp_invalid_desc Simon Horman <horms(a)kernel.org> net: qrtr: correct types of trace event parameters Qilin Tan <qilin.tan(a)mediatek.com> f2fs: fix iostat lock protection Armin Wolf <W_Armin(a)gmx.de> wifi: rt2x00: Fix memory leak when handling surveys Xingui Yang <yangxingui(a)huawei.com> scsi: hisi_sas: Handle NCQ error when IPTT is valid John Garry <john.garry(a)huawei.com> scsi: libsas: Add sas_ata_device_link_abort() Wei Chen <harperchen1110(a)gmail.com> wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_reg() Wei Chen <harperchen1110(a)gmail.com> wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_rfreg() Suman Anna <s-anna(a)ti.com> crypto: sa2ul - Select CRYPTO_DES Christophe JAILLET <christophe.jaillet(a)wanadoo.fr> crypto: caam - Clear some memory in instantiate_rng Jaegeuk Kim <jaegeuk(a)kernel.org> f2fs: fix scheduling while atomic in decompression path Yangtao Li <frank.li(a)vivo.com> f2fs: compress: fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_pages() Jaegeuk Kim <jaegeuk(a)kernel.org> f2fs: apply zone capacity to all zone type Yonggil Song <yonggil.song(a)samsung.com> f2fs: fix uninitialized skipped_gc_rwsem Yangtao Li <frank.li(a)vivo.com> f2fs: handle dqget error in f2fs_transfer_project_quota() Sean Anderson <seanga2(a)gmail.com> net: sunhme: Fix uninitialized return code Danila Chernetsov <listdansp(a)mail.ru> scsi: megaraid: Fix mega_cmd_done() CMDID_INT_CMDS Mike Christie <michael.christie(a)oracle.com> scsi: target: iscsit: Fix TAS handling during conn cleanup Mike Christie <michael.christie(a)oracle.com> scsi: target: Fix multiple LUN_RESET handling Mike Christie <michael.christie(a)oracle.com> scsi: target: iscsit: Stop/wait on cmds during conn close Mike Christie <michael.christie(a)oracle.com> scsi: target: iscsit: isert: Alloc per conn cmd counter Mike Christie <michael.christie(a)oracle.com> scsi: target: Pass in cmd counter to use during cmd setup Mike Christie <michael.christie(a)oracle.com> scsi: target: Move cmd counter allocation Mike Christie <michael.christie(a)oracle.com> scsi: target: Move sess cmd counter to new struct Anastasia Kovaleva <a.kovaleva(a)yadro.com> scsi: target: core: Change the way target_xcopy_do_work() sets restiction on max I/O Daniel Borkmann <daniel(a)iogearbox.net> bpf: Fix __reg_bound_offset 64->32 var_off subreg propagation Madhu Koriginja <madhu.koriginja(a)nxp.com> netfilter: keep conntrack reference until IPsecv6 policy checks are done Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk> net: dsa: qca8k: remove assignment of an_enabled in pcs_get_state() Alexei Starovoitov <ast(a)kernel.org> libbpf: Fix ld_imm64 copy logic for ksym in light skeleton. Eric Dumazet <edumazet(a)google.com> net/packet: convert po->auxdata to an atomic flag Eric Dumazet <edumazet(a)google.com> net/packet: convert po->origdev to an atomic flag Eric Dumazet <edumazet(a)google.com> net/packet: annotate accesses to po->xmit Vadim Fedorenko <vadim.fedorenko(a)linux.dev> vlan: partially enable SIOCSHWTSTAMP in container Russell King (Oracle) <rmk+kernel(a)armlinux.org.uk> net: pcs: xpcs: remove double-read of link state when using AN Luis Gerhorst <gerhorst(a)cs.fau.de> bpf: Remove misleading spec_v1 check on var-offset stack read Martin KaFai Lau <martin.lau(a)kernel.org> selftests/bpf: Fix a fd leak in an error path in network_helpers.c Aditya Kumar Singh <quic_adisi(a)quicinc.com> wifi: ath11k: fix deinitialization of firmware resources Alexander Mikhalitsyn <aleksandr.mikhalitsyn(a)canonical.com> scm: fix MSG_CTRUNC setting condition for SO_PASSSEC Shashank Gupta <shashank.gupta(a)intel.com> crypto: qat - fix concurrency issue when device state changes Andrii Nakryiko <andrii(a)kernel.org> bpf: fix precision propagation verbose logging Andrii Nakryiko <andrii(a)kernel.org> bpf: take into account liveness when propagating precision Martin Blumenstingl <martin.blumenstingl(a)googlemail.com> wifi: rtw88: mac: Return the original error from rtw_mac_power_switch() Martin Blumenstingl <martin.blumenstingl(a)googlemail.com> wifi: rtw88: mac: Return the original error from rtw_pwr_seq_parser() Luis Gerhorst <gerhorst(a)cs.fau.de> tools: bpftool: Remove invalid \' json escape Fedor Pchelkin <pchelkin(a)ispras.ru> wifi: ath6kl: reduce WARN to dev_dbg() in callback John Keeping <john(a)metanate.com> wifi: brcmfmac: support CQM RSSI notification with older firmware Christian Marangi <ansuelsmth(a)gmail.com> wifi: ath11k: fix SAC bug on peer addition with sta band migration Dan Carpenter <error27(a)gmail.com> wifi: ath5k: fix an off by one check in ath5k_eeprom_read_freq_list() Douglas Anderson <dianders(a)chromium.org> wifi: ath5k: Use platform_get_irq() to get the interrupt Douglas Anderson <dianders(a)chromium.org> wifi: ath11k: Use platform_get_irq() to get the interrupt Fedor Pchelkin <pchelkin(a)ispras.ru> wifi: ath9k: hif_usb: fix memory leak of remain_skbs Alexey V. Vissarionov <gremlin(a)altlinux.org> wifi: ath6kl: minor fix for allocation size Liang He <windhl(a)126.com> platform/chrome: cros_typec_switch: Add missing fwnode_handle_put() Tomáš Pecka <tomas.pecka(a)cesnet.cz> hwmon: (pmbus/fsp-3y) Fix functionality bitmask in FSP-3Y YM-2151E Bjorn Andersson <quic_bjorande(a)quicinc.com> rpmsg: glink: Propagate TX failures in intentless mode as well Sanjay Chandrashekara <sanjayc(a)nvidia.com> cpufreq: use correct unit when verify cur freq Rafael J. Wysocki <rafael.j.wysocki(a)intel.com> ACPI: bus: Ensure that notify handlers are not running after removal Sebastian Andrzej Siewior <bigeasy(a)linutronix.de> tick/common: Align tick period with the HZ tick. Ville Syrjälä <ville.syrjala(a)linux.intel.com> drm/i915: Make intel_get_crtc_new_encoder() less oopsy Thomas Gleixner <tglx(a)linutronix.de> debugobject: Prevent init race with static objects Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: add remove function for decoder platform driver Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: fix decoder disable pm crash Robin Murphy <robin.murphy(a)arm.com> perf/arm-cmn: Fix port detection for CMN-700 Sumit Garg <sumit.garg(a)linaro.org> arm64: kgdb: Set PSTATE.SS to 1 to re-enable single-step Saurabh Sengar <ssengar(a)linux.microsoft.com> x86/ioapic: Don't return 0 from arch_dynirq_lower_bound() YAN SHI <m202071378(a)hust.edu.cn> regulator: stm32-pwr: fix of_iomap leak Javier Martinez Canillas <javierm(a)redhat.com> media: venus: dec: Fix capture formats enumeration order Michał Krawczyk <mk(a)semihalf.com> media: venus: dec: Fix handling of the start cmd Florian Fainelli <f.fainelli(a)gmail.com> media: rc: gpio-ir-recv: Fix support for wake-up Igor Artemiev <Igor.A.Artemiev(a)mcst.ru> drm/amd/display: Fix potential null dereference Wei Chen <harperchen1110(a)gmail.com> media: hi846: Fix memleak in hi846_init_controls() Sakari Ailus <sakari.ailus(a)linux.intel.com> media: v4l: async: Return async sub-devices to subnotifier list Miaoqian Lin <linmq006(a)gmail.com> media: rcar_fdp1: Fix refcount leak in probe and remove function Moudy Ho <moudy.ho(a)mediatek.com> media: platform: mtk-mdp3: fix potential frame size overflow in mdp_try_fmt_mplane() Zheng Wang <zyytlz.wz(a)163.com> media: saa7134: fix use after free bug in saa7134_finidev due to race condition Zheng Wang <zyytlz.wz(a)163.com> media: dm1105: Fix use after free bug in dm1105_remove due to race condition Shyam Sundar S K <Shyam-sundar.S-k(a)amd.com> platform/x86/amd: pmc: Move out of BIOS SMN pair for STB init Shyam Sundar S K <Shyam-sundar.S-k(a)amd.com> platform/x86/amd: pmc: Utilize SMN index 0 for driver probe Mario Limonciello <mario.limonciello(a)amd.com> platform/x86/amd: pmc: Move idlemask check into `amd_pmc_idlemask_read` Mario Limonciello <mario.limonciello(a)amd.com> platform/x86/amd: pmc: Don't dump data after resume from s0i3 on picasso Mario Limonciello <mario.limonciello(a)amd.com> platform/x86/amd: pmc: Hide SMU version and program attributes for Picasso Mario Limonciello <mario.limonciello(a)amd.com> platform/x86/amd: pmc: Don't try to read SMU version on Picasso Shyam Sundar S K <Shyam-sundar.S-k(a)amd.com> platform/x86/amd/pmf: Move out of BIOS SMN pair for driver probe Zheng Wang <zyytlz.wz(a)163.com> media: rkvdec: fix use after free bug in rkvdec_remove Zheng Wang <zyytlz.wz(a)163.com> media: cedrus: fix use after free bug in cedrus_remove due to race condition Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: change lat thread decode error condition Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: making sure queue_work successfully Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: remove unused lat_buf Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: add core decode done event Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: move lat_buf to the top of core list Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: using each instance lat_buf count replace core ready list Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: add params to record lat and core lat_buf count Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: Force capture queue format to MM21 Yunfei Dong <yunfei.dong(a)mediatek.com> media: mediatek: vcodec: Make MM21 the default capture format Pin-yen Lin <treapking(a)chromium.org> media: mediatek: vcodec: Use 4K frame size when supported by stateful decoder Douglas Anderson <dianders(a)chromium.org> arm64: dts: sc7280: Rename qspi data12 as data23 Douglas Anderson <dianders(a)chromium.org> arm64: dts: sc7180: Rename qspi data12 as data23 Petr Vorel <pvorel(a)suse.cz> arm64: dts: qcom: msm8994-angler: removed clash with smem_region Petr Vorel <pvorel(a)suse.cz> arm64: dts: qcom: msm8994-angler: Fix cont_splash_mem mapping Uros Bizjak <ubizjak(a)gmail.com> x86/apic: Fix atomic update of offset in reserve_eilvt_offset() Douglas Anderson <dianders(a)chromium.org> regulator: core: Avoid lockdep reports when resolving supplies Douglas Anderson <dianders(a)chromium.org> regulator: core: Consistently set mutex_owner when using ww_mutex_lock_slow() Thomas Hellström <thomas.hellstrom(a)linux.intel.com> drm/ttm/pool: Fix ttm_pool_alloc error path Christian König <christian.koenig(a)amd.com> drm/ttm: optimize pool allocations a bit v2 Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> arm64: dts: qcom: apq8096-db820c: drop unit address from PMI8994 regulator Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> arm64: dts: qcom: msm8994-msft-lumia-octagon: drop unit address from PMI8994 regulator Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> arm64: dts: qcom: sc7180-trogdor-pazquel: correct trackpad supply Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> arm64: dts: qcom: sc7180-trogdor-lazor: correct trackpad supply Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> arm64: dts: qcom: sc7280-herobrine-villager: correct trackpad supply Yang Yingliang <yangyingliang(a)huawei.com> gpu: host1x: Fix memory leak of device names Yang Yingliang <yangyingliang(a)huawei.com> gpu: host1x: Fix potential double free if IOMMU is disabled Li Yang <lidaxian(a)hust.edu.cn> soc: renesas: renesas-soc: Release 'chipid' from ioremap() Zhaoyang Li <lizhaoyang04(a)hust.edu.cn> soc: bcm: brcmstb: biuctrl: fix of_iomap leak Conor Dooley <conor.dooley(a)microchip.com> mailbox: mpfs: switch to txdone_poll Xinlei Lee <xinlei.lee(a)mediatek.com> drm/mediatek: dp: Change the aux retries times when receiving AUX_DEFER Harshit Mogalapalli <harshit.m.mogalapalli(a)oracle.com> drm/lima/lima_drv: Add missing unwind goto in lima_pdev_probe() Jean-Philippe Brucker <jean-philippe(a)linaro.org> ACPI: VIOT: Initialize the correct IOMMU fwspec AngeloGioacchino Del Regno <angelogioacchino.delregno(a)collabora.com> arm64: dts: mediatek: mt8192-asurada: Fix voltage constraint for Vgpu Bjorn Andersson <quic_bjorande(a)quicinc.com> cpufreq: qcom-cpufreq-hw: Revert adding cpufreq qos AngeloGioacchino Del Regno <angelogioacchino.delregno(a)collabora.com> cpufreq: mediatek: Raise proc and sram max voltage for MT7622/7623 Jia-Wei Chang <jia-wei.chang(a)mediatek.com> cpufreq: mediatek: raise proc/sram max voltage for MT8516 Jia-Wei Chang <jia-wei.chang(a)mediatek.com> cpufreq: mediatek: fix KP caused by handler usage after regulator_put/clk_put Jia-Wei Chang <jia-wei.chang(a)mediatek.com> cpufreq: mediatek: fix passing zero to 'PTR_ERR' Janne Grunau <j(a)jannau.net> arm64: dts: apple: t8103: Disable unused PCIe ports Alexandre Torgue <alexandre.torgue(a)foss.st.com> ARM: dts: stm32: fix spi1 pin assignment on stm32mp15 Ilkka Koskinen <ilkka(a)os.amperecomputing.com> perf/arm-cmn: Move overlapping wp_combine field Cristian Marussi <cristian.marussi(a)arm.com> firmware: arm_scmi: Fix xfers allocation on Rx channel H. Nikolaus Schaller <hns(a)goldelico.com> ARM: dts: gta04: fix excess dma channel usage Dan Carpenter <error27(a)gmail.com> drm: rcar-du: Fix a NULL vs IS_ERR() bug Neil Armstrong <neil.armstrong(a)linaro.org> arm64: dts: qcom: sm8450: fix pcie1 gpios properties name Georgii Kruglov <georgy.kruglov(a)yandex.ru> mmc: sdhci-of-esdhc: fix quirk to ignore command inhibit for data Roger Pau Monne <roger.pau(a)citrix.com> ACPI: processor: Fix evaluating _PDC method when running as Xen dom0 Lee Jones <lee(a)kernel.org> drm/amd/display/dc/dce60/Makefile: Fix previous attempt to silence known override-init warnings Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> arm64: dts: qcom: sm8350-microsoft-surface: fix USB dual-role mode property Dionna Glaze <dionnaglaze(a)google.com> virt/coco/sev-guest: Double-buffer messages Adam Skladowski <a39.skl(a)gmail.com> drm: msm: adreno: Disable preemption on Adreno 510 Johan Hovold <johan+linaro(a)kernel.org> drm/msm/adreno: drop bogus pm_runtime_set_active() Vignesh Raghavendra <vigneshr(a)ti.com> arm64: dts: ti: k3-am62a7: Correct L2 cache size to 512KB Vignesh Raghavendra <vigneshr(a)ti.com> arm64: dts: ti: k3-am625: Correct L2 cache size to 512KB Laurent Pinchart <laurent.pinchart(a)ideasonboard.com> media: max9286: Free control handler Adam Ford <aford173(a)gmail.com> drm/bridge: adv7533: Fix adv7533_mode_valid for adv7533 and adv7535 Mukesh Ojha <quic_mojha(a)quicinc.com> firmware: qcom_scm: Clear download bit during reboot Dan Carpenter <error27(a)gmail.com> media: av7110: prevent underflow in write_ts_to_decoder() Ming Qian <ming.qian(a)nxp.com> media: amphion: decoder implement display delay enable Jiasheng Jiang <jiasheng(a)iscas.ac.cn> media: platform: mtk-mdp3: Add missing check and free for ida_alloc Jiasheng Jiang <jiasheng(a)iscas.ac.cn> media: bdisp: Add missing check for create_workqueue Muralidhara M K <muralimk(a)amd.com> x86/MCE/AMD: Use an u64 for bank_map Manivannan Sadhasivam <mani(a)kernel.org> ARM: dts: qcom: sdx55: Fix the unit address of PCIe EP node Manivannan Sadhasivam <mani(a)kernel.org> ARM: dts: qcom: ipq8064: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> ARM: dts: qcom: ipq4019: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> arm64: dts: qcom: sm8450: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> arm64: dts: qcom: sm8150: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> arm64: dts: qcom: sm8250: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> arm64: dts: qcom: msm8996: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> arm64: dts: qcom: ipq6018: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> arm64: dts: qcom: ipq8074: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> arm64: dts: qcom: sc7280: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> arm64: dts: qcom: msm8998: Fix the PCI I/O port range Manivannan Sadhasivam <mani(a)kernel.org> arm64: dts: qcom: sdm845: Fix the PCI I/O port range Vincent Guittot <vincent.guittot(a)linaro.org> arm64: dts: qcom: sdm845: correct dynamic power coefficients Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> arm64: dts: qcom: sc7280: fix EUD port properties Konrad Dybcio <konrad.dybcio(a)linaro.org> arm64: dts: qcom: msm8998: Fix stm-stimulus-base reg name Rafał Miłecki <rafal(a)milecki.pl> arm64: dts: broadcom: bcmbca: bcm4908: fix procmon nodename Rafał Miłecki <rafal(a)milecki.pl> arm64: dts: broadcom: bcmbca: bcm4908: fix LED nodenames Rafał Miłecki <rafal(a)milecki.pl> arm64: dts: broadcom: bcmbca: bcm4908: fix NAND interrupt name Bhavya Kapoor <b-kapoor(a)ti.com> arm64: dts: ti: k3-j721e-main: Remove ti,strobe-sel property Devarsh Thakkar <devarsht(a)ti.com> arm64: dts: ti: k3-am62a7-sk: Fix DDR size to full 4GB Nitin Yadav <n-yadav(a)ti.com> arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT Douglas Anderson <dianders(a)chromium.org> regulator: core: Shorten off-on-delay-us for always-on/boot-on by time since booted Konrad Dybcio <konrad.dybcio(a)linaro.org> ARM: dts: qcom-apq8064: Fix opp table child name Qiuxu Zhuo <qiuxu.zhuo(a)intel.com> EDAC/skx: Fix overflows on the DRAM row address mapping arrays Vinod Polimera <quic_vpolimer(a)quicinc.com> drm/msm/disp/dpu: check for crtc enable rather than crtc active to release shared resources Chen-Yu Tsai <wenst(a)chromium.org> drm/mediatek: dp: Only trigger DRM HPD events if bridge is attached Lad Prabhakar <prabhakar.mahadev-lad.rj(a)bp.renesas.com> arm64: dts: renesas: r9a07g043: Update IRQ numbers for SSI channels Lad Prabhakar <prabhakar.mahadev-lad.rj(a)bp.renesas.com> arm64: dts: renesas: r9a07g043: Introduce SOC_PERIPHERAL_IRQ() macro to specify interrupt property Lad Prabhakar <prabhakar.mahadev-lad.rj(a)bp.renesas.com> arm64: dts: renesas: r9a07g054: Update IRQ numbers for SSI channels Lad Prabhakar <prabhakar.mahadev-lad.rj(a)bp.renesas.com> arm64: dts: renesas: r9a07g044: Update IRQ numbers for SSI channels Geert Uytterhoeven <geert+renesas(a)glider.be> arm64: dts: renesas: r8a774c0: Remove bogus voltages from OPP table Geert Uytterhoeven <geert+renesas(a)glider.be> arm64: dts: renesas: r8a77990: Remove bogus voltages from OPP table Miaoqian Lin <linmq006(a)gmail.com> soc: ti: pm33xx: Fix refcount leak in am33xx_pm_probe Terry Bowman <terry.bowman(a)amd.com> tools/x86/kcpuid: Fix avx512bw and avx512lvl fields in Fn00000007 Orlando Chamberlain <orlandoch.dev(a)gmail.com> drm/amdgpu: register a vga_switcheroo client for MacBooks with apple-gmux Dom Cobley <popcornmix(a)gmail.com> drm/probe-helper: Cancel previous job before starting new one Maíra Canal <mcanal(a)igalia.com> drm/vgem: add missing mutex_destroy Matt Roper <matthew.d.roper(a)intel.com> drm/i915/dg2: Drop one PCI ID Rob Clark <robdclark(a)chromium.org> drm/rockchip: Drop unbalanced obj unref Jingbo Xu <jefflexu(a)linux.alibaba.com> erofs: fix potential overflow calculating xattr_isize Jingbo Xu <jefflexu(a)linux.alibaba.com> erofs: initialize packed inode after root inode is assigned Gao Xiang <xiang(a)kernel.org> erofs: stop parsing non-compact HEAD index if clusterofs is invalid Lino Sanfilippo <l.sanfilippo(a)kunbus.com> tpm, tpm_tis: Claim locality when interrupts are reenabled on resume Lino Sanfilippo <l.sanfilippo(a)kunbus.com> tpm, tpm: Implement usage counter for locality Lino Sanfilippo <l.sanfilippo(a)kunbus.com> tpm, tpm_tis: Claim locality before writing interrupt registers Lino Sanfilippo <l.sanfilippo(a)kunbus.com> tpm, tpm_tis: Disable interrupts if tpm_tis_probe_irq() failed Lino Sanfilippo <l.sanfilippo(a)kunbus.com> tpm, tpm_tis: Claim locality before writing TPM_INT_ENABLE register Lino Sanfilippo <l.sanfilippo(a)kunbus.com> tpm, tpm_tis: Do not skip reset of original interrupt vector Paul Moore <paul(a)paul-moore.com> selinux: ensure av_permissions.h is built when needed Ondrej Mosnacek <omosnace(a)redhat.com> selinux: fix Makefile dependencies of flask.h Ilpo Järvinen <ilpo.jarvinen(a)linux.intel.com> selftests/resctrl: Check for return value after write_schemata() Ilpo Järvinen <ilpo.jarvinen(a)linux.intel.com> selftests/resctrl: Allow ->setup() to return errors Ilpo Järvinen <ilpo.jarvinen(a)linux.intel.com> selftests/resctrl: Move ->setup() call outside of test specific branches Ilpo Järvinen <ilpo.jarvinen(a)linux.intel.com> selftests/resctrl: Return NULL if malloc_and_init_memory() did not alloc mem Zqiang <qiang1.zhang(a)intel.com> rcu: Fix missing TICK_DEP_MASK_RCU_EXP dependency check Rae Moar <rmoar(a)google.com> kunit: fix bug in the order of lines in debugfs logs Rae Moar <rmoar(a)google.com> kunit: improve KTAP compliance of KUnit test output Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> ASoC: dt-bindings: qcom,lpass-rx-macro: correct minItems for clocks Jeffrey Hugo <quic_jhugo(a)quicinc.com> bus: mhi: host: Range check CHDBOFF and ERDBOFF Jeffrey Hugo <quic_jhugo(a)quicinc.com> bus: mhi: host: Use mhi_tryset_pm_state() for setting fw error state Jeffrey Hugo <quic_jhugo(a)quicinc.com> bus: mhi: host: Remove duplicate ee check for syserr Dan Williams <dan.j.williams(a)intel.com> cxl/hdm: Fail upon detecting 0-sized decoders Dave Chinner <dchinner(a)redhat.com> xfs: don't consider future format versions valid Xiubo Li <xiubli(a)redhat.com> ceph: fix potential use-after-free bug when trimming caps Mårten Lindahl <marten.lindahl(a)axis.com> ubifs: Fix memory leak in do_rename Mårten Lindahl <marten.lindahl(a)axis.com> ubifs: Free memory for tmpfile name Wang YanQing <udknight(a)gmail.com> ubi: Fix return value overwrite issue in try_write_vid_and_data() Zhihao Cheng <chengzhihao1(a)huawei.com> ubifs: Fix memleak when insert_old_idx() failed Zhihao Cheng <chengzhihao1(a)huawei.com> Revert "ubifs: dirty_cow_znode: Fix memleak in error handling path" Andrew Jones <ajones(a)ventanamicro.com> RISC-V: Align SBI probe implementation with spec Kishon Vijay Abraham I <kvijayab(a)amd.com> iommu/amd: Fix "Guest Virtual APIC Table Root Pointer" configuration in IRTE Tim Huang <tim.huang(a)amd.com> drm/amd/pm: re-enable the gfx imu when smu resume Yu Songping <yusongping(a)huawei.com> swsmu/amdgpu_smu: Fix the wrong if-condition Ondrej Mosnacek <omosnace(a)redhat.com> tracing: Fix permissions for the buffer_percent file Song Shuai <suagrfillet(a)gmail.com> riscv: mm: remove redundant parameter of create_fdt_early_page_table Reid Tonking <reidt(a)ti.com> i2c: omap: Fix standard mode false ACK readings Hans de Goede <hdegoede(a)redhat.com> ACPI: video: Remove acpi_backlight=video quirk for Lenovo ThinkPad W530 Namjae Jeon <linkinjeon(a)kernel.org> ksmbd: fix deadlock in ksmbd_find_crypto_ctx() Namjae Jeon <linkinjeon(a)kernel.org> ksmbd: not allow guest user on multichannel Namjae Jeon <linkinjeon(a)kernel.org> ksmbd: fix memleak in session setup Namjae Jeon <linkinjeon(a)kernel.org> ksmbd: fix NULL pointer dereference in smb2_get_info_filesystem() Namjae Jeon <linkinjeon(a)kernel.org> ksmbd: call rcu_barrier() in ksmbd_server_exit() Namjae Jeon <linkinjeon(a)kernel.org> ksmbd: fix racy issue under cocurrent smb2 tree disconnect David Matlack <dmatlack(a)google.com> KVM: RISC-V: Retry fault if vma_lookup() results become invalid Alex Hung <alex.hung(a)amd.com> drm/amd/display: fix a divided-by-zero error Hamza Mahfooz <hamza.mahfooz(a)amd.com> drm/amd/display: fix PSR-SU/DSC interoperability support Daniel Miess <Daniel.Miess(a)amd.com> drm/amd/display: limit timing for single dimm memory Nasir Osman <nasir.osman(a)amd.com> drm/amd/display: Remove stutter only configurations Zhang Zhengming <zhang.zhengming(a)h3c.com> relayfs: fix out-of-bounds access in relay_file_read Oliver Upton <oliver.upton(a)linux.dev> KVM: arm64: vgic: Don't acquire its_lock before config_lock Oliver Upton <oliver.upton(a)linux.dev> KVM: arm64: Use config_lock to protect vgic state Oliver Upton <oliver.upton(a)linux.dev> KVM: arm64: Use config_lock to protect data ordered against KVM_RUN Oliver Upton <oliver.upton(a)linux.dev> KVM: arm64: Avoid lock inversion when setting the VM register width Oliver Upton <oliver.upton(a)linux.dev> KVM: arm64: Avoid vcpu->mutex v. kvm->lock inversion in CPU_ON Sean Christopherson <seanjc(a)google.com> KVM: nVMX: Emulate NOPs in L2, and PAUSE if it's not intercepted Roberto Sassu <roberto.sassu(a)huawei.com> reiserfs: Add security prefix to xattr name in reiserfs_security_write() Zheng Yejian <zhengyejian1(a)huawei.com> rcu: Avoid stack overflow due to __rcu_irq_enter_check_tick() being kprobe-ed Mario Limonciello <mario.limonciello(a)amd.com> crypto: ccp - Don't initialize CCP for PSP 0x1649 Eric Biggers <ebiggers(a)google.com> crypto: arm64/aes-neonbs - fix crash with CFI enabled Jonathan McDowell <noodles(a)earth.li> crypto: safexcel - Cleanup ring IRQ workqueues on load failure Toke Høiland-Jørgensen <toke(a)redhat.com> crypto: api - Demote BUG_ON() in crypto_unregister_alg() to a WARN_ON() Johannes Berg <johannes.berg(a)intel.com> ring-buffer: Sync IRQ works before buffer destruction Tze-nan Wu <Tze-nan.Wu(a)mediatek.com> ring-buffer: Ensure proper resetting of atomic variables in ring_buffer_reset_online_cpus Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> pinctrl: qcom: lpass-lpi: set output value before enabling output Krzysztof Kozlowski <krzysztof.kozlowski(a)linaro.org> soundwire: qcom: correct setting ignore bit on v1.5.1 Heiner Kallweit <hkallweit1(a)gmail.com> pwm: meson: Fix g12a ao clk81 name Heiner Kallweit <hkallweit1(a)gmail.com> pwm: meson: Fix axg ao mux parents Felix Fietkau <nbd(a)nbd.name> wifi: mt76: add missing locking to protect against concurrent rx/status calls Kees Cook <keescook(a)chromium.org> kheaders: Use array declaration instead of char William Breathitt Gray <william.gray(a)linaro.org> iio: addac: stx104: Fix race condition for stx104_write_raw() William Breathitt Gray <william.gray(a)linaro.org> iio: addac: stx104: Fix race condition when converting analog-to-digital Zhang Yuchen <zhangyuchen.lcr(a)bytedance.com> ipmi: fix SSIF not responding under certain cond. Corey Minyard <minyard(a)acm.org> ipmi:ssif: Add send_retries increment Jiaxun Yang <jiaxun.yang(a)flygoat.com> MIPS: fw: Allow firmware to pass a empty env Kefeng Wang <wangkefeng.wang(a)huawei.com> fs: fix sysctls.c built Joel Fernandes (Google) <joel(a)joelfernandes.org> tick/nohz: Fix cpu_is_hotpluggable() by checking with nohz subsystem Jan Kundrát <jan.kundrat(a)cesnet.cz> serial: max310x: fix IO data corruption in batched operations Ilpo Järvinen <ilpo.jarvinen(a)linux.intel.com> serial: 8250: Fix serial8250_tx_empty() race with DMA Tx Johan Hovold <johan(a)kernel.org> serial: fix TIOCSRS485 locking Johan Hovold <johan+linaro(a)kernel.org> xhci: fix debugfs register accesses while suspended Ilpo Järvinen <ilpo.jarvinen(a)linux.intel.com> tty: Prevent writing chars during tcsetattr TCSADRAIN/FLUSH Nuno Sá <nuno.sa(a)analog.com> staging: iio: resolver: ads1210: fix config mode Eric Biggers <ebiggers(a)google.com> blk-crypto: make blk_crypto_evict_key() more robust Eric Biggers <ebiggers(a)google.com> blk-crypto: make blk_crypto_evict_key() return void Eric Biggers <ebiggers(a)google.com> blk-mq: release crypto keyslot before reporting I/O complete Bart Van Assche <bvanassche(a)acm.org> blk-crypto: Add a missing include directive Christoph Hellwig <hch(a)lst.de> blk-crypto: move internal only declarations to blk-crypto-internal.h Christoph Hellwig <hch(a)lst.de> blk-crypto: add a blk_crypto_config_supported_natively helper Christoph Hellwig <hch(a)lst.de> blk-crypto: don't use struct request_queue for public interfaces Chengming Zhou <zhouchengming(a)bytedance.com> blk-stat: fix QUEUE_FLAG_STATS clear Ricardo Ribalda <ribalda(a)chromium.org> media: ov8856: Do not check for for module version Thomas Gleixner <tglx(a)linutronix.de> posix-cpu-timers: Implement the missing timer_wait_running callback Jarkko Sakkinen <jarkko(a)kernel.org> tpm: Add !tpm_amd_is_rng_defective() to the hwrng_unregister() call site Chris Packham <chris.packham(a)alliedtelesis.co.nz> hwmon: (adt7475) Use device_property APIs when configuring polarity Babu Moger <Babu.Moger(a)amd.com> hwmon: (k10temp) Check range scale when CUR_TEMP register is read-write Johan Hovold <johan+linaro(a)kernel.org> USB: dwc3: fix runtime pm imbalance on unbind Johan Hovold <johan+linaro(a)kernel.org> USB: dwc3: fix runtime pm imbalance on probe errors Wesley Cheng <quic_wcheng(a)quicinc.com> usb: dwc3: gadget: Stall and restart EP0 if host is unresponsive Badhri Jagan Sridharan <badhri(a)google.com> usb: gadget: udc: core: Prevent redundant calls to pullup Badhri Jagan Sridharan <badhri(a)google.com> usb: gadget: udc: core: Invoke usb_gadget_connect only when started Randy Dunlap <rdunlap(a)infradead.org> IMA: allow/fix UML builds Dmitry Baryshkov <dmitry.baryshkov(a)linaro.org> phy: qcom-qmp-pcie: sc8180x PCIe PHY has 2 lanes Manivannan Sadhasivam <mani(a)kernel.org> PCI: qcom: Fix the incorrect register usage in v2.7.0 config Lukas Wunner <lukas(a)wunner.de> PCI: pciehp: Fix AB-BA deadlock between reset_lock and device_lock Josh Triplett <josh(a)joshtriplett.org> PCI: kirin: Select REGMAP_MMIO Nicholas Piggin <npiggin(a)gmail.com> powerpc/boot: Fix boot wrapper code generation with CONFIG_POWER10_CPU Ard Biesheuvel <ardb(a)kernel.org> arm64: Stash shadow stack pointer in the task struct on interrupt Ard Biesheuvel <ardb(a)kernel.org> arm64: Always load shadow stack pointer directly from the task struct Syed Saba Kareem <Syed.SabaKareem(a)amd.com> ASoC: amd: ps: update the acp clock source. syed saba kareem <syed.sabakareem(a)amd.com> ASoC: amd: fix ACP version typo mistake Mario Limonciello <mario.limonciello(a)amd.com> wifi: mt76: mt7921e: Set memory space enable in PCI_COMMAND if unset Jiri Slaby (SUSE) <jirislaby(a)kernel.org> wireguard: timers: cast enum limits members to int in prints Tony Luck <tony.luck(a)intel.com> x86/cpu: Add model number for Intel Arrow Lake processor Vladimir Oltean <vladimir.oltean(a)nxp.com> asm-generic/io.h: suppress endianness warnings for readq() and writeq() Steven Rostedt (Google) <rostedt(a)goodmis.org> tracing: Error if a trace event has an array for a __field() Kalle Valo <quic_kvalo(a)quicinc.com> wifi: ath11k: reduce the MHI timeout to 20s Benjamin Asbach <asbachb.kernel(a)impl.it> platform/x86: thinkpad_acpi: Add missing T14s Gen1 type to s2idle quirk list Daniel Golle <daniel(a)makrotopia.org> net: sfp: add quirk enabling 2500Base-x for HG MXPD-483II Ranjan Kumar <ranjan.kumar(a)broadcom.com> scsi: mpi3mr: Handle soft reset in progress fault code (0xF002) Anh Tuan Phan <tuananhlfc(a)gmail.com> selftests mount: Fix mount_setattr_test builds failed Jiri Slaby (SUSE) <jirislaby(a)kernel.org> net: wwan: t7xx: do not compile with -Werror Duy Nguyen <duy.nguyen.rh(a)renesas.com> ASoC: da7213.c: add missing pm_runtime_disable() Hans de Goede <hdegoede(a)redhat.com> ASoC: Intel: bytcr_rt5640: Add quirk for the Acer Iconia One 7 B1-750 Patrik Dahlström <risca(a)dalakolonin.se> iio: adc: palmas_gpadc: fix NULL dereference on rmmod Ge-org Brohammer <gbrohammer(a)outlook.com> ASoC: amd: yc: Add DMI entries to support Victus by HP Laptop 16-e1xxx (8A22) Michael Kelley <mikelley(a)microsoft.com> x86/hyperv: Block root partition functionality in a Confidential VM Shengjiu Wang <shengjiu.wang(a)nxp.com> ASoC: soc-pcm: fix hw->formats cleared by soc_pcm_hw_init() for dpcm Eugene Huang <eugene.huang99(a)gmail.com> ASoC: Intel: soc-acpi: add table for Intel 'Rooks County' NUC M15 Eugene Huang <eugene.huang99(a)gmail.com> ASOC: Intel: sof_sdw: add quirk for Intel 'Rooks County' NUC M15 ------------- Diffstat: Documentation/block/inline-encryption.rst | 12 +- .../bindings/sound/qcom,lpass-rx-macro.yaml | 1 + Makefile | 4 +- arch/arm/boot/dts/omap3-gta04.dtsi | 16 + arch/arm/boot/dts/qcom-apq8064.dtsi | 2 +- arch/arm/boot/dts/qcom-ipq4019.dtsi | 4 +- arch/arm/boot/dts/qcom-ipq8064.dtsi | 12 +- arch/arm/boot/dts/qcom-sdx55.dtsi | 78 +- arch/arm/boot/dts/stm32mp15-pinctrl.dtsi | 30 +- arch/arm64/boot/dts/apple/t8103-j274.dts | 10 + arch/arm64/boot/dts/apple/t8103-j293.dts | 15 - arch/arm64/boot/dts/apple/t8103-j313.dts | 15 - arch/arm64/boot/dts/apple/t8103-j456.dts | 10 + arch/arm64/boot/dts/apple/t8103-j457.dts | 11 +- arch/arm64/boot/dts/apple/t8103.dtsi | 4 + .../dts/broadcom/bcmbca/bcm4908-asus-gt-ac5300.dts | 10 +- arch/arm64/boot/dts/broadcom/bcmbca/bcm4908.dtsi | 4 +- arch/arm64/boot/dts/mediatek/mt8192-asurada.dtsi | 2 +- arch/arm64/boot/dts/qcom/apq8096-db820c.dts | 3 +- arch/arm64/boot/dts/qcom/ipq6018.dtsi | 6 +- arch/arm64/boot/dts/qcom/ipq8074.dtsi | 12 +- arch/arm64/boot/dts/qcom/msm8992-lg-bullhead.dtsi | 5 - .../dts/qcom/msm8994-huawei-angler-rev-101.dts | 11 +- .../boot/dts/qcom/msm8994-msft-lumia-octagon.dtsi | 3 +- .../dts/qcom/msm8994-sony-xperia-kitakami.dtsi | 3 +- arch/arm64/boot/dts/qcom/msm8994.dtsi | 5 + arch/arm64/boot/dts/qcom/msm8996.dtsi | 12 +- arch/arm64/boot/dts/qcom/msm8998.dtsi | 4 +- arch/arm64/boot/dts/qcom/pmi8994.dtsi | 2 - .../qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dts | 2 +- .../boot/dts/qcom/sc7180-trogdor-pazquel.dtsi | 2 +- arch/arm64/boot/dts/qcom/sc7180.dtsi | 2 +- .../boot/dts/qcom/sc7280-herobrine-villager.dtsi | 2 +- arch/arm64/boot/dts/qcom/sc7280.dtsi | 13 +- arch/arm64/boot/dts/qcom/sdm845.dtsi | 14 +- arch/arm64/boot/dts/qcom/sm8150.dtsi | 6 +- arch/arm64/boot/dts/qcom/sm8250.dtsi | 8 +- .../dts/qcom/sm8350-microsoft-surface-duo2.dts | 3 + arch/arm64/boot/dts/qcom/sm8450.dtsi | 12 +- arch/arm64/boot/dts/renesas/r8a774c0.dtsi | 3 - arch/arm64/boot/dts/renesas/r8a77990.dtsi | 3 - arch/arm64/boot/dts/renesas/r9a07g043.dtsi | 304 +++--- arch/arm64/boot/dts/renesas/r9a07g043u.dtsi | 12 + arch/arm64/boot/dts/renesas/r9a07g043u11-smarc.dts | 2 +- arch/arm64/boot/dts/renesas/r9a07g044.dtsi | 19 +- arch/arm64/boot/dts/renesas/r9a07g054.dtsi | 19 +- arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 4 +- arch/arm64/boot/dts/ti/k3-am625.dtsi | 2 +- arch/arm64/boot/dts/ti/k3-am62a7-sk.dts | 5 +- arch/arm64/boot/dts/ti/k3-am62a7.dtsi | 2 +- arch/arm64/boot/dts/ti/k3-j721e-main.dtsi | 1 - arch/arm64/crypto/aes-neonbs-core.S | 9 +- arch/arm64/include/asm/debug-monitors.h | 1 + arch/arm64/include/asm/kvm_host.h | 4 + arch/arm64/include/asm/scs.h | 7 +- arch/arm64/kernel/debug-monitors.c | 5 + arch/arm64/kernel/entry.S | 16 +- arch/arm64/kernel/head.S | 2 +- arch/arm64/kernel/kgdb.c | 2 + arch/arm64/kvm/arm.c | 53 +- arch/arm64/kvm/guest.c | 2 + arch/arm64/kvm/hypercalls.c | 4 +- arch/arm64/kvm/pmu-emul.c | 23 +- arch/arm64/kvm/psci.c | 28 +- arch/arm64/kvm/reset.c | 15 +- arch/arm64/kvm/vgic/vgic-debug.c | 8 +- arch/arm64/kvm/vgic/vgic-init.c | 36 +- arch/arm64/kvm/vgic/vgic-its.c | 33 +- arch/arm64/kvm/vgic/vgic-kvm-device.c | 47 +- arch/arm64/kvm/vgic/vgic-mmio-v3.c | 4 +- arch/arm64/kvm/vgic/vgic-mmio.c | 12 +- arch/arm64/kvm/vgic/vgic-v4.c | 11 +- arch/arm64/kvm/vgic/vgic.c | 12 +- arch/ia64/kernel/salinfo.c | 2 +- arch/ia64/mm/contig.c | 2 +- arch/ia64/mm/hugetlbpage.c | 2 +- arch/mips/fw/lib/cmdline.c | 2 +- arch/openrisc/kernel/entry.S | 6 +- arch/parisc/kernel/pacache.S | 2 + arch/parisc/kernel/real2.S | 5 +- arch/powerpc/boot/Makefile | 2 + arch/powerpc/include/asm/reg.h | 5 + arch/powerpc/kernel/rtas.c | 2 +- arch/powerpc/perf/mpc7450-pmu.c | 6 +- arch/powerpc/platforms/512x/clock-commonclk.c | 2 +- arch/powerpc/platforms/embedded6xx/flipper-pic.c | 2 +- arch/powerpc/platforms/embedded6xx/hlwd-pic.c | 2 +- arch/powerpc/platforms/embedded6xx/wii.c | 4 +- arch/powerpc/sysdev/tsi108_pci.c | 5 +- arch/riscv/include/asm/sbi.h | 2 +- arch/riscv/kernel/cpu_ops.c | 2 +- arch/riscv/kernel/sbi.c | 17 +- arch/riscv/kvm/main.c | 2 +- arch/riscv/kvm/mmu.c | 25 +- arch/riscv/mm/init.c | 6 +- arch/riscv/mm/ptdump.c | 24 +- arch/sh/kernel/cpu/sh4/sq.c | 2 +- arch/x86/include/asm/intel-family.h | 2 + arch/x86/kernel/apic/apic.c | 5 +- arch/x86/kernel/apic/io_apic.c | 14 +- arch/x86/kernel/cpu/mce/amd.c | 14 +- arch/x86/kernel/cpu/mshyperv.c | 12 +- arch/x86/kvm/vmx/vmx.c | 15 + block/blk-crypto-internal.h | 37 +- block/blk-crypto-profile.c | 47 +- block/blk-crypto.c | 95 +- block/blk-iocost.c | 10 +- block/blk-merge.c | 2 + block/blk-mq.c | 17 +- block/blk-stat.c | 4 +- crypto/algapi.c | 4 +- crypto/drbg.c | 2 +- drivers/acpi/bus.c | 1 + drivers/acpi/power.c | 19 + drivers/acpi/processor_pdc.c | 11 + drivers/acpi/video_detect.c | 14 - drivers/acpi/viot.c | 5 +- drivers/base/cacheinfo.c | 5 +- drivers/base/cpu.c | 3 +- drivers/block/drbd/drbd_receiver.c | 2 +- drivers/bluetooth/btsdio.c | 1 - drivers/bus/mhi/host/boot.c | 16 +- drivers/bus/mhi/host/init.c | 12 + drivers/bus/mhi/host/main.c | 2 +- drivers/char/ipmi/Kconfig | 3 +- drivers/char/ipmi/ipmi_ssif.c | 8 +- drivers/char/tpm/tpm-chip.c | 3 +- drivers/char/tpm/tpm_tis_core.c | 131 ++- drivers/char/tpm/tpm_tis_core.h | 2 + drivers/clk/at91/clk-sam9x60-pll.c | 2 +- drivers/clk/clk-conf.c | 12 +- drivers/clk/imx/clk-fracn-gppll.c | 22 +- drivers/clk/imx/clk-imx8ulp.c | 4 +- drivers/clk/mediatek/clk-mt2701-aud.c | 40 +- drivers/clk/mediatek/clk-mt2701-bdp.c | 20 +- drivers/clk/mediatek/clk-mt2701-eth.c | 10 +- drivers/clk/mediatek/clk-mt2701-g3d.c | 10 +- drivers/clk/mediatek/clk-mt2701-hif.c | 10 +- drivers/clk/mediatek/clk-mt2701-img.c | 10 +- drivers/clk/mediatek/clk-mt2701-mm.c | 20 +- drivers/clk/mediatek/clk-mt2701-vdec.c | 20 +- drivers/clk/mediatek/clk-mt2701.c | 40 +- drivers/clk/mediatek/clk-mt2712-bdp.c | 10 +- drivers/clk/mediatek/clk-mt2712-img.c | 10 +- drivers/clk/mediatek/clk-mt2712-jpgdec.c | 10 +- drivers/clk/mediatek/clk-mt2712-mfg.c | 10 +- drivers/clk/mediatek/clk-mt2712-mm.c | 34 +- drivers/clk/mediatek/clk-mt2712-vdec.c | 20 +- drivers/clk/mediatek/clk-mt2712-venc.c | 10 +- drivers/clk/mediatek/clk-mt2712.c | 78 +- drivers/clk/mediatek/clk-mt6765-audio.c | 20 +- drivers/clk/mediatek/clk-mt6765-cam.c | 10 +- drivers/clk/mediatek/clk-mt6765-img.c | 10 +- drivers/clk/mediatek/clk-mt6765-mipi0a.c | 10 +- drivers/clk/mediatek/clk-mt6765-mm.c | 10 +- drivers/clk/mediatek/clk-mt6765-vcodec.c | 10 +- drivers/clk/mediatek/clk-mt6765.c | 80 +- drivers/clk/mediatek/clk-mt6797-img.c | 10 +- drivers/clk/mediatek/clk-mt6797-mm.c | 20 +- drivers/clk/mediatek/clk-mt6797-vdec.c | 20 +- drivers/clk/mediatek/clk-mt6797-venc.c | 10 +- drivers/clk/mediatek/clk-mt6797.c | 42 +- drivers/clk/mediatek/clk-mt7622-aud.c | 40 +- drivers/clk/mediatek/clk-mt7622-eth.c | 20 +- drivers/clk/mediatek/clk-mt7622-hif.c | 20 +- drivers/clk/mediatek/clk-mt7622.c | 90 +- drivers/clk/mediatek/clk-mt7629-eth.c | 20 +- drivers/clk/mediatek/clk-mt7629-hif.c | 20 +- drivers/clk/mediatek/clk-mt7629.c | 40 +- drivers/clk/mediatek/clk-mt7986-eth.c | 24 +- drivers/clk/mediatek/clk-mt7986-infracfg.c | 24 +- drivers/clk/mediatek/clk-mt8135.c | 44 +- drivers/clk/mediatek/clk-mt8167-aud.c | 11 +- drivers/clk/mediatek/clk-mt8167-img.c | 10 +- drivers/clk/mediatek/clk-mt8167-mfgcfg.c | 10 +- drivers/clk/mediatek/clk-mt8167-mm.c | 22 +- drivers/clk/mediatek/clk-mt8167-vdec.c | 20 +- drivers/clk/mediatek/clk-mt8173-mm.c | 22 +- drivers/clk/mediatek/clk-mt8516-aud.c | 10 +- drivers/clk/mediatek/clk-mt8516.c | 60 +- drivers/clk/microchip/clk-mpfs.c | 3 +- drivers/clk/qcom/dispcc-qcm2290.c | 9 - drivers/clk/qcom/gcc-qcm2290.c | 3 +- drivers/clk/qcom/gcc-sm6115.c | 50 +- drivers/clk/qcom/gcc-sm8350.c | 47 +- drivers/clk/qcom/lpassaudiocc-sc7280.c | 2 + drivers/clk/qcom/lpasscc-sc7280.c | 16 +- drivers/clk/rockchip/clk-rk3399.c | 2 +- drivers/clocksource/timer-davinci.c | 30 +- drivers/cpufreq/cpufreq.c | 2 +- drivers/cpufreq/mediatek-cpufreq.c | 98 +- drivers/cpufreq/qcom-cpufreq-hw.c | 14 - drivers/cpuidle/cpuidle-riscv-sbi.c | 2 +- drivers/crypto/Kconfig | 1 + drivers/crypto/caam/ctrl.c | 6 +- drivers/crypto/ccp/sp-pci.c | 2 +- drivers/crypto/inside-secure/safexcel.c | 37 +- drivers/crypto/qat/qat_common/adf_accel_devices.h | 1 + drivers/crypto/qat/qat_common/adf_common_drv.h | 3 + drivers/crypto/qat/qat_common/adf_dev_mgr.c | 2 + drivers/crypto/qat/qat_common/adf_init.c | 64 ++ drivers/crypto/qat/qat_common/adf_sysfs.c | 23 +- drivers/cxl/core/hdm.c | 15 +- drivers/dma/at_xdmac.c | 5 +- drivers/dma/dw-edma/dw-edma-core.c | 27 +- drivers/dma/mv_xor_v2.c | 2 +- drivers/dma/qcom/gpi.c | 1 - drivers/edac/skx_base.c | 4 +- drivers/firmware/arm_scmi/driver.c | 2 +- drivers/firmware/qcom_scm.c | 3 +- drivers/firmware/stratix10-svc.c | 4 +- drivers/fpga/fpga-bridge.c | 2 +- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 21 +- drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 3 +- .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_psr.c | 3 + .../dc/clk_mgr/dcn21/rn_clk_mgr_vbios_smu.h | 4 +- drivers/gpu/drm/amd/display/dc/dce60/Makefile | 2 +- .../gpu/drm/amd/display/dc/dcn30/dcn30_resource.c | 16 +- .../gpu/drm/amd/display/dc/dcn30/dcn30_resource.h | 3 +- .../gpu/drm/amd/display/dc/dcn31/dcn31_resource.c | 2 +- .../drm/amd/display/dc/dcn314/dcn314_resource.c | 77 +- .../drm/amd/display/dc/dcn314/dcn314_resource.h | 4 + .../gpu/drm/amd/display/dc/dml/dcn30/dcn30_fpu.c | 2 +- .../drm/amd/display/modules/power/power_helpers.c | 35 + .../drm/amd/display/modules/power/power_helpers.h | 3 + drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c | 40 +- drivers/gpu/drm/bridge/adv7511/adv7533.c | 25 +- drivers/gpu/drm/drm_probe_helper.c | 5 +- drivers/gpu/drm/i915/display/intel_display.c | 2 +- drivers/gpu/drm/lima/lima_drv.c | 6 +- drivers/gpu/drm/mediatek/mtk_dp.c | 15 +- drivers/gpu/drm/msm/adreno/a5xx_gpu.c | 8 +- drivers/gpu/drm/msm/adreno/adreno_device.c | 3 - drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 2 +- drivers/gpu/drm/panel/panel-novatek-nt35950.c | 10 +- drivers/gpu/drm/rcar-du/rcar_du_encoder.c | 4 +- drivers/gpu/drm/rockchip/rockchip_drm_gem.c | 3 - drivers/gpu/drm/ttm/ttm_pool.c | 161 ++- drivers/gpu/drm/vgem/vgem_fence.c | 1 + drivers/gpu/host1x/context.c | 24 +- drivers/hid/amd-sfh-hid/amd_sfh_pcie.c | 9 + drivers/hid/amd-sfh-hid/sfh1_1/amd_sfh_desc.c | 2 +- drivers/hid/amd-sfh-hid/sfh1_1/amd_sfh_init.c | 11 + drivers/hid/amd-sfh-hid/sfh1_1/amd_sfh_interface.c | 10 +- drivers/hid/amd-sfh-hid/sfh1_1/amd_sfh_interface.h | 8 +- drivers/hte/hte-tegra194-test.c | 1 + drivers/hte/hte-tegra194.c | 2 +- drivers/hwmon/adt7475.c | 6 +- drivers/hwmon/k10temp.c | 4 +- drivers/hwmon/pmbus/fsp-3y.c | 1 - drivers/hwtracing/coresight/coresight-etm-perf.c | 1 + drivers/i2c/busses/i2c-cadence.c | 6 +- drivers/i2c/busses/i2c-omap.c | 2 +- drivers/i2c/busses/i2c-xiic.c | 4 +- drivers/iio/adc/palmas_gpadc.c | 2 +- drivers/iio/addac/stx104.c | 12 + drivers/iio/light/max44009.c | 13 +- drivers/infiniband/core/cm.c | 3 +- drivers/infiniband/hw/erdma/erdma_hw.h | 4 + drivers/infiniband/hw/erdma/erdma_verbs.c | 17 +- drivers/infiniband/hw/hfi1/ipoib_tx.c | 6 +- drivers/infiniband/hw/hfi1/mmu_rb.c | 73 +- drivers/infiniband/hw/hfi1/mmu_rb.h | 8 +- drivers/infiniband/hw/hfi1/sdma.c | 21 +- drivers/infiniband/hw/hfi1/sdma.h | 16 +- drivers/infiniband/hw/hfi1/sdma_txreq.h | 1 + drivers/infiniband/hw/hfi1/trace_mmu.h | 4 - drivers/infiniband/hw/hfi1/user_sdma.c | 600 ++++++++---- drivers/infiniband/hw/hfi1/user_sdma.h | 5 - drivers/infiniband/hw/hfi1/verbs.c | 4 +- drivers/infiniband/hw/hfi1/vnic_sdma.c | 1 + drivers/infiniband/hw/mlx4/qp.c | 8 +- drivers/infiniband/hw/mlx5/devx.c | 31 +- drivers/infiniband/hw/mlx5/qp.c | 2 +- drivers/infiniband/hw/mlx5/umr.c | 6 +- drivers/infiniband/sw/rdmavt/qp.c | 2 - drivers/infiniband/sw/siw/siw_main.c | 3 - drivers/infiniband/sw/siw/siw_qp_tx.c | 2 +- drivers/infiniband/ulp/isert/ib_isert.c | 4 +- drivers/infiniband/ulp/srpt/ib_srpt.c | 23 +- drivers/input/touchscreen/raspberrypi-ts.c | 3 +- drivers/interconnect/qcom/icc-rpm.c | 7 - drivers/interconnect/qcom/icc-rpm.h | 1 - drivers/interconnect/qcom/msm8996.c | 1 - drivers/iommu/amd/amd_iommu_types.h | 4 +- drivers/iommu/amd/iommu.c | 6 +- drivers/iommu/iommu.c | 9 +- drivers/iommu/mtk_iommu.c | 8 + drivers/leds/Kconfig | 2 +- drivers/leds/leds-tca6507.c | 5 +- drivers/macintosh/Kconfig | 1 + drivers/macintosh/windfarm_smu_sat.c | 1 + drivers/mailbox/mailbox-mpfs.c | 12 +- drivers/mailbox/zynqmp-ipi-mailbox.c | 6 +- drivers/md/dm-clone-target.c | 1 + drivers/md/dm-flakey.c | 4 +- drivers/md/dm-integrity.c | 8 +- drivers/md/dm-ioctl.c | 12 +- drivers/md/dm-table.c | 19 +- drivers/md/dm-verity-target.c | 2 +- drivers/md/raid10.c | 96 +- drivers/md/raid5.c | 45 +- drivers/media/i2c/hi846.c | 11 +- drivers/media/i2c/max9286.c | 1 + drivers/media/i2c/ov8856.c | 40 - drivers/media/pci/dm1105/dm1105.c | 1 + drivers/media/pci/saa7134/saa7134-ts.c | 1 + drivers/media/pci/saa7134/saa7134-vbi.c | 1 + drivers/media/pci/saa7134/saa7134-video.c | 1 + drivers/media/platform/amphion/vdec.c | 32 + drivers/media/platform/amphion/vpu_codec.h | 3 +- drivers/media/platform/amphion/vpu_malone.c | 4 +- .../media/platform/mediatek/mdp3/mtk-mdp3-m2m.c | 8 +- .../media/platform/mediatek/mdp3/mtk-mdp3-regs.c | 10 +- .../platform/mediatek/vcodec/mtk_vcodec_dec.c | 24 +- .../platform/mediatek/vcodec/mtk_vcodec_dec_drv.c | 3 +- .../platform/mediatek/vcodec/mtk_vcodec_dec_hw.c | 8 + .../mediatek/vcodec/mtk_vcodec_dec_stateful.c | 12 +- .../mediatek/vcodec/mtk_vcodec_dec_stateless.c | 14 +- .../mediatek/vcodec/vdec/vdec_h264_req_multi_if.c | 2 +- .../mediatek/vcodec/vdec/vdec_vp9_req_lat_if.c | 2 +- .../platform/mediatek/vcodec/vdec_msg_queue.c | 95 +- .../platform/mediatek/vcodec/vdec_msg_queue.h | 12 + drivers/media/platform/qcom/venus/vdec.c | 16 +- drivers/media/platform/renesas/rcar_fdp1.c | 11 +- drivers/media/platform/st/sti/bdisp/bdisp-v4l2.c | 2 + drivers/media/rc/gpio-ir-recv.c | 2 + drivers/media/v4l2-core/v4l2-async.c | 13 +- drivers/mfd/arizona-spi.c | 1 + drivers/mfd/ocelot-spi.c | 1 + drivers/mfd/tqmx86.c | 52 +- drivers/misc/vmw_vmci/vmci_host.c | 8 +- drivers/mmc/host/sdhci-of-esdhc.c | 24 +- drivers/mtd/mtdcore.c | 23 +- drivers/mtd/spi-nor/core.c | 4 +- drivers/mtd/ubi/eba.c | 19 +- drivers/net/dsa/qca/qca8k-8xxx.c | 1 - drivers/net/ethernet/amd/nmclan_cs.c | 2 +- drivers/net/ethernet/freescale/dpaa/dpaa_eth.c | 3 +- drivers/net/ethernet/intel/i40e/i40e.h | 6 +- drivers/net/ethernet/intel/i40e/i40e_adminq.c | 68 +- drivers/net/ethernet/intel/i40e/i40e_alloc.h | 22 +- drivers/net/ethernet/intel/i40e/i40e_client.c | 12 +- drivers/net/ethernet/intel/i40e/i40e_common.c | 1034 +++++++++----------- drivers/net/ethernet/intel/i40e/i40e_dcb.c | 60 +- drivers/net/ethernet/intel/i40e/i40e_dcb.h | 28 +- drivers/net/ethernet/intel/i40e/i40e_dcb_nl.c | 16 +- drivers/net/ethernet/intel/i40e/i40e_ddp.c | 14 +- drivers/net/ethernet/intel/i40e/i40e_debugfs.c | 8 +- drivers/net/ethernet/intel/i40e/i40e_diag.c | 12 +- drivers/net/ethernet/intel/i40e/i40e_diag.h | 4 +- drivers/net/ethernet/intel/i40e/i40e_ethtool.c | 65 +- drivers/net/ethernet/intel/i40e/i40e_hmc.c | 56 +- drivers/net/ethernet/intel/i40e/i40e_hmc.h | 46 +- drivers/net/ethernet/intel/i40e/i40e_lan_hmc.c | 94 +- drivers/net/ethernet/intel/i40e/i40e_lan_hmc.h | 34 +- drivers/net/ethernet/intel/i40e/i40e_main.c | 404 ++++---- drivers/net/ethernet/intel/i40e/i40e_nvm.c | 252 ++--- drivers/net/ethernet/intel/i40e/i40e_osdep.h | 1 - drivers/net/ethernet/intel/i40e/i40e_prototype.h | 677 +++++++------ drivers/net/ethernet/intel/i40e/i40e_status.h | 35 - drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c | 94 +- drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c | 23 +- drivers/net/ethernet/mellanox/mlx5/core/dev.c | 4 +- drivers/net/ethernet/mellanox/mlx5/core/devlink.c | 6 +- .../ethernet/mellanox/mlx5/core/en/tc/post_act.c | 11 +- .../ethernet/mellanox/mlx5/core/en/tc/post_act.h | 2 +- .../net/ethernet/mellanox/mlx5/core/en/tc/sample.c | 4 +- drivers/net/ethernet/mellanox/mlx5/core/en_fs.c | 5 +- drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 1 + drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 2 + .../net/ethernet/mellanox/mlx5/core/esw/vporttbl.c | 12 +- drivers/net/ethernet/mellanox/mlx5/core/eswitch.h | 2 +- .../ethernet/mellanox/mlx5/core/eswitch_offloads.c | 4 +- drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c | 8 +- drivers/net/ethernet/mellanox/mlx5/core/health.c | 2 +- drivers/net/ethernet/mellanox/mlx5/core/main.c | 16 +- .../net/ethernet/mellanox/mlx5/core/mlx5_core.h | 6 +- .../ethernet/mellanox/mlx5/core/sf/dev/driver.c | 2 +- drivers/net/ethernet/sfc/ef100_tx.c | 3 +- drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c | 197 ++-- drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 12 +- drivers/net/ethernet/sun/sunhme.c | 2 +- drivers/net/pcs/pcs-xpcs.c | 13 +- drivers/net/phy/sfp.c | 4 + drivers/net/wireguard/timers.c | 8 +- drivers/net/wireless/ath/ath11k/ahb.c | 14 +- drivers/net/wireless/ath/ath11k/dbring.c | 12 +- drivers/net/wireless/ath/ath11k/mac.h | 2 +- drivers/net/wireless/ath/ath11k/mhi.c | 2 +- drivers/net/wireless/ath/ath11k/peer.c | 5 +- drivers/net/wireless/ath/ath5k/ahb.c | 10 +- drivers/net/wireless/ath/ath5k/eeprom.c | 2 +- drivers/net/wireless/ath/ath6kl/bmi.c | 2 +- drivers/net/wireless/ath/ath6kl/htc_pipe.c | 4 +- drivers/net/wireless/ath/ath9k/hif_usb.c | 19 + .../broadcom/brcm80211/brcmfmac/cfg80211.c | 14 +- drivers/net/wireless/intel/iwlwifi/fw/dbg.c | 8 +- drivers/net/wireless/intel/iwlwifi/fw/debugfs.c | 4 +- drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c | 6 + drivers/net/wireless/intel/iwlwifi/iwl-debug.c | 3 +- drivers/net/wireless/intel/iwlwifi/mvm/d3.c | 1 + drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c | 10 + drivers/net/wireless/intel/iwlwifi/mvm/rx.c | 5 +- drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c | 5 +- drivers/net/wireless/intel/iwlwifi/pcie/drv.c | 1 - drivers/net/wireless/intel/iwlwifi/pcie/trans.c | 12 +- drivers/net/wireless/mediatek/mt76/dma.c | 2 + drivers/net/wireless/mediatek/mt76/mt76.h | 9 +- drivers/net/wireless/mediatek/mt76/mt7603/mac.c | 5 +- drivers/net/wireless/mediatek/mt76/mt7615/mac.c | 13 +- .../net/wireless/mediatek/mt76/mt76_connac_mac.c | 3 +- .../net/wireless/mediatek/mt76/mt76_connac_mcu.c | 13 +- drivers/net/wireless/mediatek/mt76/mt76x02_mac.c | 5 +- drivers/net/wireless/mediatek/mt76/mt7915/soc.c | 2 + drivers/net/wireless/mediatek/mt76/mt7921/dma.c | 40 +- drivers/net/wireless/mediatek/mt76/mt7921/mcu.c | 20 - drivers/net/wireless/mediatek/mt76/mt7921/pci.c | 9 +- drivers/net/wireless/mediatek/mt76/mt7921/usb.c | 2 +- drivers/net/wireless/mediatek/mt76/tx.c | 4 + drivers/net/wireless/mediatek/mt76/util.c | 10 +- drivers/net/wireless/ralink/rt2x00/rt2x00dev.c | 1 + .../net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192e.c | 1 + drivers/net/wireless/realtek/rtlwifi/debug.c | 12 +- drivers/net/wireless/realtek/rtw88/mac.c | 8 +- drivers/net/wireless/realtek/rtw89/core.c | 10 +- drivers/net/wireless/realtek/rtw89/pci.c | 19 +- drivers/net/wwan/t7xx/Makefile | 2 - drivers/nvme/host/core.c | 5 +- drivers/nvme/host/trace.h | 15 +- drivers/nvme/target/admin-cmd.c | 45 +- drivers/nvme/target/fcloop.c | 48 +- drivers/nvme/target/nvmet.h | 2 +- drivers/nvme/target/zns.c | 18 +- drivers/of/device.c | 7 +- drivers/pci/controller/dwc/Kconfig | 1 + drivers/pci/controller/dwc/pci-imx6.c | 7 + drivers/pci/controller/dwc/pcie-qcom.c | 8 +- drivers/pci/hotplug/pciehp_pci.c | 15 + drivers/pci/pcie/edr.c | 1 + drivers/pci/quirks.c | 13 + drivers/perf/arm-cmn.c | 59 +- drivers/perf/riscv_pmu_sbi.c | 2 +- drivers/phy/qualcomm/phy-qcom-qmp-pcie.c | 2 +- drivers/phy/tegra/xusb.c | 2 + drivers/phy/ti/phy-j721e-wiz.c | 11 +- drivers/pinctrl/bcm/pinctrl-bcm2835.c | 19 +- drivers/pinctrl/qcom/pinctrl-lpass-lpi.c | 14 +- drivers/pinctrl/ralink/pinctrl-mt7620.c | 1 + drivers/pinctrl/ralink/pinctrl-mt7621.c | 1 + drivers/pinctrl/ralink/pinctrl-rt2880.c | 1 + drivers/pinctrl/ralink/pinctrl-rt305x.c | 1 + drivers/pinctrl/ralink/pinctrl-rt3883.c | 1 + drivers/pinctrl/renesas/pfc-r8a779a0.c | 8 - drivers/pinctrl/renesas/pfc-r8a779f0.c | 2 +- drivers/pinctrl/renesas/pfc-r8a779g0.c | 990 ++++++++++--------- drivers/platform/chrome/cros_typec_switch.c | 1 + drivers/platform/x86/amd/Kconfig | 2 +- drivers/platform/x86/amd/pmc.c | 157 ++- drivers/platform/x86/amd/pmf/Kconfig | 1 + drivers/platform/x86/amd/pmf/core.c | 22 +- drivers/platform/x86/thinkpad_acpi.c | 8 + drivers/power/supply/generic-adc-battery.c | 3 + drivers/power/supply/rk817_charger.c | 33 +- drivers/pwm/pwm-meson.c | 6 +- drivers/pwm/pwm-mtk-disp.c | 34 +- drivers/regulator/core.c | 100 +- drivers/regulator/stm32-pwr.c | 7 +- drivers/rpmsg/qcom_glink_native.c | 10 +- drivers/rtc/rtc-meson-vrtc.c | 4 +- drivers/rtc/rtc-omap.c | 1 + drivers/rtc/rtc-ti-k3.c | 3 +- drivers/s390/block/dasd.c | 2 +- drivers/scsi/hisi_sas/hisi_sas_v1_hw.c | 6 +- drivers/scsi/hisi_sas/hisi_sas_v2_hw.c | 6 +- drivers/scsi/hisi_sas/hisi_sas_v3_hw.c | 6 +- drivers/scsi/libsas/sas_ata.c | 18 + drivers/scsi/lpfc/lpfc_init.c | 10 +- drivers/scsi/megaraid.c | 1 + drivers/scsi/mpi3mr/mpi3mr_fw.c | 2 +- drivers/soc/bcm/brcmstb/biuctrl.c | 4 + drivers/soc/renesas/renesas-soc.c | 5 +- drivers/soc/ti/pm33xx.c | 5 +- drivers/soundwire/cadence_master.c | 30 +- drivers/soundwire/cadence_master.h | 6 +- drivers/soundwire/intel.c | 99 +- drivers/soundwire/qcom.c | 2 +- drivers/spi/atmel-quadspi.c | 30 +- drivers/spi/spi-bcm63xx.c | 2 - drivers/spi/spi-cadence-quadspi.c | 32 +- drivers/spi/spi-fsl-spi.c | 12 +- drivers/spi/spi-imx.c | 12 +- drivers/spi/spi-qup.c | 22 +- drivers/spmi/spmi.c | 3 +- drivers/staging/iio/resolver/ad2s1210.c | 2 +- .../media/deprecated/saa7146/av7110/av7110_av.c | 4 +- drivers/staging/media/rkvdec/rkvdec.c | 2 + drivers/staging/media/sunxi/cedrus/cedrus.c | 1 + drivers/staging/rtl8192e/rtl8192e/rtl_core.c | 1 + drivers/staging/rtl8723bs/core/rtw_mlme.c | 8 +- drivers/target/iscsi/iscsi_target.c | 36 +- drivers/target/iscsi/iscsi_target_login.c | 7 + drivers/target/target_core_device.c | 1 + drivers/target/target_core_internal.h | 1 - drivers/target/target_core_tmr.c | 26 +- drivers/target/target_core_tpg.c | 2 +- drivers/target/target_core_transport.c | 199 ++-- drivers/target/target_core_xcopy.c | 120 ++- drivers/target/target_core_xcopy.h | 2 +- drivers/thermal/mtk_thermal.c | 14 +- drivers/thunderbolt/tb.h | 2 +- drivers/tty/serial/8250/8250.h | 12 + drivers/tty/serial/8250/8250_bcm7271.c | 18 +- drivers/tty/serial/8250/8250_port.c | 11 +- drivers/tty/serial/fsl_lpuart.c | 2 +- drivers/tty/serial/max310x.c | 17 +- drivers/tty/serial/serial_core.c | 4 +- drivers/tty/serial/stm32-usart.c | 5 +- drivers/tty/tty.h | 2 + drivers/tty/tty_io.c | 4 +- drivers/tty/tty_ioctl.c | 45 +- drivers/usb/chipidea/core.c | 2 +- drivers/usb/dwc3/core.c | 15 +- drivers/usb/dwc3/gadget.c | 60 +- drivers/usb/gadget/function/f_tcm.c | 4 +- drivers/usb/gadget/udc/core.c | 151 ++- drivers/usb/gadget/udc/renesas_usb3.c | 1 + drivers/usb/gadget/udc/tegra-xudc.c | 2 +- drivers/usb/host/xhci-debugfs.c | 1 + drivers/usb/host/xhci-rcar.c | 3 - drivers/usb/mtu3/mtu3_qmu.c | 5 +- drivers/vhost/vdpa.c | 8 +- drivers/video/fbdev/mmp/hw/mmp_ctrl.c | 2 +- drivers/virt/coco/sev-guest/sev-guest.c | 27 +- drivers/virtio/virtio_ring.c | 22 +- drivers/xen/pcpu.c | 20 + fs/Makefile | 3 +- fs/afs/dir.c | 4 + fs/afs/inode.c | 10 +- fs/btrfs/ioctl.c | 5 + fs/ceph/caps.c | 2 +- fs/ceph/debugfs.c | 18 +- fs/ceph/mds_client.c | 72 +- fs/ceph/mds_client.h | 3 +- fs/ceph/super.h | 2 + fs/cifs/cifs_debug.c | 7 +- fs/cifs/cifs_debug.h | 12 +- fs/cifs/connect.c | 10 +- fs/cifs/file.c | 16 + fs/cifs/misc.c | 8 +- fs/cifs/sess.c | 7 +- fs/cifs/smb2pdu.c | 15 +- fs/crypto/inline_crypt.c | 14 +- fs/erofs/internal.h | 3 +- fs/erofs/super.c | 22 +- fs/erofs/zmap.c | 4 + fs/ext4/extents.c | 3 +- fs/ext4/inode.c | 3 + fs/f2fs/compress.c | 13 +- fs/f2fs/data.c | 5 +- fs/f2fs/f2fs.h | 1 + fs/f2fs/file.c | 21 +- fs/f2fs/gc.c | 2 +- fs/f2fs/segment.c | 73 +- fs/f2fs/segment.h | 3 + fs/f2fs/super.c | 2 +- fs/f2fs/sysfs.c | 4 +- fs/jbd2/transaction.c | 3 + fs/ksmbd/auth.c | 19 +- fs/ksmbd/mgmt/tree_connect.c | 10 +- fs/ksmbd/mgmt/tree_connect.h | 3 + fs/ksmbd/server.c | 1 + fs/ksmbd/smb2pdu.c | 21 +- fs/nfs/nfs4state.c | 4 + fs/nilfs2/bmap.c | 16 +- fs/nilfs2/segment.c | 5 +- fs/ntfs3/fslog.c | 6 +- fs/ntfs3/index.c | 8 + fs/ntfs3/inode.c | 2 +- fs/ntfs3/namei.c | 10 + fs/ntfs3/ntfs_fs.h | 1 + fs/pstore/pmsg.c | 7 +- fs/reiserfs/xattr_security.c | 8 +- fs/ubifs/dir.c | 7 +- fs/ubifs/tnc.c | 142 +-- fs/xfs/libxfs/xfs_sb.c | 11 +- include/asm-generic/io.h | 4 +- include/drm/i915_pciids.h | 1 - include/linux/blk-crypto-profile.h | 12 - include/linux/blk-crypto.h | 15 +- include/linux/mailbox/zynqmp-ipi-message.h | 2 +- include/linux/mlx5/mlx5_ifc.h | 3 +- include/linux/netfilter/nfnetlink.h | 1 - include/linux/posix-timers.h | 17 +- include/linux/sunrpc/sched.h | 3 +- include/linux/tick.h | 2 + include/linux/vt_buffer.h | 2 +- include/net/bond_alb.h | 4 +- include/net/netfilter/nf_conntrack_core.h | 6 +- include/net/scm.h | 13 +- include/net/xsk_buff_pool.h | 9 +- include/scsi/sas_ata.h | 6 + ...chip_offset_byte.h => acp63_chip_offset_byte.h} | 2 +- include/target/iscsi/iscsi_target_core.h | 1 + include/target/target_core_base.h | 14 +- include/target/target_core_fabric.h | 15 +- include/trace/events/qrtr.h | 33 +- include/trace/events/timer.h | 3 +- include/trace/stages/stage5_get_offsets.h | 21 +- include/uapi/linux/btrfs.h | 1 + include/uapi/linux/const.h | 2 +- include/xen/xen.h | 11 + io_uring/rsrc.c | 2 +- kernel/bpf/btf.c | 16 +- kernel/bpf/cgroup.c | 9 +- kernel/bpf/verifier.c | 32 +- kernel/dma/swiotlb.c | 16 +- kernel/events/core.c | 4 +- kernel/kcsan/core.c | 17 +- kernel/kheaders.c | 10 +- kernel/power/hibernate.c | 15 +- kernel/power/power.h | 1 + kernel/power/swap.c | 8 +- kernel/rcu/tree.c | 1 + kernel/relay.c | 3 +- kernel/sched/deadline.c | 1 + kernel/sched/fair.c | 2 +- kernel/sched/rt.c | 4 + kernel/time/posix-cpu-timers.c | 81 +- kernel/time/posix-timers.c | 4 + kernel/time/tick-common.c | 12 +- kernel/time/tick-sched.c | 16 +- kernel/time/timekeeping.c | 4 +- kernel/trace/ring_buffer.c | 20 +- kernel/trace/trace.c | 2 +- kernel/trace/trace_events_user.c | 3 + kernel/workqueue.c | 10 +- lib/debugobjects.c | 146 +-- lib/kunit/debugfs.c | 16 +- lib/kunit/executor.c | 6 +- lib/kunit/test.c | 28 +- mm/kasan/hw_tags.c | 4 +- mm/mempolicy.c | 4 +- mm/vmscan.c | 10 + net/8021q/vlan_dev.c | 2 +- net/core/skbuff.c | 3 + net/dccp/ipv6.c | 1 + net/ipv4/ip_output.c | 16 +- net/ipv6/ip6_input.c | 14 +- net/ipv6/raw.c | 5 +- net/ipv6/tcp_ipv6.c | 2 + net/ipv6/udp.c | 2 + net/netfilter/nf_conntrack_bpf.c | 1 + net/netfilter/nf_conntrack_core.c | 1 - net/netfilter/nf_conntrack_netlink.c | 16 +- net/netfilter/nf_tables_api.c | 8 +- net/netfilter/nfnetlink.c | 2 - net/netlink/af_netlink.c | 75 +- net/packet/af_packet.c | 30 +- net/packet/diag.c | 4 +- net/packet/internal.h | 26 +- net/sched/sch_fq.c | 6 +- net/sunrpc/clnt.c | 3 - net/sunrpc/sched.c | 1 - net/xdp/xsk_queue.h | 1 + scripts/gdb/linux/clk.py | 2 + scripts/gdb/linux/constants.py.in | 2 + scripts/gdb/linux/genpd.py | 4 +- scripts/gdb/linux/timerlist.py | 4 +- scripts/gdb/linux/utils.py | 5 +- scripts/gdb/vmlinux-gdb.py | 5 +- security/integrity/ima/Kconfig | 2 +- security/selinux/Makefile | 4 +- sound/pci/hda/patch_realtek.c | 5 + sound/soc/amd/Kconfig | 4 +- sound/soc/amd/ps/{acp62.h => acp63.h} | 10 +- sound/soc/amd/ps/pci-ps.c | 130 ++- sound/soc/amd/ps/ps-mach.c | 30 +- sound/soc/amd/ps/ps-pdm-dma.c | 188 ++-- sound/soc/amd/yc/acp6x-mach.c | 7 + sound/soc/codecs/cs35l41.c | 34 +- sound/soc/codecs/da7213.c | 6 + sound/soc/codecs/es8316.c | 14 +- sound/soc/fsl/fsl_mqs.c | 15 +- sound/soc/intel/boards/bytcr_rt5640.c | 12 + sound/soc/intel/boards/sof_sdw.c | 11 + sound/soc/intel/common/soc-acpi-intel-adl-match.c | 20 + sound/soc/soc-compress.c | 3 + sound/soc/soc-pcm.c | 4 + sound/usb/quirks-table.h | 58 ++ tools/arch/x86/kcpuid/cpuid.csv | 4 +- tools/bpf/bpftool/json_writer.c | 3 - tools/bpf/bpftool/xlated_dumper.c | 7 + tools/lib/bpf/gen_loader.c | 10 +- tools/objtool/check.c | 11 - tools/perf/util/auxtrace.c | 5 +- .../perf/util/intel-pt-decoder/intel-pt-decoder.c | 2 + tools/testing/selftests/bpf/network_helpers.c | 2 +- tools/testing/selftests/bpf/prog_tests/align.c | 4 +- .../selftests/bpf/prog_tests/cg_storage_multi.c | 8 +- .../bpf/prog_tests/get_stackid_cannot_attach.c | 1 + .../selftests/bpf/prog_tests/perf_event_stackmap.c | 3 +- .../bpf/prog_tests/stacktrace_build_id_nmi.c | 15 - tools/testing/selftests/bpf/test_xsk.sh | 1 + tools/testing/selftests/bpf/testing_helpers.c | 20 + tools/testing/selftests/bpf/testing_helpers.h | 2 + tools/testing/selftests/bpf/xskxceiver.c | 19 +- tools/testing/selftests/bpf/xskxceiver.h | 1 - .../selftests/mount_setattr/mount_setattr_test.c | 1 + .../mmcra_thresh_marked_sample_test.c | 4 +- tools/testing/selftests/resctrl/cache.c | 4 +- tools/testing/selftests/resctrl/cat_test.c | 2 +- tools/testing/selftests/resctrl/cmt_test.c | 2 +- tools/testing/selftests/resctrl/fill_buf.c | 2 + tools/testing/selftests/resctrl/mba_test.c | 9 +- tools/testing/selftests/resctrl/mbm_test.c | 2 +- tools/testing/selftests/resctrl/resctrl.h | 2 + tools/testing/selftests/resctrl/resctrl_val.c | 21 +- .../selftests/tc-testing/tc-tests/qdiscs/fq.json | 22 + tools/testing/selftests/user_events/ftrace_test.c | 5 + 720 files changed, 7886 insertions(+), 6580 deletions(-)
1 year, 9 months
11
625
0
0
stable-rc/queue/5.15 baseline: 159 runs, 10 regressions (v5.15.105-732-g51751fee1428)
by kernelci.org bot
stable-rc/queue/5.15 baseline: 159 runs, 10 regressions (v5.15.105-732-g51751fee1428) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 imx53-qsrb | arm | lab-pengutronix | gcc-10 | multi_v7_defconfig | 1 kontron-pitx-imx8m | arm64 | lab-kontron | gcc-10 | defconfig | 2 lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.15/kernel/v5.15.10…
Test: baseline Tree: stable-rc Branch: queue/5.15 Describe: v5.15.105-732-g51751fee1428 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 51751fee14288c10aae496ffa476052cfcbee161 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a363371d684b9ef2e8694
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a363371d684b9ef2e8699
failing since 42 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-09T12:01:46.322331 + set +x<8>[ 11.735748] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256983_1.4.2.3.1> 2023-05-09T12:01:46.322460 2023-05-09T12:01:46.426041 / # # 2023-05-09T12:01:46.526822 export SHELL=/bin/sh 2023-05-09T12:01:46.527045 # 2023-05-09T12:01:46.627604 / # export SHELL=/bin/sh. /lava-10256983/environment 2023-05-09T12:01:46.627858 2023-05-09T12:01:46.728451 / # . /lava-10256983/environment/lava-10256983/bin/lava-test-runner /lava-10256983/1 2023-05-09T12:01:46.728819 2023-05-09T12:01:46.733044 / # /lava-10256983/bin/lava-test-runner /lava-10256983/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a3631f48340b4992e8607
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a3631f48340b4992e860c
failing since 42 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-09T12:01:32.182549 <8>[ 10.601427] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256949_1.4.2.3.1> 2023-05-09T12:01:32.186074 + set +x 2023-05-09T12:01:32.291478 2023-05-09T12:01:32.393092 / # #export SHELL=/bin/sh 2023-05-09T12:01:32.393839 2023-05-09T12:01:32.495219 / # export SHELL=/bin/sh. /lava-10256949/environment 2023-05-09T12:01:32.495962 2023-05-09T12:01:32.597521 / # . /lava-10256949/environment/lava-10256949/bin/lava-test-runner /lava-10256949/1 2023-05-09T12:01:32.598916 2023-05-09T12:01:32.604277 / # /lava-10256949/bin/lava-test-runner /lava-10256949/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a3676681f986ccb2e85ed
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a3676681f986ccb2e85f2
failing since 42 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-09T12:02:46.619328 + <8>[ 10.202793] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256938_1.4.2.3.1> 2023-05-09T12:02:46.619414 set +x 2023-05-09T12:02:46.721025 2023-05-09T12:02:46.821635 / # #export SHELL=/bin/sh 2023-05-09T12:02:46.821829 2023-05-09T12:02:46.922357 / # export SHELL=/bin/sh. /lava-10256938/environment 2023-05-09T12:02:46.922560 2023-05-09T12:02:47.023114 / # . /lava-10256938/environment/lava-10256938/bin/lava-test-runner /lava-10256938/1 2023-05-09T12:02:47.023375 2023-05-09T12:02:47.028037 / # /lava-10256938/bin/lava-test-runner /lava-10256938/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a363ad84b69d3652e85e7
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a363ad84b69d3652e85ec
failing since 42 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-09T12:01:41.575296 <8>[ 11.085363] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256956_1.4.2.3.1> 2023-05-09T12:01:41.578823 + set +x 2023-05-09T12:01:41.683225 / # # 2023-05-09T12:01:41.783912 export SHELL=/bin/sh 2023-05-09T12:01:41.784133 # 2023-05-09T12:01:41.884668 / # export SHELL=/bin/sh. /lava-10256956/environment 2023-05-09T12:01:41.884845 2023-05-09T12:01:41.985329 / # . /lava-10256956/environment/lava-10256956/bin/lava-test-runner /lava-10256956/1 2023-05-09T12:01:41.985654 2023-05-09T12:01:41.990119 / # /lava-10256956/bin/lava-test-runner /lava-10256956/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a3645f58f8d13652e85e6
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a3645f58f8d13652e85eb
failing since 42 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-09T12:01:48.741731 + set<8>[ 11.555343] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256971_1.4.2.3.1> 2023-05-09T12:01:48.742171 +x 2023-05-09T12:01:48.850085 / # # 2023-05-09T12:01:48.952560 export SHELL=/bin/sh 2023-05-09T12:01:48.953366 # 2023-05-09T12:01:49.054855 / # export SHELL=/bin/sh. /lava-10256971/environment 2023-05-09T12:01:49.055626 2023-05-09T12:01:49.157035 / # . /lava-10256971/environment/lava-10256971/bin/lava-test-runner /lava-10256971/1 2023-05-09T12:01:49.158128 2023-05-09T12:01:49.162797 / # /lava-10256971/bin/lava-test-runner /lava-10256971/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ imx53-qsrb | arm | lab-pengutronix | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a34ae34dd98704a2e8611
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a34ae34dd98704a2e8616
failing since 102 days (last pass: v5.15.81-121-gcb14018a85f6, first fail: v5.15.90-146-gbf7101723cc0) 2023-05-09T11:55:05.180079 + set +x 2023-05-09T11:55:05.180520 [ 9.428639] <LAVA_SIGNAL_ENDRUN 0_dmesg 945244_1.5.2.3.1> 2023-05-09T11:55:05.288238 / # # 2023-05-09T11:55:05.390250 export SHELL=/bin/sh 2023-05-09T11:55:05.390854 # 2023-05-09T11:55:05.492235 / # export SHELL=/bin/sh. /lava-945244/environment 2023-05-09T11:55:05.492971 2023-05-09T11:55:05.594480 / # . /lava-945244/environment/lava-945244/bin/lava-test-runner /lava-945244/1 2023-05-09T11:55:05.595341 2023-05-09T11:55:05.597777 / # /lava-945244/bin/lava-test-runner /lava-945244/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ kontron-pitx-imx8m | arm64 | lab-kontron | gcc-10 | defconfig | 2 Details:
https://kernelci.org/test/plan/id/645a357f1355d7a3752e85ed
Results: 50 PASS, 2 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a357f1355d7a3752e85f0
new failure (last pass: v5.15.105-731-gf083435ecac9) 2023-05-09T11:58:28.894325 / # # 2023-05-09T11:58:28.997019 export SHELL=/bin/sh 2023-05-09T11:58:28.997815 # 2023-05-09T11:58:29.099711 / # export SHELL=/bin/sh. /lava-333105/environment 2023-05-09T11:58:29.100455 2023-05-09T11:58:29.202397 / # . /lava-333105/environment/lava-333105/bin/lava-test-runner /lava-333105/1 2023-05-09T11:58:29.203631 2023-05-09T11:58:29.221105 / # /lava-333105/bin/lava-test-runner /lava-333105/1 2023-05-09T11:58:29.269091 + export 'TESTRUN_ID=1_bootrr' 2023-05-09T11:58:29.269625 + cd /l<8>[ 12.141694] <LAVA_SIGNAL_STARTRUN 1_bootrr 333105_1.5.2.4.5> ... (10 line(s) more) * baseline.bootrr.dwc3-usb1-probed:
https://kernelci.org/test/case/id/645a357f1355d7a3752e8600
new failure (last pass: v5.15.105-731-gf083435ecac9) 2023-05-09T11:58:31.592059 /lava-333105/1/../bin/lava-test-case 2023-05-09T11:58:31.592535 <8>[ 14.563311] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=dwc3-usb1-probed RESULT=fail> 2023-05-09T11:58:31.592879 /lava-333105/1/../bin/lava-test-case platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a366da4b9d61eff2e8630
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a366da4b9d61eff2e8635
failing since 42 days (last pass: v5.15.104-76-g9168fe5021cf1, first fail: v5.15.104-83-ga131fb06fbdb) 2023-05-09T12:02:34.796538 + set +x<8>[ 11.758812] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256939_1.4.2.3.1> 2023-05-09T12:02:34.796624 2023-05-09T12:02:34.900701 / # # 2023-05-09T12:02:35.001301 export SHELL=/bin/sh 2023-05-09T12:02:35.001470 # 2023-05-09T12:02:35.101957 / # export SHELL=/bin/sh. /lava-10256939/environment 2023-05-09T12:02:35.102118 2023-05-09T12:02:35.202606 / # . /lava-10256939/environment/lava-10256939/bin/lava-test-runner /lava-10256939/1 2023-05-09T12:02:35.202870 2023-05-09T12:02:35.207816 / # /lava-10256939/bin/lava-test-runner /lava-10256939/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+-----------------+----------+------------------------------+------------ sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a378283bee4cfe62e8606
Results: 38 PASS, 8 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.105-732-g51751fee1…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a378283bee4cfe62e8633
failing since 111 days (last pass: v5.15.82-123-gd03dbdba21ef, first fail: v5.15.87-100-ge215d5ead661) 2023-05-09T12:07:01.201403 + set +x 2023-05-09T12:07:01.205606 <8>[ 16.102086] <LAVA_SIGNAL_ENDRUN 0_dmesg 3568484_1.5.2.4.1> 2023-05-09T12:07:01.326674 / # # 2023-05-09T12:07:01.432679 export SHELL=/bin/sh 2023-05-09T12:07:01.434286 # 2023-05-09T12:07:01.537897 / # export SHELL=/bin/sh. /lava-3568484/environment 2023-05-09T12:07:01.539581 2023-05-09T12:07:01.643253 / # . /lava-3568484/environment/lava-3568484/bin/lava-test-runner /lava-3568484/1 2023-05-09T12:07:01.646086 2023-05-09T12:07:01.649473 / # /lava-3568484/bin/lava-test-runner /lava-3568484/1 ... (12 line(s) more)
1 year, 9 months
1
0
0
0
stable-rc/queue/5.4 baseline: 150 runs, 28 regressions (v5.4.238-450-gc22c7606fe30)
by kernelci.org bot
stable-rc/queue/5.4 baseline: 150 runs, 28 regressions (v5.4.238-450-gc22c7606fe30) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.4/kernel/v5.4.238-…
Test: baseline Tree: stable-rc Branch: queue/5.4 Describe: v5.4.238-450-gc22c7606fe30 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: c22c7606fe30ae853eaddc28ed95e6b13d8c5272 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2dc6b3736b79ac2e8616
Results: 3 PASS, 2 FAIL, 2 SKIP Full config: defconfig Compiler: gcc-10 (riscv64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.dmesg.crit:
https://kernelci.org/test/case/id/645a2dc6b3736b79ac2e861f
failing since 202 days (last pass: v5.4.219-270-gde284a6cd1e4, first fail: v5.4.219-266-g5eb28a6c7901) 3 lines 2023-05-09T11:25:40.258946 / # 2023-05-09T11:25:40.259844 2023-05-09T11:25:42.322011 / # # 2023-05-09T11:25:42.322596 # 2023-05-09T11:25:44.335512 / # export SHELL=/bin/sh 2023-05-09T11:25:44.335914 export SHELL=/bin/sh 2023-05-09T11:25:46.351083 / # . /lava-3568234/environment 2023-05-09T11:25:46.351521 . /lava-3568234/environment 2023-05-09T11:25:48.367303 / # /lava-3568234/bin/lava-test-runner /lava-3568234/0 2023-05-09T11:25:48.369680 /lava-3568234/bin/lava-test-runner /lava-3568234/0 ... (9 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a30ebf8f7f2e8912e861a
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a30ebf8f7f2e8912e861f
failing since 41 days (last pass: v5.4.238-29-g39c31e43e3b2b, first fail: v5.4.238-60-gcf51829325af) 2023-05-09T11:39:03.167706 + set<8>[ 10.153060] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256617_1.4.2.3.1> 2023-05-09T11:39:03.167791 +x 2023-05-09T11:39:03.269736 2023-05-09T11:39:03.370391 / # #export SHELL=/bin/sh 2023-05-09T11:39:03.370562 2023-05-09T11:39:03.471110 / # export SHELL=/bin/sh. /lava-10256617/environment 2023-05-09T11:39:03.471314 2023-05-09T11:39:03.571856 / # . /lava-10256617/environment/lava-10256617/bin/lava-test-runner /lava-10256617/1 2023-05-09T11:39:03.572104 2023-05-09T11:39:03.576298 / # /lava-10256617/bin/lava-test-runner /lava-10256617/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a30d240d809300c2e85fb
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a30d240d809300c2e8600
failing since 41 days (last pass: v5.4.238-29-g39c31e43e3b2b, first fail: v5.4.238-60-gcf51829325af) 2023-05-09T11:38:45.494045 <8>[ 14.529977] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256682_1.4.2.3.1> 2023-05-09T11:38:45.497807 + set +x 2023-05-09T11:38:45.602833 / # # 2023-05-09T11:38:45.703791 export SHELL=/bin/sh 2023-05-09T11:38:45.704128 # 2023-05-09T11:38:45.804737 / # export SHELL=/bin/sh. /lava-10256682/environment 2023-05-09T11:38:45.805002 2023-05-09T11:38:45.905658 / # . /lava-10256682/environment/lava-10256682/bin/lava-test-runner /lava-10256682/1 2023-05-09T11:38:45.906155 2023-05-09T11:38:45.910711 / # /lava-10256682/bin/lava-test-runner /lava-10256682/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a32672c09f05a8d2e85f7
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a32672c09f05a8d2e85f8
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a3562c6544abd902e85f5
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3562c6544abd902e85f6
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a3286aa68bb44ad2e8628
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3286aa68bb44ad2e8629
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a352cc24aaa3baa2e85f9
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a352cc24aaa3baa2e85fa
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a323f5bc9eb90932e862d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a323f5bc9eb90932e862e
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a351c4420225fbf2e85f3
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a351c4420225fbf2e85f4
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a327c5f63a105d32e85f4
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a327c5f63a105d32e85f5
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a3566fceaa404f22e8605
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3566fceaa404f22e8606
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a3284be5e05145f2e85e6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3284be5e05145f2e85e7
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a35683a204a6aec2e8623
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a35683a204a6aec2e8624
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a324be6248de9832e85f5
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a324be6248de9832e85f6
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a355ef827a1045e2e85f6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a355ef827a1045e2e85f7
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a327daa68bb44ad2e8617
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a327daa68bb44ad2e8618
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a3564f827a1045e2e85fc
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3564f827a1045e2e85fd
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a3285aa68bb44ad2e8623
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3285aa68bb44ad2e8624
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a3554e233282d332e8614
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3554e233282d332e8615
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a324cb6b567c3392e85e9
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a324cb6b567c3392e85ea
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a3530c24aaa3baa2e85fc
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3530c24aaa3baa2e85fd
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a32682c09f05a8d2e85fa
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a32682c09f05a8d2e85fb
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a35633a204a6aec2e861d
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a35633a204a6aec2e861e
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a32ad920ded5d002e86a6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a32ad920ded5d002e86a7
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a3540c24aaa3baa2e861e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3540c24aaa3baa2e861f
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a3240e6248de9832e85e6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a3240e6248de9832e85e7
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a35224420225fbf2e85fc
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a35224420225fbf2e85fd
failing since 287 days (last pass: v5.4.180-77-g7de29e82b9db, first fail: v5.4.207-73-ga2480f1b1dda1) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a31a31c2e8bf0cc2e85f1
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.4/v5.4.238-450-gc22c7606fe3…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a31a31c2e8bf0cc2e85f6
failing since 97 days (last pass: v5.4.230-108-g761a8268d868, first fail: v5.4.230-109-g0a6085bff265) 2023-05-09T11:41:55.340353 <8>[ 6.604760] <LAVA_SIGNAL_ENDRUN 0_dmesg 3568356_1.5.2.4.1> 2023-05-09T11:41:55.458698 / # # 2023-05-09T11:41:55.560453 export SHELL=/bin/sh 2023-05-09T11:41:55.560857 # 2023-05-09T11:41:55.662203 / # export SHELL=/bin/sh. /lava-3568356/environment 2023-05-09T11:41:55.662580 2023-05-09T11:41:55.763925 / # . /lava-3568356/environment/lava-3568356/bin/lava-test-runner /lava-3568356/1 2023-05-09T11:41:55.764604 2023-05-09T11:41:55.771049 / # /lava-3568356/bin/lava-test-runner /lava-3568356/1 2023-05-09T11:41:55.858924 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more)
1 year, 9 months
1
0
0
0
stable-rc/queue/6.1 baseline: 129 runs, 10 regressions (v6.1.22-1202-g7787f1dda0d3)
by kernelci.org bot
stable-rc/queue/6.1 baseline: 129 runs, 10 regressions (v6.1.22-1202-g7787f1dda0d3) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-C436FA-Flip-hatch | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 mt8183-kukui-...uniper-sku16 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 qemu_mips-malta | mips | lab-collabora | gcc-10 | malta_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F6.1/kernel/v6.1.22-1…
Test: baseline Tree: stable-rc Branch: queue/6.1 Describe: v6.1.22-1202-g7787f1dda0d3 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 7787f1dda0d3f5f7fef01f8350ec13e8946f7229 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-C436FA-Flip-hatch | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2acf1d8c6adb462e85e6
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2acf1d8c6adb462e85eb
failing since 41 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-09T11:12:54.981760 <8>[ 10.569689] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256150_1.4.2.3.1> 2023-05-09T11:12:54.985262 + set +x 2023-05-09T11:12:55.087018 2023-05-09T11:12:55.187680 / # #export SHELL=/bin/sh 2023-05-09T11:12:55.187944 2023-05-09T11:12:55.288502 / # export SHELL=/bin/sh. /lava-10256150/environment 2023-05-09T11:12:55.288780 2023-05-09T11:12:55.389310 / # . /lava-10256150/environment/lava-10256150/bin/lava-test-runner /lava-10256150/1 2023-05-09T11:12:55.389729 2023-05-09T11:12:55.394603 / # /lava-10256150/bin/lava-test-runner /lava-10256150/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-CM1400CXA-dalboz | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2aabaec89cd5842e85f2
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2aabaec89cd5842e85f7
failing since 41 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-09T11:12:23.329532 + set<8>[ 11.367227] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256187_1.4.2.3.1> 2023-05-09T11:12:23.329609 +x 2023-05-09T11:12:23.433926 / # # 2023-05-09T11:12:23.536189 export SHELL=/bin/sh 2023-05-09T11:12:23.536393 # 2023-05-09T11:12:23.636881 / # export SHELL=/bin/sh. /lava-10256187/environment 2023-05-09T11:12:23.637058 2023-05-09T11:12:23.737534 / # . /lava-10256187/environment/lava-10256187/bin/lava-test-runner /lava-10256187/1 2023-05-09T11:12:23.737895 2023-05-09T11:12:23.742500 / # /lava-10256187/bin/lava-test-runner /lava-10256187/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ asus-cx9400-volteer | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2ab96516e626c82e8601
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2ab96516e626c82e8606
failing since 41 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-09T11:12:43.013870 <8>[ 11.289914] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256147_1.4.2.3.1> 2023-05-09T11:12:43.017089 + set +x 2023-05-09T11:12:43.119368 2023-05-09T11:12:43.220163 / # #export SHELL=/bin/sh 2023-05-09T11:12:43.220500 2023-05-09T11:12:43.321155 / # export SHELL=/bin/sh. /lava-10256147/environment 2023-05-09T11:12:43.321465 2023-05-09T11:12:43.422131 / # . /lava-10256147/environment/lava-10256147/bin/lava-test-runner /lava-10256147/1 2023-05-09T11:12:43.422604 2023-05-09T11:12:43.427507 / # /lava-10256147/bin/lava-test-runner /lava-10256147/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a30a92a62a65f312e8620
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a30a92a62a65f312e8625
failing since 41 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-09T11:38:02.209464 + set +x 2023-05-09T11:38:02.216078 <8>[ 11.032124] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256220_1.4.2.3.1> 2023-05-09T11:38:02.321414 / # # 2023-05-09T11:38:02.422082 export SHELL=/bin/sh 2023-05-09T11:38:02.422363 # 2023-05-09T11:38:02.522951 / # export SHELL=/bin/sh. /lava-10256220/environment 2023-05-09T11:38:02.523139 2023-05-09T11:38:02.623703 / # . /lava-10256220/environment/lava-10256220/bin/lava-test-runner /lava-10256220/1 2023-05-09T11:38:02.624052 2023-05-09T11:38:02.628466 / # /lava-10256220/bin/lava-test-runner /lava-10256220/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2ab5eaeb66a27c2e85f8
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2ab5eaeb66a27c2e85fd
failing since 41 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-09T11:12:30.279519 <8>[ 9.917703] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256175_1.4.2.3.1> 2023-05-09T11:12:30.282428 + set +x 2023-05-09T11:12:30.383903 /# 2023-05-09T11:12:30.484700 # #export SHELL=/bin/sh 2023-05-09T11:12:30.484950 2023-05-09T11:12:30.585552 / # export SHELL=/bin/sh. /lava-10256175/environment 2023-05-09T11:12:30.585773 2023-05-09T11:12:30.686333 / # . /lava-10256175/environment/lava-10256175/bin/lava-test-runner /lava-10256175/1 2023-05-09T11:12:30.686663 2023-05-09T11:12:30.691350 / # /lava-10256175/bin/lava-test-runner /lava-10256175/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14a-cb0001xx-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2ab603a0ef52bd2e8d20
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2ab603a0ef52bd2e8d25
failing since 41 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-09T11:12:47.710728 + set<8>[ 12.659133] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256180_1.4.2.3.1> 2023-05-09T11:12:47.710842 +x 2023-05-09T11:12:47.815123 / # # 2023-05-09T11:12:47.915837 export SHELL=/bin/sh 2023-05-09T11:12:47.916077 # 2023-05-09T11:12:48.016617 / # export SHELL=/bin/sh. /lava-10256180/environment 2023-05-09T11:12:48.016837 2023-05-09T11:12:48.117389 / # . /lava-10256180/environment/lava-10256180/bin/lava-test-runner /lava-10256180/1 2023-05-09T11:12:48.117747 2023-05-09T11:12:48.122673 / # /lava-10256180/bin/lava-test-runner /lava-10256180/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ lenovo-TPad-C13-Yoga-zork | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2ea8fa3f7890b82e85f7
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2ea8fa3f7890b82e85fc
failing since 41 days (last pass: v6.1.21-104-gd5eb32be5b26, first fail: v6.1.21-224-g1abeb39fad59) 2023-05-09T11:29:27.455355 + set<8>[ 11.305106] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256208_1.4.2.3.1> 2023-05-09T11:29:27.455475 +x 2023-05-09T11:29:27.559690 / # # 2023-05-09T11:29:27.660434 export SHELL=/bin/sh 2023-05-09T11:29:27.660677 # 2023-05-09T11:29:27.761246 / # export SHELL=/bin/sh. /lava-10256208/environment 2023-05-09T11:29:27.761492 2023-05-09T11:29:27.862077 / # . /lava-10256208/environment/lava-10256208/bin/lava-test-runner /lava-10256208/1 2023-05-09T11:29:27.862471 2023-05-09T11:29:27.866835 / # /lava-10256208/bin/lava-test-runner /lava-10256208/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ mt8183-kukui-...uniper-sku16 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details:
https://kernelci.org/test/plan/id/645a2f807fa0ad88e92e85fe
Results: 166 PASS, 5 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.mt6577-auxadc-probed:
https://kernelci.org/test/case/id/645a2f807fa0ad88e92e861a
failing since 2 days (last pass: v6.1.22-704-ga3dcd1f09de2, first fail: v6.1.22-1160-g24230ce6f2e2) 2023-05-09T11:32:56.640611 /lava-10256521/1/../bin/lava-test-case 2023-05-09T11:32:56.647539 <8>[ 23.182871] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=mt6577-auxadc-probed RESULT=fail> * baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2f807fa0ad88e92e86a6
failing since 2 days (last pass: v6.1.22-704-ga3dcd1f09de2, first fail: v6.1.22-1160-g24230ce6f2e2) 2023-05-09T11:32:51.134299 + set +x 2023-05-09T11:32:51.140557 <8>[ 17.674468] <LAVA_SIGNAL_ENDRUN 0_dmesg 10256521_1.5.2.3.1> 2023-05-09T11:32:51.245587 / # # 2023-05-09T11:32:51.346504 export SHELL=/bin/sh 2023-05-09T11:32:51.346703 # 2023-05-09T11:32:51.447188 / # export SHELL=/bin/sh. /lava-10256521/environment 2023-05-09T11:32:51.447382 2023-05-09T11:32:51.547928 / # . /lava-10256521/environment/lava-10256521/bin/lava-test-runner /lava-10256521/1 2023-05-09T11:32:51.548470 2023-05-09T11:32:51.553808 / # /lava-10256521/bin/lava-test-runner /lava-10256521/1 ... (13 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ qemu_mips-malta | mips | lab-collabora | gcc-10 | malta_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2aa27892e295cf2e85f2
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: malta_defconfig Compiler: gcc-10 (mips-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
HTML log:
https://storage.kernelci.org//stable-rc/queue-6.1/v6.1.22-1202-g7787f1dda0d…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2aa27892e295cf2e85f3
failing since 1 day (last pass: v6.1.22-1159-g8729cbdc1402, first fail: v6.1.22-1196-g571a2463c150b)
1 year, 9 months
1
0
0
0
stable-rc/queue/4.14 baseline: 120 runs, 26 regressions (v4.14.311-216-g9b0b0a974a0a)
by kernelci.org bot
stable-rc/queue/4.14 baseline: 120 runs, 26 regressions (v4.14.311-216-g9b0b0a974a0a) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 meson8b-odroidc1 | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F4.14/kernel/v4.14.31…
Test: baseline Tree: stable-rc Branch: queue/4.14 Describe: v4.14.311-216-g9b0b0a974a0a URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 9b0b0a974a0a476e8a24c4e93a3eb8cbb534de59 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2e436d876f9ffe2e85ee
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2e436d876f9ffe2e85ef
failing since 308 days (last pass: v4.14.285-35-g61a723f50c9f, first fail: v4.14.285-46-ga87318551bac) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson8b-odroidc1 | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2c4ffe0e45c55f2e85f9
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2c4ffe0e45c55f2e85fa
failing since 450 days (last pass: v4.14.266-18-g18b83990eba9, first fail: v4.14.266-28-g7d44cfe0255d) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2ea6d3d3cb3f292e85fd
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2ea6d3d3cb3f292e85fe
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2f5beae5f52fd02e85e6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2f5beae5f52fd02e85e7
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2efffb68d068b42e85e7
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2efffb68d068b42e85e8
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a30cbe52f5df64c2e860a
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a30cbe52f5df64c2e860b
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2e436d876f9ffe2e85eb
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2e436d876f9ffe2e85ec
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2fa3d8c184dd872e85ee
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2fa3d8c184dd872e85ef
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2ea9fa3f7890b82e8605
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2ea9fa3f7890b82e8606
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2f4b2515c1ad362e860f
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2f4b2515c1ad362e8610
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2fb324526525d62e85f0
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2fb324526525d62e85f1
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a30b9f0c8071a312e85e6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a30b9f0c8071a312e85e7
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2e56eda7be90592e86f6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2e56eda7be90592e86f7
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2f96961a0bfe572e85fe
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2f96961a0bfe572e85ff
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2ea8fa3f7890b82e85f0
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2ea8fa3f7890b82e85f1
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2f5deae5f52fd02e8606
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2f5deae5f52fd02e8607
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2f7749651915f42e85f8
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2f7749651915f42e85f9
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a30e040d809300c2e861a
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a30e040d809300c2e861b
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2e4feda7be90592e85f2
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2e4feda7be90592e85f3
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2faad8c184dd872e8600
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2faad8c184dd872e8601
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2e6aba9704c49e2e8601
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2e6aba9704c49e2e8602
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2f49d26084d6bf2e85e8
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2f49d26084d6bf2e85e9
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2ed74aa1dd83a62e85fc
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2ed74aa1dd83a62e85fd
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a30b7bfc8f732e32e8611
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a30b7bfc8f732e32e8612
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2e4eeda7be90592e85ef
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2e4eeda7be90592e85f0
failing since 287 days (last pass: v4.14.267-41-g23609abc0d54, first fail: v4.14.289-19-g8ed326806c84) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2fa2a2a7774cc42e8609
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.14/v4.14.311-216-g9b0b0a974…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2fa2a2a7774cc42e860a
failing since 364 days (last pass: v4.14.277-54-gf277f09f64f4, first fail: v4.14.277-75-g7a298ff98d4a)
1 year, 9 months
1
0
0
0
stable-rc/queue/5.10 baseline: 142 runs, 4 regressions (v5.10.176-658-gc79570f37c8f)
by kernelci.org bot
stable-rc/queue/5.10 baseline: 142 runs, 4 regressions (v5.10.176-658-gc79570f37c8f) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.10/kernel/v5.10.17…
Test: baseline Tree: stable-rc Branch: queue/5.10 Describe: v5.10.176-658-gc79570f37c8f URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: c79570f37c8f60746cb70b5573c0f12e08d11ec2 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ beaglebone-black | arm | lab-broonie | gcc-10 | omap2plus_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a23890b46bdc0b82e860f
Results: 51 PASS, 4 FAIL, 1 SKIP Full config: omap2plus_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.176-658-gc79570f37…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.176-658-gc79570f37…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a23890b46bdc0b82e8644
failing since 84 days (last pass: v5.10.167-127-g921934d621e4, first fail: v5.10.167-139-gf9519a5a1701) 2023-05-09T10:42:00.711718 <8>[ 19.368182] <LAVA_SIGNAL_ENDRUN 0_dmesg 435375_1.5.2.4.1> 2023-05-09T10:42:00.824282 / # # 2023-05-09T10:42:00.927450 export SHELL=/bin/sh 2023-05-09T10:42:00.928077 # 2023-05-09T10:42:01.029707 / # export SHELL=/bin/sh. /lava-435375/environment 2023-05-09T10:42:01.030456 2023-05-09T10:42:01.132595 / # . /lava-435375/environment/lava-435375/bin/lava-test-runner /lava-435375/1 2023-05-09T10:42:01.134140 2023-05-09T10:42:01.137697 / # /lava-435375/bin/lava-test-runner /lava-435375/1 2023-05-09T10:42:01.242261 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-12b-c...4020-octopus | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a309a155bdcf2092e88a2
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.176-658-gc79570f37…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.176-658-gc79570f37…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a309a155bdcf2092e88a7
failing since 40 days (last pass: v5.10.176-61-g2332301f1fab4, first fail: v5.10.176-104-g2b4187983740) 2023-05-09T11:37:49.358799 + set +x 2023-05-09T11:37:49.365232 <8>[ 14.621744] <LAVA_SIGNAL_ENDRUN 0_dmesg 10255618_1.4.2.3.1> 2023-05-09T11:37:49.469841 / # # 2023-05-09T11:37:49.570377 export SHELL=/bin/sh 2023-05-09T11:37:49.570537 # 2023-05-09T11:37:49.670984 / # export SHELL=/bin/sh. /lava-10255618/environment 2023-05-09T11:37:49.671148 2023-05-09T11:37:49.771638 / # . /lava-10255618/environment/lava-10255618/bin/lava-test-runner /lava-10255618/1 2023-05-09T11:37:49.771933 2023-05-09T11:37:49.776564 / # /lava-10255618/bin/lava-test-runner /lava-10255618/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ hp-x360-14-G1-sona | x86_64 | lab-collabora | gcc-10 | x86_64_defcon...6-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2a5961a2ebeb042e85e6
Results: 6 PASS, 1 FAIL, 0 SKIP Full config: x86_64_defconfig+x86-chromebook Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.176-658-gc79570f37…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.176-658-gc79570f37…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2a5961a2ebeb042e85eb
failing since 40 days (last pass: v5.10.176-61-g2332301f1fab4, first fail: v5.10.176-104-g2b4187983740) 2023-05-09T11:11:02.204160 <8>[ 12.797646] <LAVA_SIGNAL_ENDRUN 0_dmesg 10255652_1.4.2.3.1> 2023-05-09T11:11:02.207697 + set +x 2023-05-09T11:11:02.313170 2023-05-09T11:11:02.414779 / # #export SHELL=/bin/sh 2023-05-09T11:11:02.415477 2023-05-09T11:11:02.516032 / # export SHELL=/bin/sh. /lava-10255652/environment 2023-05-09T11:11:02.516215 2023-05-09T11:11:02.616762 / # . /lava-10255652/environment/lava-10255652/bin/lava-test-runner /lava-10255652/1 2023-05-09T11:11:02.617023 2023-05-09T11:11:02.622308 / # /lava-10255652/bin/lava-test-runner /lava-10255652/1 ... (12 line(s) more) platform | arch | lab | compiler | defconfig | regressions -----------------------------+--------+---------------+----------+------------------------------+------------ sun8i-h3-libretech-all-h3-cc | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a239952a8f6803d2e8672
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: multi_v7_defconfig Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.176-658-gc79570f37…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.176-658-gc79570f37…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a239952a8f6803d2e8677
failing since 96 days (last pass: v5.10.165-139-gefb57ce0f880, first fail: v5.10.165-149-ge30e8271d674) 2023-05-09T10:42:08.762928 / # # 2023-05-09T10:42:08.864840 export SHELL=/bin/sh 2023-05-09T10:42:08.865358 # 2023-05-09T10:42:08.966680 / # export SHELL=/bin/sh. /lava-3567980/environment 2023-05-09T10:42:08.967087 2023-05-09T10:42:09.068445 / # . /lava-3567980/environment/lava-3567980/bin/lava-test-runner /lava-3567980/1 2023-05-09T10:42:09.069154 2023-05-09T10:42:09.075469 / # /lava-3567980/bin/lava-test-runner /lava-3567980/1 2023-05-09T10:42:09.173304 + export 'TESTRUN_ID=1_bootrr' 2023-05-09T10:42:09.173565 + cd /lava-3567980/1/tests/1_bootrr ... (10 line(s) more)
1 year, 9 months
1
0
0
0
stable-rc/queue/4.19 baseline: 129 runs, 31 regressions (v4.19.279-311-g22b8f2aae234)
by kernelci.org bot
stable-rc/queue/4.19 baseline: 129 runs, 31 regressions (v4.19.279-311-g22b8f2aae234) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson-gxbb-p200 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | defconfig | 1 sun50i-h6-pine-h64 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 sun50i-h6-pine-h64 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F4.19/kernel/v4.19.27…
Test: baseline Tree: stable-rc Branch: queue/4.19 Describe: v4.19.279-311-g22b8f2aae234 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 22b8f2aae2349c859e1d132680ee7025fc52b257 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson-gxbb-p200 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2b3cb99c5d3e1e2e85ee
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2b3cb99c5d3e1e2e85f3
new failure (last pass: v4.19.279-310-gef81e89270c6) 2023-05-09T11:14:46.066344 /# 2023-05-09T11:14:46.172484 # #export SHELL=/bin/sh 2023-05-09T11:14:46.174069 2023-05-09T11:14:46.277687 / # export SHELL=/bin/sh. /lava-3568054/environment 2023-05-09T11:14:46.279330 2023-05-09T11:14:46.382733 / # . /lava-3568054/environment/lava-3568054/bin/lava-test-runner /lava-3568054/1 2023-05-09T11:14:46.385515 2023-05-09T11:14:46.392776 / # /lava-3568054/bin/lava-test-runner /lava-3568054/1 2023-05-09T11:14:46.447619 + export 'TESTRUN_ID=1_bootrr' 2023-05-09T11:14:46.448683 + cd /lava-3568054/1/tests/1_bootrr ... (17 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-khadas-vim | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a259af60bf5f6f62e8628
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a259af60bf5f6f62e862d
new failure (last pass: v4.19.279-310-gef81e89270c6) 2023-05-09T10:50:40.179299 <8>[ 15.418068] <LAVA_SIGNAL_ENDRUN 0_dmesg 3568036_1.5.2.4.1> 2023-05-09T10:50:40.284541 / # # 2023-05-09T10:50:40.386445 export SHELL=/bin/sh 2023-05-09T10:50:40.386955 # 2023-05-09T10:50:40.488301 / # export SHELL=/bin/sh. /lava-3568036/environment 2023-05-09T10:50:40.488721 2023-05-09T10:50:40.488960 / # <6>[ 15.659819] [drm] Cannot find any crtc or sizes 2023-05-09T10:50:40.590325 . /lava-3568036/environment/lava-3568036/bin/lava-test-runner /lava-3568036/1 2023-05-09T10:50:40.591038 2023-05-09T10:50:40.595680 / # /lava-3568036/bin/lava-test-runner /lava-3568036/1 ... (18 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a26c70bbc83a8f32e85f7
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a26c70bbc83a8f32e85f8
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a26cbdc3658ea1f2e85ed
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a26cbdc3658ea1f2e85ee
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2986769a33e9c92e85fe
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2986769a33e9c92e85ff
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a29b023829f6d7c2e861b
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a29b023829f6d7c2e861c
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a272732d4e02a0a2e85e7
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a272732d4e02a0a2e85e8
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a27f92c40662dcc2e8665
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a27f92c40662dcc2e8666
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a26c4bb1cdf3e422e85f9
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a26c4bb1cdf3e422e85fa
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a26ce0bbc83a8f32e866e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a26ce0bbc83a8f32e866f
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2922410c117dbf2e85fc
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2922410c117dbf2e85fd
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2ac6db1f3df3d12e8624
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2ac6db1f3df3d12e8625
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a26fc739a75b25b2e85e7
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a26fc739a75b25b2e85e8
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a28500fa4b7b1b12e85ff
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a28500fa4b7b1b12e8600
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a26c50bbc83a8f32e85e6
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a26c50bbc83a8f32e85e7
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a26c80bbc83a8f32e85fa
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a26c80bbc83a8f32e85fb
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a295eaff69607db2e8617
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a295eaff69607db2e8618
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a29ae23829f6d7c2e8618
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a29ae23829f6d7c2e8619
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a27122da2f4baba2e85f9
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a27122da2f4baba2e85fa
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a27d1fcfd3798f22e8638
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a27d1fcfd3798f22e8639
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a26c60bbc83a8f32e85e9
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a26c60bbc83a8f32e85ea
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a26ccf25121534f2e85fb
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a26ccf25121534f2e85fc
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2972aa197db3872e85fa
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2972aa197db3872e85fb
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-broonie | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a2a76ad536d38ed2e85f2
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a2a76ad536d38ed2e85f3
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a27260dd276e3422e860e
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a27260dd276e3422e860f
failing since 364 days (last pass: v4.19.241-58-g5e77acf6dbb6, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/645a28125360082c522e8610
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.login:
https://kernelci.org/test/case/id/645a28125360082c522e8611
failing since 364 days (last pass: v4.19.241-58-g8b40d487da7e, first fail: v4.19.241-83-g0ec5709aa1da) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 2 Details:
https://kernelci.org/test/plan/id/645a25bec526d7273d2e8611
Results: 77 PASS, 5 FAIL, 1 SKIP Full config: defconfig+arm64-chromebook Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.rockchip-usb2phy1-probed:
https://kernelci.org/test/case/id/645a25bec526d7273d2e8617
failing since 56 days (last pass: v4.19.275-252-gcb3c41fc75db9, first fail: v4.19.276-34-ge787294ce440f) 2023-05-09T10:51:30.950819 /lava-10255958/1/../bin/lava-test-case * baseline.bootrr.rockchip-usb2phy0-probed:
https://kernelci.org/test/case/id/645a25bec526d7273d2e8618
failing since 56 days (last pass: v4.19.275-252-gcb3c41fc75db9, first fail: v4.19.276-34-ge787294ce440f) 2023-05-09T10:51:28.913328 <8>[ 35.391144] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy-driver-present RESULT=pass> 2023-05-09T10:51:29.928977 /lava-10255958/1/../bin/lava-test-case 2023-05-09T10:51:29.938205 <8>[ 36.416482] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-usb2phy0-probed RESULT=fail> platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ sun50i-a64-pine64-plus | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2bc80591c3f72b2e85eb
Results: 23 PASS, 16 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2bc80591c3f72b2e8610
failing since 111 days (last pass: v4.19.268-49-g7ddcf2b97a4b, first fail: v4.19.269-521-g305d312d039a) 2023-05-09T11:16:46.317330 <8>[ 15.892344] <LAVA_SIGNAL_ENDRUN 0_dmesg 3568051_1.5.2.4.1> 2023-05-09T11:16:46.439089 / # # 2023-05-09T11:16:46.545689 export SHELL=/bin/sh 2023-05-09T11:16:46.547332 # 2023-05-09T11:16:46.650924 / # export SHELL=/bin/sh. /lava-3568051/environment 2023-05-09T11:16:46.652615 2023-05-09T11:16:46.756312 / # . /lava-3568051/environment/lava-3568051/bin/lava-test-runner /lava-3568051/1 2023-05-09T11:16:46.759211 2023-05-09T11:16:46.762481 / # /lava-3568051/bin/lava-test-runner /lava-3568051/1 2023-05-09T11:16:46.793364 + export 'TESTRUN_ID=1_bootrr' ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ sun50i-h6-pine-h64 | arm64 | lab-baylibre | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2597f60bf5f6f62e8612
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2597f60bf5f6f62e8617
failing since 112 days (last pass: v4.19.266-171-g3ff1cc101ea8, first fail: v4.19.269-521-g305d312d039a) 2023-05-09T10:50:36.947931 / # # 2023-05-09T10:50:37.049668 export SHELL=/bin/sh 2023-05-09T10:50:37.050135 # 2023-05-09T10:50:37.151528 / # export SHELL=/bin/sh. /lava-3568030/environment 2023-05-09T10:50:37.151966 2023-05-09T10:50:37.253395 / # . /lava-3568030/environment/lava-3568030/bin/lava-test-runner /lava-3568030/1 2023-05-09T10:50:37.254006 2023-05-09T10:50:37.259214 / # /lava-3568030/bin/lava-test-runner /lava-3568030/1 2023-05-09T10:50:37.329130 + export 'TESTRUN_ID=1_bootrr' 2023-05-09T10:50:37.329616 + cd /lava-3568030<8>[ 15.633389] <LAVA_SIGNAL_STARTRUN 1_bootrr 3568030_1.5.2.4.5> ... (11 line(s) more) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ sun50i-h6-pine-h64 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/645a2595f60bf5f6f62e8604
Results: 5 PASS, 1 FAIL, 1 SKIP Full config: defconfig Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110) Plain log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.279-311-g22b8f2aae…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2023…
* baseline.bootrr.deferred-probe-empty:
https://kernelci.org/test/case/id/645a2595f60bf5f6f62e8609
failing since 112 days (last pass: v4.19.266-171-g3ff1cc101ea8, first fail: v4.19.269-521-g305d312d039a) 2023-05-09T10:50:40.060948 / # # 2023-05-09T10:50:40.161598 export SHELL=/bin/sh 2023-05-09T10:50:40.161889 # 2023-05-09T10:50:40.262421 / # export SHELL=/bin/sh. /lava-10255941/environment 2023-05-09T10:50:40.262588 2023-05-09T10:50:40.363100 / # . /lava-10255941/environment/lava-10255941/bin/lava-test-runner /lava-10255941/1 2023-05-09T10:50:40.363307 2023-05-09T10:50:40.374651 / # /lava-10255941/bin/lava-test-runner /lava-10255941/1 2023-05-09T10:50:40.438675 + export 'TESTRUN_ID=1_bootrr' 2023-05-09T10:50:40.438782 + cd /lava-1025594<8>[ 15.629114] <LAVA_SIGNAL_STARTRUN 1_bootrr 10255941_1.5.2.4.5> ... (11 line(s) more)
1 year, 9 months
1
0
0
0
← Newer
1
...
136
137
138
139
140
141
142
...
188
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
Results per page:
10
25
50
100
200