Skip to content

Commit

Permalink
Revert "kernel:sched: LOAD_FREQ (4*HZ+61) avoids loadavg Moire"
Browse files Browse the repository at this point in the history
This modification just kills loadavg.

This reverts commit 1a57319.
  • Loading branch information
zehome committed Jan 18, 2013
1 parent 11f9537 commit 46501bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ extern void get_avenrun(unsigned long *loads, unsigned long offset, int shift);

#define FSHIFT 11 /* nr of bits of precision */
#define FIXED_1 (1<<FSHIFT) /* 1.0 as fixed-point */
#define LOAD_FREQ (4*HZ+61) /* 4.61 sec intervals */
#define LOAD_FREQ (5*HZ+1) /* 5 sec intervals */
#define EXP_1 1884 /* 1/exp(5sec/1min) as fixed-point */
#define EXP_5 2014 /* 1/exp(5sec/5min) */
#define EXP_15 2037 /* 1/exp(5sec/15min) */
Expand Down

0 comments on commit 46501bf

Please sign in to comment.