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
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
October 2022
----- 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
386 participants
1706 discussions
Start a n
N
ew thread
[PATCH 2/3] HID: playstation: add initial DualSense Edge controller support
by Roderick Colenbrander
Provide initial support for the DualSense Edge controller. The brings support up to the level of the original DualSense, but won't yet provide support for new features (e.g. reprogrammable buttons). Signed-off-by: Roderick Colenbrander <roderick.colenbrander(a)sony.com> CC: stable(a)vger.kernel.org --- drivers/hid/hid-ids.h | 1 + drivers/hid/hid-playstation.c | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index f80d6193fca6..cd8087ed412c 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h @@ -1142,6 +1142,7 @@ #define USB_DEVICE_ID_SONY_PS4_CONTROLLER_2 0x09cc #define USB_DEVICE_ID_SONY_PS4_CONTROLLER_DONGLE 0x0ba0 #define USB_DEVICE_ID_SONY_PS5_CONTROLLER 0x0ce6 +#define USB_DEVICE_ID_SONY_PS5_CONTROLLER_2 0x0df2 #define USB_DEVICE_ID_SONY_MOTION_CONTROLLER 0x03d5 #define USB_DEVICE_ID_SONY_NAVIGATION_CONTROLLER 0x042f #define USB_DEVICE_ID_SONY_BUZZ_CONTROLLER 0x0002 diff --git a/drivers/hid/hid-playstation.c b/drivers/hid/hid-playstation.c index d727cd2bf44e..396356b6760a 100644 --- a/drivers/hid/hid-playstation.c +++ b/drivers/hid/hid-playstation.c @@ -1464,7 +1464,8 @@ static int ps_probe(struct hid_device *hdev, const struct hid_device_id *id) goto err_stop; } - if (hdev->product == USB_DEVICE_ID_SONY_PS5_CONTROLLER) { + if (hdev->product == USB_DEVICE_ID_SONY_PS5_CONTROLLER || + hdev->product == USB_DEVICE_ID_SONY_PS5_CONTROLLER_2) { dev = dualsense_create(hdev); if (IS_ERR(dev)) { hid_err(hdev, "Failed to create dualsense.\n"); @@ -1499,6 +1500,8 @@ static void ps_remove(struct hid_device *hdev) static const struct hid_device_id ps_devices[] = { { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS5_CONTROLLER) }, { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS5_CONTROLLER) }, + { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS5_CONTROLLER_2) }, + { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS5_CONTROLLER_2) }, { } }; MODULE_DEVICE_TABLE(hid, ps_devices); -- 2.37.3
2 years, 2 months
1
0
0
0
[PATCH 1/3] HID: playstation: stop DualSense output work on remove.
by Roderick Colenbrander
Ensure we don't schedule any new output work on removal and wait for any existing work to complete. If we don't do this e.g. rumble work can get queued during deletion and we trigger a kernel crash. Signed-off-by: Roderick Colenbrander <roderick.colenbrander(a)sony.com> CC: stable(a)vger.kernel.org --- drivers/hid/hid-playstation.c | 41 ++++++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 5 deletions(-) diff --git a/drivers/hid/hid-playstation.c b/drivers/hid/hid-playstation.c index 40050eb85c0a..d727cd2bf44e 100644 --- a/drivers/hid/hid-playstation.c +++ b/drivers/hid/hid-playstation.c @@ -46,6 +46,7 @@ struct ps_device { uint32_t fw_version; int (*parse_report)(struct ps_device *dev, struct hid_report *report, u8 *data, int size); + void (*remove)(struct ps_device *dev); }; /* Calibration data for playstation motion sensors. */ @@ -174,6 +175,7 @@ struct dualsense { struct led_classdev player_leds[5]; struct work_struct output_worker; + bool output_worker_initialized; void *output_report_dmabuf; uint8_t output_seq; /* Sequence number for output report. */ }; @@ -299,6 +301,7 @@ static const struct {int x; int y; } ps_gamepad_hat_mapping[] = { {0, 0}, }; +static inline void dualsense_schedule_work(struct dualsense *ds); static void dualsense_set_lightbar(struct dualsense *ds, uint8_t red, uint8_t green, uint8_t blue); /* @@ -789,6 +792,7 @@ static int dualsense_get_calibration_data(struct dualsense *ds) return ret; } + static int dualsense_get_firmware_info(struct dualsense *ds) { uint8_t *buf; @@ -878,7 +882,7 @@ static int dualsense_player_led_set_brightness(struct led_classdev *led, enum le ds->update_player_leds = true; spin_unlock_irqrestore(&ds->base.lock, flags); - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); return 0; } @@ -922,6 +926,16 @@ static void dualsense_init_output_report(struct dualsense *ds, struct dualsense_ } } +static inline void dualsense_schedule_work(struct dualsense *ds) +{ + unsigned long flags; + + spin_lock_irqsave(&ds->base.lock, flags); + if (ds->output_worker_initialized) + schedule_work(&ds->output_worker); + spin_unlock_irqrestore(&ds->base.lock, flags); +} + /* * Helper function to send DualSense output reports. Applies a CRC at the end of a report * for Bluetooth reports. @@ -1082,7 +1096,7 @@ static int dualsense_parse_report(struct ps_device *ps_dev, struct hid_report *r spin_unlock_irqrestore(&ps_dev->lock, flags); /* Schedule updating of microphone state at hardware level. */ - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); } ds->last_btn_mic_state = btn_mic_state; @@ -1197,10 +1211,22 @@ static int dualsense_play_effect(struct input_dev *dev, void *data, struct ff_ef ds->motor_right = effect->u.rumble.weak_magnitude / 256; spin_unlock_irqrestore(&ds->base.lock, flags); - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); return 0; } +static void dualsense_remove(struct ps_device *ps_dev) +{ + struct dualsense *ds = container_of(ps_dev, struct dualsense, base); + unsigned long flags; + + spin_lock_irqsave(&ds->base.lock, flags); + ds->output_worker_initialized = false; + spin_unlock_irqrestore(&ds->base.lock, flags); + + cancel_work_sync(&ds->output_worker); +} + static int dualsense_reset_leds(struct dualsense *ds) { struct dualsense_output_report report; @@ -1237,7 +1263,7 @@ static void dualsense_set_lightbar(struct dualsense *ds, uint8_t red, uint8_t gr ds->lightbar_blue = blue; spin_unlock_irqrestore(&ds->base.lock, flags); - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); } static void dualsense_set_player_leds(struct dualsense *ds) @@ -1260,7 +1286,7 @@ static void dualsense_set_player_leds(struct dualsense *ds) ds->update_player_leds = true; ds->player_leds_state = player_ids[player_id]; - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); } static struct ps_device *dualsense_create(struct hid_device *hdev) @@ -1299,7 +1325,9 @@ static struct ps_device *dualsense_create(struct hid_device *hdev) ps_dev->battery_capacity = 100; /* initial value until parse_report. */ ps_dev->battery_status = POWER_SUPPLY_STATUS_UNKNOWN; ps_dev->parse_report = dualsense_parse_report; + ps_dev->remove = dualsense_remove; INIT_WORK(&ds->output_worker, dualsense_output_worker); + ds->output_worker_initialized = true; hid_set_drvdata(hdev, ds); max_output_report_size = sizeof(struct dualsense_output_report_bt); @@ -1461,6 +1489,9 @@ static void ps_remove(struct hid_device *hdev) ps_devices_list_remove(dev); ps_device_release_player_id(dev); + if (dev->remove) + dev->remove(dev); + hid_hw_close(hdev); hid_hw_stop(hdev); } -- 2.37.3
2 years, 2 months
1
0
0
0
[PATCH 1/3] HID: playstation: stop DualSense output work on remove.
by Roderick Colenbrander
Ensure we don't schedule any new output work on removal and wait for any existing work to complete. If we don't do this e.g. rumble work can get queued during deletion and we trigger a kernel crash. Signed-off-by: Roderick Colenbrander <roderick.colenbrander(a)sony.com> CC: stable(a)vger.kernel.org --- drivers/hid/hid-playstation.c | 41 ++++++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 5 deletions(-) diff --git a/drivers/hid/hid-playstation.c b/drivers/hid/hid-playstation.c index 40050eb85c0a..d727cd2bf44e 100644 --- a/drivers/hid/hid-playstation.c +++ b/drivers/hid/hid-playstation.c @@ -46,6 +46,7 @@ struct ps_device { uint32_t fw_version; int (*parse_report)(struct ps_device *dev, struct hid_report *report, u8 *data, int size); + void (*remove)(struct ps_device *dev); }; /* Calibration data for playstation motion sensors. */ @@ -174,6 +175,7 @@ struct dualsense { struct led_classdev player_leds[5]; struct work_struct output_worker; + bool output_worker_initialized; void *output_report_dmabuf; uint8_t output_seq; /* Sequence number for output report. */ }; @@ -299,6 +301,7 @@ static const struct {int x; int y; } ps_gamepad_hat_mapping[] = { {0, 0}, }; +static inline void dualsense_schedule_work(struct dualsense *ds); static void dualsense_set_lightbar(struct dualsense *ds, uint8_t red, uint8_t green, uint8_t blue); /* @@ -789,6 +792,7 @@ static int dualsense_get_calibration_data(struct dualsense *ds) return ret; } + static int dualsense_get_firmware_info(struct dualsense *ds) { uint8_t *buf; @@ -878,7 +882,7 @@ static int dualsense_player_led_set_brightness(struct led_classdev *led, enum le ds->update_player_leds = true; spin_unlock_irqrestore(&ds->base.lock, flags); - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); return 0; } @@ -922,6 +926,16 @@ static void dualsense_init_output_report(struct dualsense *ds, struct dualsense_ } } +static inline void dualsense_schedule_work(struct dualsense *ds) +{ + unsigned long flags; + + spin_lock_irqsave(&ds->base.lock, flags); + if (ds->output_worker_initialized) + schedule_work(&ds->output_worker); + spin_unlock_irqrestore(&ds->base.lock, flags); +} + /* * Helper function to send DualSense output reports. Applies a CRC at the end of a report * for Bluetooth reports. @@ -1082,7 +1096,7 @@ static int dualsense_parse_report(struct ps_device *ps_dev, struct hid_report *r spin_unlock_irqrestore(&ps_dev->lock, flags); /* Schedule updating of microphone state at hardware level. */ - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); } ds->last_btn_mic_state = btn_mic_state; @@ -1197,10 +1211,22 @@ static int dualsense_play_effect(struct input_dev *dev, void *data, struct ff_ef ds->motor_right = effect->u.rumble.weak_magnitude / 256; spin_unlock_irqrestore(&ds->base.lock, flags); - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); return 0; } +static void dualsense_remove(struct ps_device *ps_dev) +{ + struct dualsense *ds = container_of(ps_dev, struct dualsense, base); + unsigned long flags; + + spin_lock_irqsave(&ds->base.lock, flags); + ds->output_worker_initialized = false; + spin_unlock_irqrestore(&ds->base.lock, flags); + + cancel_work_sync(&ds->output_worker); +} + static int dualsense_reset_leds(struct dualsense *ds) { struct dualsense_output_report report; @@ -1237,7 +1263,7 @@ static void dualsense_set_lightbar(struct dualsense *ds, uint8_t red, uint8_t gr ds->lightbar_blue = blue; spin_unlock_irqrestore(&ds->base.lock, flags); - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); } static void dualsense_set_player_leds(struct dualsense *ds) @@ -1260,7 +1286,7 @@ static void dualsense_set_player_leds(struct dualsense *ds) ds->update_player_leds = true; ds->player_leds_state = player_ids[player_id]; - schedule_work(&ds->output_worker); + dualsense_schedule_work(ds); } static struct ps_device *dualsense_create(struct hid_device *hdev) @@ -1299,7 +1325,9 @@ static struct ps_device *dualsense_create(struct hid_device *hdev) ps_dev->battery_capacity = 100; /* initial value until parse_report. */ ps_dev->battery_status = POWER_SUPPLY_STATUS_UNKNOWN; ps_dev->parse_report = dualsense_parse_report; + ps_dev->remove = dualsense_remove; INIT_WORK(&ds->output_worker, dualsense_output_worker); + ds->output_worker_initialized = true; hid_set_drvdata(hdev, ds); max_output_report_size = sizeof(struct dualsense_output_report_bt); @@ -1461,6 +1489,9 @@ static void ps_remove(struct hid_device *hdev) ps_devices_list_remove(dev); ps_device_release_player_id(dev); + if (dev->remove) + dev->remove(dev); + hid_hw_close(hdev); hid_hw_stop(hdev); } -- 2.37.3
2 years, 2 months
1
0
0
0
[PATCH v2 2/2] Revert "usb: dwc3: Don't switch OTG -> peripheral if extcon is present"
by Andy Shevchenko
This reverts commit 0f01017191384e3962fa31520a9fd9846c3d352f. As pointed out by Ferry this breaks Dual Role support on Intel Merrifield platforms. Fixes: 0f0101719138 ("usb: dwc3: Don't switch OTG -> peripheral if extcon is present") Reported-by: Ferry Toth <fntoth(a)gmail.com> Cc: stable(a)vger.kernel.org Signed-off-by: Andy Shevchenko <andriy.shevchenko(a)linux.intel.com> Tested-by: Ferry Toth <fntoth(a)gmail.com> # for Merrifield --- drivers/usb/dwc3/core.c | 55 +---------------------------------------- drivers/usb/dwc3/drd.c | 50 +++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 54 deletions(-) diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index c2b463469d51..219d797e2230 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -23,7 +23,6 @@ #include <linux/delay.h> #include <linux/dma-mapping.h> #include <linux/of.h> -#include <linux/of_graph.h> #include <linux/acpi.h> #include <linux/pinctrl/consumer.h> #include <linux/reset.h> @@ -86,7 +85,7 @@ static int dwc3_get_dr_mode(struct dwc3 *dwc) * mode. If the controller supports DRD but the dr_mode is not * specified or set to OTG, then set the mode to peripheral. */ - if (mode == USB_DR_MODE_OTG && !dwc->edev && + if (mode == USB_DR_MODE_OTG && (!IS_ENABLED(CONFIG_USB_ROLE_SWITCH) || !device_property_read_bool(dwc->dev, "usb-role-switch")) && !DWC3_VER_IS_PRIOR(DWC3, 330A)) @@ -1668,51 +1667,6 @@ static void dwc3_check_params(struct dwc3 *dwc) } } -static struct extcon_dev *dwc3_get_extcon(struct dwc3 *dwc) -{ - struct device *dev = dwc->dev; - struct device_node *np_phy; - struct extcon_dev *edev = NULL; - const char *name; - - if (device_property_read_bool(dev, "extcon")) - return extcon_get_edev_by_phandle(dev, 0); - - /* - * Device tree platforms should get extcon via phandle. - * On ACPI platforms, we get the name from a device property. - * This device property is for kernel internal use only and - * is expected to be set by the glue code. - */ - if (device_property_read_string(dev, "linux,extcon-name", &name) == 0) { - edev = extcon_get_extcon_dev(name); - if (!edev) - return ERR_PTR(-EPROBE_DEFER); - - return edev; - } - - /* - * Try to get an extcon device from the USB PHY controller's "port" - * node. Check if it has the "port" node first, to avoid printing the - * error message from underlying code, as it's a valid case: extcon - * device (and "port" node) may be missing in case of "usb-role-switch" - * or OTG mode. - */ - np_phy = of_parse_phandle(dev->of_node, "phys", 0); - if (of_graph_is_present(np_phy)) { - struct device_node *np_conn; - - np_conn = of_graph_get_remote_node(np_phy, -1, -1); - if (np_conn) - edev = extcon_find_edev_by_node(np_conn); - of_node_put(np_conn); - } - of_node_put(np_phy); - - return edev; -} - static int dwc3_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; @@ -1849,13 +1803,6 @@ static int dwc3_probe(struct platform_device *pdev) goto err2; } - dwc->edev = dwc3_get_extcon(dwc); - if (IS_ERR(dwc->edev)) { - ret = PTR_ERR(dwc->edev); - dev_err_probe(dwc->dev, ret, "failed to get extcon\n"); - goto err3; - } - ret = dwc3_get_dr_mode(dwc); if (ret) goto err3; diff --git a/drivers/usb/dwc3/drd.c b/drivers/usb/dwc3/drd.c index 039bf241769a..8cad9e7d3368 100644 --- a/drivers/usb/dwc3/drd.c +++ b/drivers/usb/dwc3/drd.c @@ -8,6 +8,7 @@ */ #include <linux/extcon.h> +#include <linux/of_graph.h> #include <linux/of_platform.h> #include <linux/platform_device.h> #include <linux/property.h> @@ -438,6 +439,51 @@ static int dwc3_drd_notifier(struct notifier_block *nb, return NOTIFY_DONE; } +static struct extcon_dev *dwc3_get_extcon(struct dwc3 *dwc) +{ + struct device *dev = dwc->dev; + struct device_node *np_phy; + struct extcon_dev *edev = NULL; + const char *name; + + if (device_property_read_bool(dev, "extcon")) + return extcon_get_edev_by_phandle(dev, 0); + + /* + * Device tree platforms should get extcon via phandle. + * On ACPI platforms, we get the name from a device property. + * This device property is for kernel internal use only and + * is expected to be set by the glue code. + */ + if (device_property_read_string(dev, "linux,extcon-name", &name) == 0) { + edev = extcon_get_extcon_dev(name); + if (!edev) + return ERR_PTR(-EPROBE_DEFER); + + return edev; + } + + /* + * Try to get an extcon device from the USB PHY controller's "port" + * node. Check if it has the "port" node first, to avoid printing the + * error message from underlying code, as it's a valid case: extcon + * device (and "port" node) may be missing in case of "usb-role-switch" + * or OTG mode. + */ + np_phy = of_parse_phandle(dev->of_node, "phys", 0); + if (of_graph_is_present(np_phy)) { + struct device_node *np_conn; + + np_conn = of_graph_get_remote_node(np_phy, -1, -1); + if (np_conn) + edev = extcon_find_edev_by_node(np_conn); + of_node_put(np_conn); + } + of_node_put(np_phy); + + return edev; +} + #if IS_ENABLED(CONFIG_USB_ROLE_SWITCH) #define ROLE_SWITCH 1 static int dwc3_usb_role_switch_set(struct usb_role_switch *sw, @@ -542,6 +588,10 @@ int dwc3_drd_init(struct dwc3 *dwc) device_property_read_bool(dwc->dev, "usb-role-switch")) return dwc3_setup_role_switch(dwc); + dwc->edev = dwc3_get_extcon(dwc); + if (IS_ERR(dwc->edev)) + return PTR_ERR(dwc->edev); + if (dwc->edev) { dwc->edev_nb.notifier_call = dwc3_drd_notifier; ret = extcon_register_notifier(dwc->edev, EXTCON_USB_HOST, -- 2.35.1
2 years, 2 months
5
9
0
0
[RESEND][PATCH 1/6] libbpf: Fix LIBBPF_1.0.0 declaration in libbpf.map
by Roberto Sassu
From: Roberto Sassu <roberto.sassu(a)huawei.com> Add the missing LIBBPF_0.8.0 at the end of the LIBBPF_1.0.0 declaration, similarly to other version declarations. Cc: stable(a)vger.kernel.org # 5.19.x Fixes: e2371b1632b1c ("libbpf: start 1.0 development cycle") Signed-off-by: Roberto Sassu <roberto.sassu(a)huawei.com> --- tools/lib/bpf/libbpf.map | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/lib/bpf/libbpf.map b/tools/lib/bpf/libbpf.map index c1d6aa7c82b6..04fab9f1fdd7 100644 --- a/tools/lib/bpf/libbpf.map +++ b/tools/lib/bpf/libbpf.map @@ -367,7 +367,7 @@ LIBBPF_1.0.0 { libbpf_bpf_map_type_str; libbpf_bpf_prog_type_str; perf_buffer__buffer; -}; +} LIBBPF_0.8.0; LIBBPF_1.1.0 { global: -- 2.25.1
2 years, 2 months
2
1
0
0
stable-rc/queue/5.10 baseline: 134 runs, 10 regressions (v5.10.146-58-g9bee85062966b)
by kernelci.org bot
stable-rc/queue/5.10 baseline: 134 runs, 10 regressions (v5.10.146-58-g9bee85062966b) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ panda | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 panda | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | 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-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-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 | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.10/kernel/v5.10.14…
Test: baseline Tree: stable-rc Branch: queue/5.10 Describe: v5.10.146-58-g9bee85062966b URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 9bee85062966b2892dabbfaead0c3cd35e23d1c5 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ panda | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dddc8fbf50aa78bcab5f4
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-5.10/v5.10.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dddc8fbf50aa78bcab5f5
failing since 43 days (last pass: v5.10.136-539-g2b0d128e38cdb, first fail: v5.10.137-150-g8b56d7183e67) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ panda | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 Details:
https://kernelci.org/test/plan/id/633ddf6ca6b4fae692cab600
Results: 0 PASS, 1 FAIL, 0 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.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633ddf6ca6b4fae692cab601
failing since 43 days (last pass: v5.10.136-539-g2b0d128e38cdb, first fail: v5.10.137-150-g8b56d7183e67) 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/633dddaaf704ff5031cab5fc
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.10/v5.10.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dddaaf704ff5031cab5fd
failing since 71 days (last pass: v5.10.101-121-g37c714b8817b, first fail: v5.10.133-85-gebd96107f6d2) 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/633ddb8b6684547094cab61e
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.10/v5.10.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633ddb8b6684547094cab61f
failing since 71 days (last pass: v5.10.101-110-ge437828b3a54, first fail: v5.10.133-85-g4c4562ba4bd5) 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/633ddde4b49354f48fcab60c
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.10/v5.10.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633ddde4b49354f48fcab60d
failing since 71 days (last pass: v5.10.101-121-g37c714b8817b, first fail: v5.10.133-85-gebd96107f6d2) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/633ddba1272b1bc9a9cab60e
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.10/v5.10.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633ddba1272b1bc9a9cab60f
failing since 71 days (last pass: v5.10.101-110-ge437828b3a54, first fail: v5.10.133-85-g4c4562ba4bd5) 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/633ddd94f704ff5031cab5ef
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.10/v5.10.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633ddd94f704ff5031cab5f0
failing since 71 days (last pass: v5.10.101-121-g37c714b8817b, first fail: v5.10.133-85-gebd96107f6d2) 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/633ddb9f66e072f8d3cab603
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.10/v5.10.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633ddb9f66e072f8d3cab604
failing since 71 days (last pass: v5.10.101-110-ge437828b3a54, first fail: v5.10.133-85-g4c4562ba4bd5) 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/633dddbcfbf50aa78bcab5ef
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.10/v5.10.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dddbcfbf50aa78bcab5f0
failing since 71 days (last pass: v5.10.101-121-g37c714b8817b, first fail: v5.10.133-85-gebd96107f6d2) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/633deadf7ae8be925ccab5ec
Results: 90 PASS, 2 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.10/v5.10.146-58-g9bee850629…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.10/v5.10.146-58-g9bee850629…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.bootrr.rockchip-i2s1-probed:
https://kernelci.org/test/case/id/633deadf7ae8be925ccab60e
failing since 211 days (last pass: v5.10.103-56-ge5a40f18f4ce, first fail: v5.10.103-105-gf074cce6ae0d) 2022-10-05T20:36:31.210619 /lava-7516091/1/../bin/lava-test-case
2 years, 2 months
1
0
0
0
stable-rc/queue/4.19 baseline: 106 runs, 11 regressions (v4.19.260-31-ge1863a37c9b6)
by kernelci.org bot
stable-rc/queue/4.19 baseline: 106 runs, 11 regressions (v4.19.260-31-ge1863a37c9b6) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ at91sam9g20ek | arm | lab-broonie | gcc-10 | at91_dt_defconfig | 1 meson-gxl-s905x-libretech-cc | arm64 | lab-broonie | gcc-10 | defconfig | 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-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-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-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 | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F4.19/kernel/v4.19.26…
Test: baseline Tree: stable-rc Branch: queue/4.19 Describe: v4.19.260-31-ge1863a37c9b6 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: e1863a37c9b626a1599532e3c7d05bf3c39d9271 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ at91sam9g20ek | arm | lab-broonie | gcc-10 | at91_dt_defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd576dfbc3a479ccab5ef
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: at91_dt_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.19/v4.19.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd576dfbc3a479ccab5f0
new failure (last pass: v4.19.260-28-g62da6060a6d8a) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ meson-gxl-s905x-libretech-cc | arm64 | lab-broonie | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd80d00eab84d5fcab60d
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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd80d00eab84d5fcab60e
failing since 169 days (last pass: v4.19.238-22-gb215381f8cf05, first fail: v4.19.238-32-g4d86c9395c31a) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd7a3b22e5f475ecab60c
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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd7a3b22e5f475ecab60d
failing since 71 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/633dd9e535d4f711a0cab5f8
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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd9e535d4f711a0cab5f9
failing since 71 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/633dd8cfc435d0a28acab610
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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd8cfc435d0a28acab611
failing since 71 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/633dd9706613660978cab5f9
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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd9706613660978cab5fa
failing since 71 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd7f364a61f95cdcab621
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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd7f364a61f95cdcab622
failing since 71 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/633dda37ac7053fcb9cab605
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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dda37ac7053fcb9cab606
failing since 71 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/633dd86bfbff69c42ccab5fe
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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd86bfbff69c42ccab5ff
failing since 71 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) 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/633dd9d46782e0153fcab604
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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd9d46782e0153fcab605
failing since 71 days (last pass: v4.19.230-58-gbd840138c177, first fail: v4.19.253-43-g91137b502cfbd) platform | arch | lab | compiler | defconfig | regressions -----------------------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/633de6bab112f6e399cab5f8
Results: 83 PASS, 7 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.260-31-ge1863a37c9…
HTML log:
https://storage.kernelci.org//stable-rc/queue-4.19/v4.19.260-31-ge1863a37c9…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.bootrr.rockchip-i2s1-probed:
https://kernelci.org/test/case/id/633de6bab112f6e399cab61a
failing since 213 days (last pass: v4.19.232-31-g5cf846953aa2, first fail: v4.19.232-44-gfd65e02206f4) 2022-10-05T20:18:56.531669 <8>[ 35.754426] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-i2s0-probed RESULT=pass> 2022-10-05T20:18:57.542584 /lava-7515800/1/../bin/lava-test-case 2022-10-05T20:18:57.550964 <8>[ 36.774984] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=rockchip-i2s1-probed RESULT=fail>
2 years, 2 months
1
0
0
0
stable-rc/queue/5.15 baseline: 123 runs, 3 regressions (v5.15.71-77-gea838574cfee6)
by kernelci.org bot
stable-rc/queue/5.15 baseline: 123 runs, 3 regressions (v5.15.71-77-gea838574cfee6) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ------------+------+--------------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 panda | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 panda | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.15/kernel/v5.15.71…
Test: baseline Tree: stable-rc Branch: queue/5.15 Describe: v5.15.71-77-gea838574cfee6 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: ea838574cfee6a04c6e92cc254d6aee6812a36e9 Test Regressions ---------------- platform | arch | lab | compiler | defconfig | regressions ------------+------+--------------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd4bf463787f39acab5f9
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-5.15/v5.15.71-77-gea838574cfe…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.71-77-gea838574cfe…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd4bf463787f39acab5fa
failing since 10 days (last pass: v5.15.69-44-g09c929d3da79, first fail: v5.15.70-123-gaf951c1b9b36) platform | arch | lab | compiler | defconfig | regressions ------------+------+--------------+----------+---------------------+------------ panda | arm | lab-baylibre | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd64739cbe910f7cab5ec
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-5.15/v5.15.71-77-gea838574cfe…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.71-77-gea838574cfe…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd64739cbe910f7cab5ed
failing since 50 days (last pass: v5.15.60-48-g789367af88749, first fail: v5.15.60-779-ge1dae9850fdff) platform | arch | lab | compiler | defconfig | regressions ------------+------+--------------+----------+---------------------+------------ panda | arm | lab-baylibre | gcc-10 | omap2plus_defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd8db5a94dd3677cab5fb
Results: 0 PASS, 1 FAIL, 0 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.15/v5.15.71-77-gea838574cfe…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.15/v5.15.71-77-gea838574cfe…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd8db5a94dd3677cab5fc
failing since 43 days (last pass: v5.15.61-1-geccb923b9eab2, first fail: v5.15.62-232-g7f3b8845612d)
2 years, 2 months
1
0
0
0
stable-rc/queue/5.19 baseline: 126 runs, 4 regressions (v5.19.12-116-g5104816afb77d)
by kernelci.org bot
stable-rc/queue/5.19 baseline: 126 runs, 4 regressions (v5.19.12-116-g5104816afb77d) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------+-------+---------------+----------+---------------------+------------ hifive-unleashed-a00 | riscv | lab-baylibre | gcc-10 | defconfig | 1 imx7ulp-evk | arm | lab-nxp | gcc-10 | imx_v6_v7_defconfig | 1 imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 qemu_mips-malta | mips | lab-collabora | gcc-10 | malta_defconfig | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/queue%2F5.19/kernel/v5.19.12…
Test: baseline Tree: stable-rc Branch: queue/5.19 Describe: v5.19.12-116-g5104816afb77d URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 5104816afb77d45eb9f24ea0bcdba2d68bcbeb55 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/633dcf9bf46df75274cab5fc
Results: 0 PASS, 1 FAIL, 0 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.19/v5.19.12-116-g5104816afb…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.19/v5.19.12-116-g5104816afb…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dcf9bf46df75274cab5fd
failing since 2 days (last pass: v5.19.11-208-g633f59cac516, first fail: v5.19.12-101-g42662133e9bdb) platform | arch | lab | compiler | defconfig | regressions ---------------------+-------+---------------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | imx_v6_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd2552475ebd1d4cab682
Results: 0 PASS, 1 FAIL, 0 SKIP Full config: imx_v6_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.19/v5.19.12-116-g5104816afb…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.19/v5.19.12-116-g5104816afb…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd2552475ebd1d4cab683
failing since 10 days (last pass: v5.19.11-158-gc8a84e45064d0, first fail: v5.19.11-186-ge96864168d41) platform | arch | lab | compiler | defconfig | regressions ---------------------+-------+---------------+----------+---------------------+------------ imx7ulp-evk | arm | lab-nxp | gcc-10 | multi_v7_defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd62709b99c4958cab5f2
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-5.19/v5.19.12-116-g5104816afb…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.19/v5.19.12-116-g5104816afb…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dd62709b99c4958cab5f3
failing since 8 days (last pass: v5.19.11-158-gc8a84e45064d0, first fail: v5.19.11-206-g444111497b13) platform | arch | lab | compiler | defconfig | regressions ---------------------+-------+---------------+----------+---------------------+------------ qemu_mips-malta | mips | lab-collabora | gcc-10 | malta_defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dd13a91b7cb4777cab5ec
Results: 4 PASS, 1 FAIL, 2 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-5.19/v5.19.12-116-g5104816afb…
HTML log:
https://storage.kernelci.org//stable-rc/queue-5.19/v5.19.12-116-g5104816afb…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.dmesg.alert:
https://kernelci.org/test/case/id/633dd13a91b7cb4777cab5f4
new failure (last pass: v5.19.12-114-g34c12937d8e1d) 1 lines 2022-10-05T18:47:06.649610 kern :alert : CPU 0 Unable to handle kernel paging request at virtual address 32c20cb0, epc == 802006a8, ra == 80203380 2022-10-05T18:47:06.677817 <8><LAVA_SIGNAL_TESTCASE TEST_CASE_ID=alert RESULT=fail UNITS=lines MEASUREMENT=1>
2 years, 2 months
1
0
0
0
stable-rc/linux-5.4.y baseline: 112 runs, 9 regressions (v5.4.215-83-g6376bfa246320)
by kernelci.org bot
stable-rc/linux-5.4.y baseline: 112 runs, 9 regressions (v5.4.215-83-g6376bfa246320) Regressions Summary ------------------- platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig | 1 rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/job/stable-rc/branch/linux-5.4.y/kernel/v5.4.215-…
Test: baseline Tree: stable-rc Branch: linux-5.4.y Describe: v5.4.215-83-g6376bfa246320 URL:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
SHA: 6376bfa24632084363dcc5cd0cc8c5a1fdd4a721 Test Regressions ---------------- 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/633da9082e7fe76db1cab610
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/linux-5.4.y/v5.4.215-83-g6376bfa246…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.215-83-g6376bfa246…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633da9082e7fe76db1cab611
failing since 63 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv2 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/633dab2725c7cf0b70cab5ed
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/linux-5.4.y/v5.4.215-83-g6376bfa246…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.215-83-g6376bfa246…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dab2725c7cf0b70cab5ee
failing since 43 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.210-390-g1cece69eaa88) 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/633da9d3b70386f9e3cab610
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/linux-5.4.y/v5.4.215-83-g6376bfa246…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.215-83-g6376bfa246…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633da9d3b70386f9e3cab611
failing since 64 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.207-123-gb48a8f43dce6) 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/633dab3b57ad1406bbcab61b
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/linux-5.4.y/v5.4.215-83-g6376bfa246…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.215-83-g6376bfa246…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633dab3b57ad1406bbcab61c
failing since 64 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.207-123-gb48a8f43dce6) 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/633da8ccccabbce653cab5ed
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/linux-5.4.y/v5.4.215-83-g6376bfa246…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.215-83-g6376bfa246…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633da8ccccabbce653cab5ee
failing since 63 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ qemu_arm64-virt-gicv3 | arm64 | lab-collabora | gcc-10 | defconfig | 1 Details:
https://kernelci.org/test/plan/id/633daa87608d75da3ecab613
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/linux-5.4.y/v5.4.215-83-g6376bfa246…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.215-83-g6376bfa246…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633daa87608d75da3ecab614
failing since 63 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.209) 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/633da9324ad9054e42cab5f2
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/linux-5.4.y/v5.4.215-83-g6376bfa246…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.215-83-g6376bfa246…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633da9324ad9054e42cab5f3
failing since 51 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.210-258-ge86027f8111f5) 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/633daa5c11f78b618fcab611
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/linux-5.4.y/v5.4.215-83-g6376bfa246…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.215-83-g6376bfa246…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.login:
https://kernelci.org/test/case/id/633daa5c11f78b618fcab612
failing since 43 days (last pass: v5.4.180-59-g4f62141869c8, first fail: v5.4.210-390-g1cece69eaa88) platform | arch | lab | compiler | defconfig | regressions ---------------------------+-------+---------------+----------+----------------------------+------------ rk3399-gru-kevin | arm64 | lab-collabora | gcc-10 | defconfig+arm64-chromebook | 1 Details:
https://kernelci.org/test/plan/id/633dc92d77396cc2f3cab5f0
Results: 88 PASS, 2 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/linux-5.4.y/v5.4.215-83-g6376bfa246…
HTML log:
https://storage.kernelci.org//stable-rc/linux-5.4.y/v5.4.215-83-g6376bfa246…
Rootfs:
http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/2022…
* baseline.bootrr.rockchip-i2s1-probed:
https://kernelci.org/test/case/id/633dc92d77396cc2f3cab612
failing since 213 days (last pass: v5.4.181-51-gb77a12b8d613, first fail: v5.4.182-54-gf27af6bf3c32) 2022-10-05T18:12:47.923184 /lava-7513452/1/../bin/lava-test-case
2 years, 2 months
1
0
0
0
← Newer
1
...
147
148
149
150
151
152
153
...
171
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
Results per page:
10
25
50
100
200