[PATCH V1 Resend 3/5] tick-common: do additional checks in tick_check_preferred()

From: Viresh Kumar
Date: Tue Apr 15 2014 - 01:25:28 EST


We return false from tick_check_preferred() if newdev doesn't have ONESHOT
feature but curdev has, but we don't return true when newdev has ONESHOT and
curdev doesn't. Instead we go on, check ratings and other things in that case.

This patch tries to fix this by rewriting some portion of this code and adds
sufficient comments to make logic clear.

Signed-off-by: Viresh Kumar <viresh.kumar@xxxxxxxxxx>
---
kernel/time/tick-common.c | 25 ++++++++++++++++++-------
1 file changed, 18 insertions(+), 7 deletions(-)

diff --git a/kernel/time/tick-common.c b/kernel/time/tick-common.c
index 69cab28..2f13889 100644
--- a/kernel/time/tick-common.c
+++ b/kernel/time/tick-common.c
@@ -252,18 +252,29 @@ static bool tick_check_percpu(struct clock_event_device *curdev,
static bool tick_check_preferred(struct clock_event_device *curdev,
struct clock_event_device *newdev)
{
- /* Prefer oneshot capable device */
- if (!(newdev->features & CLOCK_EVT_FEAT_ONESHOT)) {
- if (curdev && (curdev->features & CLOCK_EVT_FEAT_ONESHOT))
- return false;
- }
+ if (!curdev)
+ return true;
+
+ /*
+ * Prefer oneshot capable device.
+ * return values based on if ONESHOT is available or not:
+ *
+ * curdev newdev operation
+ * 0 0 check priority
+ * 0 1 return true
+ * 1 0 return false
+ * 1 1 check priority
+ */
+
+ if ((newdev->features & CLOCK_EVT_FEAT_ONESHOT) ^
+ (curdev->features & CLOCK_EVT_FEAT_ONESHOT))
+ return newdev->features & CLOCK_EVT_FEAT_ONESHOT;

/*
* Use the higher rated one, but prefer a CPU local device with a lower
* rating than a non-CPU local device
*/
- return !curdev ||
- newdev->rating > curdev->rating ||
+ return newdev->rating > curdev->rating ||
!cpumask_equal(curdev->cpumask, newdev->cpumask);
}

--
1.7.12.rc2.18.g61b472e

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/