aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sys.c
diff options
context:
space:
mode:
authorArjan van de Ven <arjan@linux.intel.com>2008-09-01 18:52:40 -0400
committerArjan van de Ven <arjan@linux.intel.com>2008-09-06 00:35:30 -0400
commit6976675d94042fbd446231d1bd8b7de71a980ada (patch)
tree2d2acebb8078dd373115ecbdac5423f7d4fa7d72 /kernel/sys.c
parent654c8e0b1c623b156c5b92f28d914ab38c9c2c90 (diff)
hrtimer: create a "timer_slack" field in the task struct
We want to be able to control the default "rounding" that is used by select() and poll() and friends. This is a per process property (so that we can have a "nice" like program to start certain programs with a looser or stricter rounding) that can be set/get via a prctl(). For this purpose, a field called "timer_slack_ns" is added to the task struct. In addition, a field called "default_timer_slack"ns" is added so that tasks easily can temporarily to a more/less accurate slack and then back to the default. The default value of the slack is set to 50 usec; this is significantly less than 2.6.27's average select() and poll() timing error but still allows the kernel to group timers somewhat to preserve power behavior. Applications and admins can override this via the prctl() Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Diffstat (limited to 'kernel/sys.c')
-rw-r--r--kernel/sys.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/kernel/sys.c b/kernel/sys.c
index 038a7bc0901d..1b96401a0576 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -1727,6 +1727,16 @@ asmlinkage long sys_prctl(int option, unsigned long arg2, unsigned long arg3,
1727 case PR_SET_TSC: 1727 case PR_SET_TSC:
1728 error = SET_TSC_CTL(arg2); 1728 error = SET_TSC_CTL(arg2);
1729 break; 1729 break;
1730 case PR_GET_TIMERSLACK:
1731 error = current->timer_slack_ns;
1732 break;
1733 case PR_SET_TIMERSLACK:
1734 if (arg2 <= 0)
1735 current->timer_slack_ns =
1736 current->default_timer_slack_ns;
1737 else
1738 current->timer_slack_ns = arg2;
1739 break;
1730 default: 1740 default:
1731 error = -EINVAL; 1741 error = -EINVAL;
1732 break; 1742 break;