* [PATCH] use macro SHIFT instead of hard code 32
@ 2017-07-06 7:46 Ganesh Mahendran
0 siblings, 0 replies; only message in thread
From: Ganesh Mahendran @ 2017-07-06 7:46 UTC (permalink / raw)
To: linux-kernel, corbet, mingo, peterz, linux-doc; +Cc: Ganesh Mahendran
32 is already defined as macro SHIFT, so it's better
to use macro SHIFT
Signed-off-by: Ganesh Mahendran <opensource.ganesh@gmail.com>
---
Documentation/scheduler/sched-pelt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/scheduler/sched-pelt.c b/Documentation/scheduler/sched-pelt.c
index e421913..726cb31 100644
--- a/Documentation/scheduler/sched-pelt.c
+++ b/Documentation/scheduler/sched-pelt.c
@@ -22,7 +22,7 @@ void calc_runnable_avg_yN_inv(void)
printf("static const u32 runnable_avg_yN_inv[] = {");
for (i = 0; i < HALFLIFE; i++) {
- x = ((1UL<<32)-1)*pow(y, i);
+ x = ((1UL<<SHIFT)-1)*pow(y, i);
if (i % 6 == 0) printf("\n\t");
printf("0x%8x, ", x);
@@ -57,7 +57,7 @@ void calc_runnable_avg_yN_sum(void)
void calc_converged_max(void)
{
- long last = 0, y_inv = ((1UL<<32)-1)*y;
+ long last = 0, y_inv = ((1UL<<SHIFT)-1)*y;
for (; ; n++) {
if (n > -1)
--
1.9.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2017-07-06 7:46 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-06 7:46 [PATCH] use macro SHIFT instead of hard code 32 Ganesh Mahendran
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.