powerpc-embedded6xx-hlwd-pic-prevent-interrupts-from-being-handled-by-starlet.patch
hid-i2c-hid-check-if-device-is-there-before-really-probing.patch
tty-fix-data-race-in-tty_insert_flip_string_fixed_flag.patch
-tick-prefer-a-lower-rating-device-only-if-it-s-cpu-local-device.patch
libata-fix-command-retry-decision.patch
media-saa7164-fix-driver-name-in-debug-output.patch
s390-cpum_sf-add-data-entry-sizes-to-sampling-trailer-entry.patch
+++ /dev/null
-From foo@baz Sat Jul 28 12:29:48 CEST 2018
-From: Sudeep Holla <sudeep.holla@arm.com>
-Date: Wed, 9 May 2018 17:02:08 +0100
-Subject: tick: Prefer a lower rating device only if it's CPU local device
-
-From: Sudeep Holla <sudeep.holla@arm.com>
-
-[ Upstream commit 1332a90558013ae4242e3dd7934bdcdeafb06c0d ]
-
-Checking the equality of cpumask for both new and old tick device doesn't
-ensure that it's CPU local device. This will cause issue if a low rating
-clockevent tick device is registered first followed by the registration
-of higher rating clockevent tick device.
-
-In such case, clockevents_released list will never get emptied as both
-the devices get selected as preferred one and we will loop forever in
-clockevents_notify_released.
-
-Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
-Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-Cc: Frederic Weisbecker <fweisbec@gmail.com>
-Link: https://lkml.kernel.org/r/1525881728-4858-1-git-send-email-sudeep.holla@arm.com
-Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- kernel/time/tick-common.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
---- a/kernel/time/tick-common.c
-+++ b/kernel/time/tick-common.c
-@@ -266,7 +266,8 @@ static bool tick_check_preferred(struct
- */
- return !curdev ||
- newdev->rating > curdev->rating ||
-- !cpumask_equal(curdev->cpumask, newdev->cpumask);
-+ (!cpumask_equal(curdev->cpumask, newdev->cpumask) &&
-+ !tick_check_percpu(curdev, newdev, smp_processor_id()));
- }
-
- /*
hid-i2c-hid-check-if-device-is-there-before-really-probing.patch
tty-fix-data-race-in-tty_insert_flip_string_fixed_flag.patch
dma-iommu-fix-compilation-when-config_iommu_dma.patch
-tick-prefer-a-lower-rating-device-only-if-it-s-cpu-local-device.patch
media-rcar_jpu-add-missing-clk_disable_unprepare-on-error-in-jpu_open.patch
libata-fix-command-retry-decision.patch
media-saa7164-fix-driver-name-in-debug-output.patch
+++ /dev/null
-From foo@baz Sat Jul 28 12:10:33 CEST 2018
-From: Sudeep Holla <sudeep.holla@arm.com>
-Date: Wed, 9 May 2018 17:02:08 +0100
-Subject: tick: Prefer a lower rating device only if it's CPU local device
-
-From: Sudeep Holla <sudeep.holla@arm.com>
-
-[ Upstream commit 1332a90558013ae4242e3dd7934bdcdeafb06c0d ]
-
-Checking the equality of cpumask for both new and old tick device doesn't
-ensure that it's CPU local device. This will cause issue if a low rating
-clockevent tick device is registered first followed by the registration
-of higher rating clockevent tick device.
-
-In such case, clockevents_released list will never get emptied as both
-the devices get selected as preferred one and we will loop forever in
-clockevents_notify_released.
-
-Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
-Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-Cc: Frederic Weisbecker <fweisbec@gmail.com>
-Link: https://lkml.kernel.org/r/1525881728-4858-1-git-send-email-sudeep.holla@arm.com
-Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- kernel/time/tick-common.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
---- a/kernel/time/tick-common.c
-+++ b/kernel/time/tick-common.c
-@@ -277,7 +277,8 @@ static bool tick_check_preferred(struct
- */
- return !curdev ||
- newdev->rating > curdev->rating ||
-- !cpumask_equal(curdev->cpumask, newdev->cpumask);
-+ (!cpumask_equal(curdev->cpumask, newdev->cpumask) &&
-+ !tick_check_percpu(curdev, newdev, smp_processor_id()));
- }
-
- /*