Hello,
On Fri, 6 Dec 2024, David Laight wrote:
> The intention of the code seems to be that the minimum table
> size should be 256 (1 << min).
> However the code uses max = clamp(20, 5, max_avail) which implies
Actually, it tries to reduce max=20 (max possible) below
max_avail: [8 .. max_avail]. Not sure what 5 is here...
> the author thought max_avail could be less than 5.
> But clamp(val, min, max) is only well defined for max >= min.
> If max < min whether is returns min or max depends on the order of
> the comparisons.
Looks like max_avail goes below 8 ? What value you see
for such small system?
> Change to clamp(max_avail, 5, 20) which has the expected behaviour.
It should be clamp(max_avail, 8, 20)
>
> Replace the clamp_val() on the line below with clamp().
> clamp_val() is just 'an accident waiting to happen' and not needed here.
OK
> Fixes: 4f325e26277b6
> (Although I actually doubt the code is used on small memory systems.)
>
> Detected by compile time checks added to clamp(), specifically:
> minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
Existing or new check? Does it happen that max_avail
is a constant, so that a compile check triggers?
>
> Signed-off-by: David Laight <david.laight(a)aculab.com>
The code below looks ok to me but can you change the
comments above to more correctly specify the values and if the
problem is that max_avail goes below 8 (min).
> ---
> net/netfilter/ipvs/ip_vs_conn.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/net/netfilter/ipvs/ip_vs_conn.c b/net/netfilter/ipvs/ip_vs_conn.c
> index 98d7dbe3d787..c0289f83f96d 100644
> --- a/net/netfilter/ipvs/ip_vs_conn.c
> +++ b/net/netfilter/ipvs/ip_vs_conn.c
> @@ -1495,8 +1495,8 @@ int __init ip_vs_conn_init(void)
> max_avail -= 2; /* ~4 in hash row */
> max_avail -= 1; /* IPVS up to 1/2 of mem */
> max_avail -= order_base_2(sizeof(struct ip_vs_conn));
More likely we can additionally clamp max_avail here:
max_avail = max(min, max_avail);
But your solution solves the problem with less lines.
> - max = clamp(max, min, max_avail);
> - ip_vs_conn_tab_bits = clamp_val(ip_vs_conn_tab_bits, min, max);
> + max = clamp(max_avail, min, max);
> + ip_vs_conn_tab_bits = clamp(ip_vs_conn_tab_bits, min, max);
> ip_vs_conn_tab_size = 1 << ip_vs_conn_tab_bits;
> ip_vs_conn_tab_mask = ip_vs_conn_tab_size - 1;
>
> --
> 2.17.1
Regards
--
Julian Anastasov <ja(a)ssi.bg>
Total jobs: 281
Total errors: 101 (35.94%)
LAVA errors: 1 (0.36%)
Test errors: 73 (25.98%)
Job errors: 19 (6.76%)
Infra errors: 3 (1.07%)
Canceled jobs: 5 (1.78%)
Device type: sm8550-hdk
Total jobs: 19
Total errors: 19 (100.00%)
Error type: Job
Error count: 19 (100.00%)
Error: No match for error type 'Job', message 'login-action timed out after 875 seconds'
Count: 8 (42.11%)
IDs:
sm8550-hdk-01:
8015974 8015975 8015984 8016008 8016034
8017224 8017227 8017414
Error: wait for prompt timed out
Count: 5 (26.32%)
IDs:
sm8550-hdk-01:
8015983 8016023 8016324 8017223 8017402
Error: No match for error type 'Job', message 'login-action timed out after 868 seconds'
Count: 1 (5.26%)
IDs:
sm8550-hdk-01:
8017399
Error: No match for error type 'Job', message 'login-action timed out after 861 seconds'
Count: 1 (5.26%)
IDs:
sm8550-hdk-01:
8017226
Error: No match for error type 'Job', message 'login-action timed out after 860 seconds'
Count: 1 (5.26%)
IDs:
sm8550-hdk-01:
8017225
Error: No match for error type 'Job', message 'login-action timed out after 874 seconds'
Count: 2 (10.53%)
IDs:
sm8550-hdk-01:
8016004 8016022
Error: No match for error type 'Job', message 'login-action timed out after 851 seconds'
Count: 1 (5.26%)
IDs:
sm8550-hdk-01:
8016021
Device type: qrb5165-rb5
Total jobs: 78
Total errors: 17 (21.79%)
Error type: Test
Error count: 12 (15.38%)
Error: No match for error type 'Test', message 'tradefed - adb device lost[f11b68eb]'
Count: 1 (1.28%)
IDs:
rb5-05:
8017408
Error: Device NOT found!
Count: 1 (1.28%)
IDs:
rb5-03:
8017353
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 590 seconds'
Count: 1 (1.28%)
IDs:
rb5-03:
8017173
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 587 seconds'
Count: 1 (1.28%)
IDs:
rb5-07:
8016373
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 297 seconds'
Count: 1 (1.28%)
IDs:
rb5-03:
8016369
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 4 (5.13%)
IDs:
rb5-03:
8016340 8016343 8016356 8016367
Error: No match for error type 'Test', message 'tradefed - adb device lost[4fc7b22]'
Count: 1 (1.28%)
IDs:
rb5-06:
8015982
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 597 seconds'
Count: 1 (1.28%)
IDs:
rb5-03:
8015968
Error: No match for error type 'Test', message 'tradefed - adb device lost[74d67c95]'
Count: 1 (1.28%)
IDs:
rb5-03:
8015920
Error type: Infrastructure
Error count: 2 (2.56%)
Error: Connection closed
Count: 1 (1.28%)
IDs:
rb5-05:
8016436
Error: No match for error type 'Infrastructure', message 'Unable to run: ['docker', 'exec', 'lava-8015998-3.1-63c4cc77-7251-45ac-a948-b6ee68e2f18e', 'fastboot', '-s', 'f11b68eb', 'oem', 'select-display-panel', 'hdmi']'
Count: 1 (1.28%)
IDs:
rb5-05:
8015998
Error type: Canceled
Error count: 2 (2.56%)
Error: The job was canceled
Count: 2 (2.56%)
IDs:
rb5-06:
8016001 8016017
Error type: Bug
Error count: 1 (1.28%)
Error: No match for error type 'Bug', message 'Failed to share device '/dev/bus/usb/002/033' to docker container lava-8015995-3.1-869b7f70-7ed4-4d42-85f8-ca9bb226c356'
Count: 1 (1.28%)
IDs:
rb5-05:
8015995
Device type: hi6220-hikey-r2
Total jobs: 71
Total errors: 47 (66.20%)
Error type: Test
Error count: 47 (66.20%)
Error: No match for error type 'Test', message 'The network seems not available, as the ping command failed'
Count: 36 (50.70%)
IDs:
hikey-6220-r2-01:
8016722 8016728 8016730 8016731 8016735
8016736 8016738 8017041 8017049 8017059
8017063 8017080 8017403 8017405
hikey-6220-r2-05:
8016737 8016743 8016746 8016748 8016749
8016750 8016752 8016755 8016757 8016785
8016786 8016801 8017043 8017050 8017062
8017067 8017086 8017087 8017367 8017372
8017379 8017383
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 597 seconds'
Count: 1 (1.41%)
IDs:
hikey-6220-r2-06:
8017375
Error: No match for error type 'Test', message 'tradefed - adb device lost[7B1579B5003E507A]'
Count: 3 (4.23%)
IDs:
hikey-6220-r2-05:
8016726 8017070 8017374
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 1 (1.41%)
IDs:
hikey-6220-r2-03:
8017363
Error: No match for error type 'Test', message 'tradefed - adb device lost[4595FE84003F72FC]'
Count: 2 (2.82%)
IDs:
hikey-6220-r2-04:
8016800 8016804
Error: Device NOT found!
Count: 2 (2.82%)
IDs:
hikey-6220-r2-03:
8016751
hikey-6220-r2-04:
8016803
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 586 seconds'
Count: 1 (1.41%)
IDs:
hikey-6220-r2-01:
8016733
Error: No match for error type 'Test', message 'tradefed - adb device lost[191FC75C003312EE]'
Count: 1 (1.41%)
IDs:
hikey-6220-r2-06:
8016723
Device type: dragonboard-845c
Total jobs: 101
Total errors: 18 (17.82%)
Error type: Test
Error count: 14 (13.86%)
Error: Device NOT found!
Count: 4 (3.96%)
IDs:
db845c-09:
8015810 8016350 8017079 8017167
Error: No match for error type 'Test', message 'tradefed - adb device lost[d966d3f5]'
Count: 1 (0.99%)
IDs:
db845c-03:
8016401
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 298 seconds'
Count: 2 (1.98%)
IDs:
db845c-01:
8015934
db845c-07:
8016393
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 4 (3.96%)
IDs:
db845c-09:
8015842 8015846 8015867 8016376
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 294 seconds'
Count: 1 (0.99%)
IDs:
db845c-07:
8015935
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 296 seconds'
Count: 1 (0.99%)
IDs:
db845c-03:
8015897
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 595 seconds'
Count: 1 (0.99%)
IDs:
db845c-09:
8015816
Error type: Infrastructure
Error count: 1 (0.99%)
Error: fastboot-flash-action timed out
Count: 1 (0.99%)
IDs:
db845c-07:
8016336
Error type: Canceled
Error count: 3 (2.97%)
Error: The job was canceled
Count: 3 (2.97%)
IDs:
db845c-03:
8015994
db845c-07:
8015997
db845c-09:
8016000
Device type: hi960-hikey
Total jobs: 11
Total errors: 0 (0.00%)
Device type: rk3399-rock-pi-4b
Total jobs: 1
Total errors: 0 (0.00%)
Tejun probably reads everything to linux-block, but let's CC him explicitly.
block/blk-iocost.c
2222 TRACE_IOCG_PATH(iocg_idle, iocg, now,
2223 atomic64_read(&iocg->active_period),
2224 atomic64_read(&ioc->cur_period), vtime);
2225 __propagate_weights(iocg, 0, 0, false, now);
^
Why is "active" zero? __propagate_weights() does a clamp() to 1 as minimum and
we've added new build time asserts so this breaks the build.
2226 list_del_init(&iocg->active_list);
The other way to solve this would be to something stupid like:
diff --git a/block/blk-iocost.c b/block/blk-iocost.c
index 384aa15e8260..551edd2f661f 100644
--- a/block/blk-iocost.c
+++ b/block/blk-iocost.c
@@ -1094,7 +1094,7 @@ static void __propagate_weights(struct ioc_gq *iocg, u32 active, u32 inuse,
* @active. An active internal node's inuse is solely determined by the
* inuse to active ratio of its children regardless of @inuse.
*/
- if (list_empty(&iocg->active_list) && iocg->child_active_sum) {
+ if ((list_empty(&iocg->active_list) && iocg->child_active_sum) || active == 0) {
inuse = DIV64_U64_ROUND_UP(active * iocg->child_inuse_sum,
iocg->child_active_sum);
} else {
But that seems really stupid.
regards,
dan carpenter
On Wed, Dec 04, 2024 at 04:11:33PM +0000, David Laight wrote:
> From: Dan Carpenter <dan.carpenter(a)linaro.org>
> > Sent: 04 December 2024 14:39
> >
> > Let's add David to the Cc list because he's the expert on clamp().
>
> The traceback info misses the important point.
> I can't see the 'inlined from line 2225' message.
>
> We have (line 1084):
> static void __propagate_weights(struct ioc_gq *iocg, u32 active, u32 inuse,
> bool save, struct ioc_now *now)
> followed by:
> inuse = clamp_t(u32, inuse, 1, active);
>
> But line 2225 has:
> __propagate_weights(iocg, 0, 0, false, now);
>
> With aggressive inlining the compiler sees 'active == 0'
> and the lo > hi test correctly triggers.
>
> The previous version only verified 'lo <= hi' if it was a constant
> integer expression - which it isn't here.
>
> No idea what the code is trying to do, nor what value it expects
> clamp(val, 1, 0) to generate - likely to be 0 or 1 depending on
> the order of the comparisons.
>
> David
>
> -
> Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
> Registration No: 1397386 (Wales)
Total jobs: 181
Total errors: 61 (33.70%)
LAVA errors: 3 (1.66%)
Test errors: 25 (13.81%)
Job errors: 18 (9.94%)
Infra errors: 14 (7.73%)
Canceled jobs: 1 (0.55%)
Device type: dragonboard-845c
Total jobs: 56
Total errors: 14 (25.00%)
Error type: Infrastructure
Error count: 3 (5.36%)
Error: No match for error type 'Infrastructure', message 'Unable to run: ['docker', 'exec', 'lava-8015408-3.1-b96d7a11-fe08-4710-b424-745f2253161b', 'fastboot', '-s', '25564f71', 'format:ext4', 'metadata']'
Count: 1 (1.79%)
IDs:
db845c-08:
8015408
Error: No match for error type 'Infrastructure', message 'Unable to run: ['docker', 'exec', 'lava-8015404-3.1-8a927157-10c2-4b5f-8bb8-30f868f6dcfb', 'fastboot', '-s', '476f370a', 'format:ext4', 'metadata']'
Count: 1 (1.79%)
IDs:
db845c-10:
8015404
Error: No match for error type 'Infrastructure', message 'boot-fastboot timed out after 882 seconds'
Count: 1 (1.79%)
IDs:
db845c-07:
8012430
Error type: Canceled
Error count: 1 (1.79%)
Error: The job was canceled
Count: 1 (1.79%)
IDs:
db845c-07:
8015396
Error type: Test
Error count: 10 (17.86%)
Error: No match for error type 'Test', message 'lava-test-interactive timed out after 1500 seconds'
Count: 2 (3.57%)
IDs:
db845c-09:
8012705 8012709
Error: No match for error type 'Test', message 'tradefed - adb device lost[c7cf1849]'
Count: 1 (1.79%)
IDs:
db845c-07:
8012645
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 593 seconds'
Count: 1 (1.79%)
IDs:
db845c-09:
8012417
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 2 (3.57%)
IDs:
db845c-09:
8012372 8012407
Error: No match for error type 'Test', message 'tradefed - adb device lost[b6b742b9]'
Count: 1 (1.79%)
IDs:
db845c-01:
8012390
Error: Device NOT found!
Count: 1 (1.79%)
IDs:
db845c-09:
8012370
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 596 seconds'
Count: 1 (1.79%)
IDs:
db845c-09:
8012367
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 53998 seconds'
Count: 1 (1.79%)
IDs:
db845c-08:
7994679
Device type: sm8550-hdk
Total jobs: 22
Total errors: 22 (100.00%)
Error type: Job
Error count: 17 (77.27%)
Error: No match for error type 'Job', message 'login-action timed out after 875 seconds'
Count: 11 (50.00%)
IDs:
sm8550-hdk-01:
8012783 8012784 8012785 8014489 8014490
8014759 8014760 8014761 8015279 8015281
8015388
Error: wait for prompt timed out
Count: 3 (13.64%)
IDs:
sm8550-hdk-01:
8012786 8015277 8015280
Error: No match for error type 'Job', message 'login-action timed out after 876 seconds'
Count: 1 (4.55%)
IDs:
sm8550-hdk-01:
8015278
Error: No match for error type 'Job', message 'login-action timed out after 866 seconds'
Count: 1 (4.55%)
IDs:
sm8550-hdk-01:
8014476
Error: No match for error type 'Job', message 'login-action timed out after 860 seconds'
Count: 1 (4.55%)
IDs:
sm8550-hdk-01:
8012782
Error type: Infrastructure
Error count: 4 (18.18%)
Error: No match for error type 'Infrastructure', message 'fastboot-boot-commands timed out after 901 seconds'
Count: 2 (9.09%)
IDs:
sm8550-hdk-01:
8012830 8014764
Error: No match for error type 'Infrastructure', message 'boot-fastboot timed out after 882 seconds'
Count: 1 (4.55%)
IDs:
sm8550-hdk-01:
8012833
Error: No match for error type 'Infrastructure', message 'boot-fastboot timed out after 883 seconds'
Count: 1 (4.55%)
IDs:
sm8550-hdk-01:
8012832
Error type: Test
Error count: 1 (4.55%)
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 893 seconds'
Count: 1 (4.55%)
IDs:
sm8550-hdk-01:
8012831
Device type: qrb5165-rb5
Total jobs: 102
Total errors: 24 (23.53%)
Error type: Test
Error count: 13 (12.75%)
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 5 (4.90%)
IDs:
rb5-03:
8012546 8012760 8015103
rb5-06:
8014728
rb5-07:
8015283
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 597 seconds'
Count: 1 (0.98%)
IDs:
rb5-03:
8015110
Error: Device NOT found!
Count: 2 (1.96%)
IDs:
rb5-03:
8012693 8012824
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 596 seconds'
Count: 1 (0.98%)
IDs:
rb5-07:
8012799
Error: No match for error type 'Test', message 'tradefed - adb device lost[d8a1879f]'
Count: 1 (0.98%)
IDs:
rb5-07:
8012791
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 297 seconds'
Count: 1 (0.98%)
IDs:
rb5-07:
8012762
Error: No match for error type 'Test', message 'tradefed - adb device lost[93dcfd96]'
Count: 1 (0.98%)
IDs:
rb5-01:
8012571
Error: No match for error type 'Test', message 'tradefed - adb device lost[f11b68eb]'
Count: 1 (0.98%)
IDs:
rb5-05:
8012568
Error type: Infrastructure
Error count: 7 (6.86%)
Error: Reboot failed
Count: 1 (0.98%)
IDs:
rb5-07:
8014477
Error: Connection closed
Count: 4 (3.92%)
IDs:
rb5-05:
8012589 8012591 8012696 8012773
Error: fastboot-flash-action timed out
Count: 2 (1.96%)
IDs:
rb5-07:
8012749 8012755
Error type: Bug
Error count: 3 (2.94%)
Error: No match for error type 'Bug', message 'Failed to share device '/dev/bus/usb/001/110' to docker container lava-8012819-3.1-c2aca304-d8bb-4831-97cc-92ad7035532e'
Count: 1 (0.98%)
IDs:
rb5-03:
8012819
Error: No match for error type 'Bug', message 'Failed to share device '/dev/bus/usb/001/109' to docker container lava-8012703-3.1-bb901daf-0526-47b7-b916-d0614013ed98'
Count: 1 (0.98%)
IDs:
rb5-01:
8012703
Error: No match for error type 'Bug', message 'Failed to share device '/dev/bus/usb/002/085' to docker container lava-8012702-3.1-5eef91bf-c83a-41e2-ba59-94df4bdb3e7e'
Count: 1 (0.98%)
IDs:
rb5-05:
8012702
Error type: Job
Error count: 1 (0.98%)
Error: No match for error type 'Job', message 'job-cleanup timed out after 300 seconds'
Count: 1 (0.98%)
IDs:
rb5-07:
8012659
Device type: rk3399-rock-pi-4b
Total jobs: 1
Total errors: 1 (100.00%)
Error type: Test
Error count: 1 (100.00%)
Error: lava-test-shell timed out
Count: 1 (100.00%)
IDs:
rockpi-08:
8015076
Total jobs: 108
Total errors: 18 (16.67%)
LAVA errors: 0 (0.00%)
Test errors: 17 (15.74%)
Job errors: 0 (0.00%)
Infra errors: 1 (0.93%)
Canceled jobs: 0 (0.00%)
Device type: dragonboard-845c
Total jobs: 76
Total errors: 6 (7.89%)
Error type: Test
Error count: 5 (6.58%)
Error: No match for error type 'Test', message 'tradefed - adb device lost[fbf682a2]'
Count: 1 (1.32%)
IDs:
db845c-09:
8012335
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 2 (2.63%)
IDs:
db845c-09:
7994273 8012332
Error: Device NOT found!
Count: 2 (2.63%)
IDs:
db845c-09:
7993276 7993302
Error type: Infrastructure
Error count: 1 (1.32%)
Error: fastboot-flash-action timed out
Count: 1 (1.32%)
IDs:
db845c-01:
7995124
Device type: qrb5165-rb5
Total jobs: 26
Total errors: 7 (26.92%)
Error type: Test
Error count: 7 (26.92%)
Error: Device NOT found!
Count: 4 (15.38%)
IDs:
rb5-03:
8012327 8012380 8012445
rb5-07:
8012365
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 2 (7.69%)
IDs:
rb5-03:
8012377
rb5-05:
8012378
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 295 seconds'
Count: 1 (3.85%)
IDs:
rb5-07:
8012321
Device type: hi6220-hikey-r2
Total jobs: 5
Total errors: 5 (100.00%)
Error type: Test
Error count: 5 (100.00%)
Error: No match for error type 'Test', message 'tradefed - adb device lost[235D989C003B0752]'
Count: 2 (40.00%)
IDs:
hikey-6220-r2-03:
8011897 8012169
Error: No match for error type 'Test', message 'tradefed - adb device lost[191FC75C003312EE]'
Count: 1 (20.00%)
IDs:
hikey-6220-r2-06:
8012151
Error: No match for error type 'Test', message 'The network seems not available, as the ping command failed'
Count: 2 (40.00%)
IDs:
hikey-6220-r2-02:
8012129
hikey-6220-r2-05:
8012147
Device type: hi960-hikey
Total jobs: 1
Total errors: 0 (0.00%)
Total jobs: 95
Total errors: 21 (22.11%)
LAVA errors: 1 (1.05%)
Test errors: 18 (18.95%)
Job errors: 0 (0.00%)
Infra errors: 2 (2.11%)
Canceled jobs: 0 (0.00%)
Device type: hi6220-hikey-r2
Total jobs: 3
Total errors: 3 (100.00%)
Error type: Test
Error count: 3 (100.00%)
Error: No match for error type 'Test', message 'tradefed - adb device lost[4595FE84003F72FC]'
Count: 2 (66.67%)
IDs:
hikey-6220-r2-04:
8011883 8011898
Error: No match for error type 'Test', message 'The network seems not available, as the ping command failed'
Count: 1 (33.33%)
IDs:
hikey-6220-r2-05:
8011886
Device type: qrb5165-rb5
Total jobs: 3
Total errors: 1 (33.33%)
Error type: Bug
Error count: 1 (33.33%)
Error: No match for error type 'Bug', message 'Failed to share device '/dev/bus/usb/001/013' to docker container lava-8011891-3.1-a0867488-92e6-4513-a6ea-0d57f8e0c3a1'
Count: 1 (33.33%)
IDs:
rb5-06:
8011891
Device type: dragonboard-845c
Total jobs: 76
Total errors: 13 (17.11%)
Error type: Test
Error count: 13 (17.11%)
Error: No match for error type 'Test', message 'lava-test-interactive timed out after 1500 seconds'
Count: 2 (2.63%)
IDs:
db845c-04:
8011893
db845c-07:
8011890
Error: Device NOT found!
Count: 3 (3.95%)
IDs:
db845c-09:
7993206 7993235 7993265
Error: No match for error type 'Test', message 'The network seems not available, as the ping command failed'
Count: 2 (2.63%)
IDs:
db845c-03:
7993227
db845c-09:
7993261
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 4 (5.26%)
IDs:
db845c-09:
7993205 7993219 7993220 7993224
Error: No match for error type 'Test', message 'tradefed - adb device lost[d966d3f5]'
Count: 1 (1.32%)
IDs:
db845c-03:
7993201
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 53998 seconds'
Count: 1 (1.32%)
IDs:
db845c-01:
7993195
Device type: juno-r2
Total jobs: 1
Total errors: 0 (0.00%)
Device type: x86
Total jobs: 1
Total errors: 0 (0.00%)
Device type: hi960-hikey
Total jobs: 11
Total errors: 4 (36.36%)
Error type: Test
Error count: 2 (18.18%)
Error: No match for error type 'Test', message 'The network seems not available, as the ping command failed'
Count: 2 (18.18%)
IDs:
hi960-hikey-04:
8009816 8010997
Error type: Infrastructure
Error count: 2 (18.18%)
Error: Connection closed
Count: 2 (18.18%)
IDs:
hi960-hikey-03:
8010968
hi960-hikey-04:
8010934
Total jobs: 137
Total errors: 30 (21.90%)
LAVA errors: 0 (0.00%)
Test errors: 20 (14.60%)
Job errors: 9 (6.57%)
Infra errors: 1 (0.73%)
Canceled jobs: 0 (0.00%)
Device type: dragonboard-845c
Total jobs: 99
Total errors: 16 (16.16%)
Error type: Test
Error count: 16 (16.16%)
Error: No match for error type 'Test', message 'The network seems not available, as the ping command failed'
Count: 8 (8.08%)
IDs:
db845c-03:
8010012 8010705 8010708
db845c-04:
8010478
db845c-07:
8010706
db845c-08:
8010466
db845c-09:
8010011 8010479
Error: No match for error type 'Test', message 'tradefed - adb device lost[fbf682a2]'
Count: 1 (1.01%)
IDs:
db845c-09:
8010090
Error: Device NOT found!
Count: 3 (3.03%)
IDs:
db845c-09:
8009802 8009893 8010015
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 4 (4.04%)
IDs:
db845c-09:
8009795 8009840 8009887 8009920
Device type: hi960-hikey
Total jobs: 17
Total errors: 5 (29.41%)
Error type: Test
Error count: 4 (23.53%)
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 28798 seconds'
Count: 1 (5.88%)
IDs:
hi960-hikey-04:
8010449
Error: No match for error type 'Test', message 'tradefed - adb device lost[47D27933024424E6]'
Count: 1 (5.88%)
IDs:
hi960-hikey-04:
8009951
Error: No match for error type 'Test', message 'The network seems not available, as the ping command failed'
Count: 1 (5.88%)
IDs:
hi960-hikey-03:
8009706
Error: No match for error type 'Test', message 'tradefed - adb device lost[279ABF68159019FF]'
Count: 1 (5.88%)
IDs:
hi960-hikey-03:
8009616
Error type: Infrastructure
Error count: 1 (5.88%)
Error: Connection closed
Count: 1 (5.88%)
IDs:
hi960-hikey-04:
8010408
Device type: sm8550-hdk
Total jobs: 9
Total errors: 9 (100.00%)
Error type: Job
Error count: 9 (100.00%)
Error: No match for error type 'Job', message 'login-action timed out after 875 seconds'
Count: 7 (77.78%)
IDs:
sm8550-hdk-01:
8010359 8010360 8010368 8010373 8010383
8010386 8010388
Error: wait for prompt timed out
Count: 2 (22.22%)
IDs:
sm8550-hdk-01:
8010361 8010387
Device type: qrb5165-rb5
Total jobs: 12
Total errors: 0 (0.00%)
Total jobs: 28
Total errors: 3 (10.71%)
LAVA errors: 0 (0.00%)
Test errors: 0 (0.00%)
Job errors: 3 (10.71%)
Infra errors: 0 (0.00%)
Canceled jobs: 0 (0.00%)
Device type: bcm2837-rpi-3-b-32
Total jobs: 7
Total errors: 0 (0.00%)
Device type: dragonboard-410c
Total jobs: 4
Total errors: 3 (75.00%)
Error type: Job
Error count: 3 (75.00%)
Error: No match for error type 'Job', message 'Unable to update image rootfs: 'mount: mount exited with status 32: mount: /sysroot: wrong fs type, bad option, bad superblock on /dev/sda, missing codepage or helper program, or other error.\n dmesg(1) may have more information after failed mount system call.''
Count: 3 (75.00%)
IDs:
dragonboard-410c-01:
4116269 4116287 4116295
Device type: dragonboard-845c
Total jobs: 5
Total errors: 0 (0.00%)
Device type: qemu
Total jobs: 4
Total errors: 0 (0.00%)
Device type: frdm-kw41z
Total jobs: 2
Total errors: 0 (0.00%)
Device type: frdm-k64f
Total jobs: 3
Total errors: 0 (0.00%)
Device type: docker
Total jobs: 2
Total errors: 0 (0.00%)
Device type: hi6220-hikey-r2
Total jobs: 1
Total errors: 0 (0.00%)
Total jobs: 188
Total errors: 51 (27.13%)
LAVA errors: 0 (0.00%)
Test errors: 39 (20.74%)
Job errors: 12 (6.38%)
Infra errors: 0 (0.00%)
Canceled jobs: 0 (0.00%)
Device type: sm8550-hdk
Total jobs: 11
Total errors: 11 (100.00%)
Error type: Job
Error count: 11 (100.00%)
Error: No match for error type 'Job', message 'login-action timed out after 875 seconds'
Count: 6 (54.55%)
IDs:
sm8550-hdk-01:
8010109 8010110 8010111 8010112 8010355
8010358
Error: No match for error type 'Job', message 'login-action timed out after 871 seconds'
Count: 2 (18.18%)
IDs:
sm8550-hdk-01:
8010108 8010354
Error: wait for prompt timed out
Count: 2 (18.18%)
IDs:
sm8550-hdk-01:
8010339 8010353
Error: No match for error type 'Job', message 'login-action timed out after 867 seconds'
Count: 1 (9.09%)
IDs:
sm8550-hdk-01:
8010340
Device type: qrb5165-rb5
Total jobs: 70
Total errors: 11 (15.71%)
Error type: Test
Error count: 11 (15.71%)
Error: No match for error type 'Test', message 'tradefed - adb device lost[74d67c95]'
Count: 1 (1.43%)
IDs:
rb5-03:
8010115
Error: Device NOT found!
Count: 6 (8.57%)
IDs:
rb5-03:
8009752 8009769 8009791 8009831 8009933
rb5-07:
8009971
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 3 (4.29%)
IDs:
rb5-03:
8009870 8009871 8009968
Error: No match for error type 'Test', message 'tradefed - adb device lost[f11b68eb]'
Count: 1 (1.43%)
IDs:
rb5-05:
8009788
Device type: hi6220-hikey-r2
Total jobs: 22
Total errors: 14 (63.64%)
Error type: Test
Error count: 13 (59.09%)
Error: No match for error type 'Test', message 'The network seems not available, as the ping command failed'
Count: 11 (50.00%)
IDs:
hikey-6220-r2-01:
8009611 8009699 8009731 8009733 8009741
hikey-6220-r2-05:
8009696 8009700 8009732 8009740 8009930
8009947
Error: No match for error type 'Test', message 'tradefed - adb device lost[8D6E5F00030E051]'
Count: 1 (4.55%)
IDs:
hikey-6220-r2-02:
8009742
Error: No match for error type 'Test', message 'tradefed - adb device lost[4595FE84003F72FC]'
Count: 1 (4.55%)
IDs:
hikey-6220-r2-04:
8009697
Error type: Job
Error count: 1 (4.55%)
Error: No match for error type 'Job', message 'login-action timed out after 880 seconds'
Count: 1 (4.55%)
IDs:
hikey-6220-r2-02:
8009615
Device type: dragonboard-845c
Total jobs: 65
Total errors: 8 (12.31%)
Error type: Test
Error count: 8 (12.31%)
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 1 (1.54%)
IDs:
db845c-09:
8009775
Error: No match for error type 'Test', message 'tradefed - adb device lost[fbf682a2]'
Count: 1 (1.54%)
IDs:
db845c-09:
8009719
Error: No match for error type 'Test', message 'The network seems not available, as the ping command failed'
Count: 3 (4.62%)
IDs:
db845c-01:
8009663
db845c-03:
8009664
db845c-08:
8009662
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 53998 seconds'
Count: 1 (1.54%)
IDs:
db845c-09:
7993188
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 53997 seconds'
Count: 2 (3.08%)
IDs:
db845c-07:
7993183
db845c-09:
7993139
Device type: hi960-hikey
Total jobs: 20
Total errors: 7 (35.00%)
Error type: Test
Error count: 7 (35.00%)
Error: No match for error type 'Test', message 'tradefed - adb device lost[57DD383701799F9A]'
Count: 4 (20.00%)
IDs:
hi960-hikey-05:
8009622 8009627 8009633 8009642
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 2 (10.00%)
IDs:
hi960-hikey-05:
8009625 8009630
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 597 seconds'
Count: 1 (5.00%)
IDs:
hi960-hikey-05:
8009618
Total jobs: 28
Total errors: 6 (21.43%)
LAVA errors: 0 (0.00%)
Test errors: 0 (0.00%)
Job errors: 2 (7.14%)
Infra errors: 4 (14.29%)
Canceled jobs: 0 (0.00%)
Device type: dragonboard-410c
Total jobs: 3
Total errors: 2 (66.67%)
Error type: Job
Error count: 2 (66.67%)
Error: No match for error type 'Job', message 'Unable to update image rootfs: 'mount: mount exited with status 32: mount: /sysroot: wrong fs type, bad option, bad superblock on /dev/sda, missing codepage or helper program, or other error.\n dmesg(1) may have more information after failed mount system call.''
Count: 2 (66.67%)
IDs:
dragonboard-410c-01:
4116219 4116239
Device type: dragonboard-845c
Total jobs: 4
Total errors: 0 (0.00%)
Device type: bcm2837-rpi-3-b-32
Total jobs: 5
Total errors: 0 (0.00%)
Device type: qemu
Total jobs: 4
Total errors: 0 (0.00%)
Device type: x15
Total jobs: 4
Total errors: 4 (100.00%)
Error type: Infrastructure
Error count: 4 (100.00%)
Error: Connection closed
Count: 4 (100.00%)
IDs:
x15-01:
4116201 4116210 4116214 4116221
Device type: frdm-kw41z
Total jobs: 2
Total errors: 0 (0.00%)
Device type: frdm-k64f
Total jobs: 3
Total errors: 0 (0.00%)
Device type: docker
Total jobs: 2
Total errors: 0 (0.00%)
Device type: hi6220-hikey-r2
Total jobs: 1
Total errors: 0 (0.00%)
Total jobs: 154
Total errors: 17 (11.04%)
LAVA errors: 1 (0.65%)
Test errors: 15 (9.74%)
Job errors: 0 (0.00%)
Infra errors: 1 (0.65%)
Canceled jobs: 0 (0.00%)
Device type: hi960-hikey
Total jobs: 5
Total errors: 2 (40.00%)
Error type: Test
Error count: 2 (40.00%)
Error: No match for error type 'Test', message 'tradefed - adb device lost[57DD383701799F9A]'
Count: 2 (40.00%)
IDs:
hi960-hikey-05:
8009543 8009567
Device type: dragonboard-845c
Total jobs: 102
Total errors: 8 (7.84%)
Error type: Test
Error count: 8 (7.84%)
Error: No match for error type 'Test', message 'lava-test-interactive timed out after 1500 seconds'
Count: 1 (0.98%)
IDs:
db845c-07:
8009138
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 3 (2.94%)
IDs:
db845c-07:
8008665
db845c-09:
8008639 8008658
Error: Device NOT found!
Count: 1 (0.98%)
IDs:
db845c-09:
8008659
Error: No match for error type 'Test', message 'tradefed - adb device lost[fbf682a2]'
Count: 1 (0.98%)
IDs:
db845c-09:
8008655
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 590 seconds'
Count: 1 (0.98%)
IDs:
db845c-01:
7993163
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 53998 seconds'
Count: 1 (0.98%)
IDs:
db845c-01:
7993129
Device type: qrb5165-rb5
Total jobs: 47
Total errors: 7 (14.89%)
Error type: Infrastructure
Error count: 1 (2.13%)
Error: Connection closed
Count: 1 (2.13%)
IDs:
rb5-05:
8009229
Error type: Test
Error count: 5 (10.64%)
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 598 seconds'
Count: 2 (4.26%)
IDs:
rb5-03:
8009220 8009222
Error: No match for error type 'Test', message 'tradefed - adb device lost[d8a1879f]'
Count: 1 (2.13%)
IDs:
rb5-07:
8008681
Error: No match for error type 'Test', message 'lava-docker-test-shell timed out after 573 seconds'
Count: 1 (2.13%)
IDs:
rb5-03:
8008646
Error: Device NOT found!
Count: 1 (2.13%)
IDs:
rb5-03:
8008587
Error type: Bug
Error count: 1 (2.13%)
Error: No match for error type 'Bug', message 'Failed to share device '/dev/bus/usb/001/124' to docker container lava-8009140-3.1-a84e1259-f074-42ab-b1f5-2cadc54160b0'
Count: 1 (2.13%)
IDs:
rb5-03:
8009140