The patch titled prctl: return timerslack through pointer has been removed from the -mm tree. Its filename was prctl-return-timerslack-through-pointer.patch This patch was dropped because it was nacked The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: prctl: return timerslack through pointer From: "Smith, GeoffX" <geoffx.smith@xxxxxxxxx> Fix the semantics of prctl() option PR_GET_TIMERSLACK to pass the return value through *arg2. With this change, the option now follows the same conventions as the other "get" options added since 2.6.0, and also brings it into conformance with the advice in chapter 16 of Documentation/CodingStyle. In addition, it effectively doubles the range of time slack to 4.29 seconds (on a 32-bit architecture). The timer slack feature was only added in Sep 2009 (new in 2.6.32.1), so there are not any production applications to break. I have also repaired some unmatched signed/unsigned mismatches in timer slack calculations. Signed-off-by: Geoff Smith <geoffx.smith@xxxxxxxxx> Cc: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/select.c | 8 ++++---- kernel/sys.c | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff -puN fs/select.c~prctl-return-timerslack-through-pointer fs/select.c --- a/fs/select.c~prctl-return-timerslack-through-pointer +++ a/fs/select.c @@ -44,10 +44,10 @@ #define MAX_SLACK (100 * NSEC_PER_MSEC) -static long __estimate_accuracy(struct timespec *tv) +static unsigned long __estimate_accuracy(struct timespec *tv) { - long slack; - int divfactor = 1000; + unsigned long slack; + unsigned int divfactor = 1000; if (tv->tv_sec < 0) return 0; @@ -67,7 +67,7 @@ static long __estimate_accuracy(struct t return slack; } -static long estimate_accuracy(struct timespec *tv) +static unsigned long estimate_accuracy(struct timespec *tv) { unsigned long ret; struct timespec now; diff -puN kernel/sys.c~prctl-return-timerslack-through-pointer kernel/sys.c --- a/kernel/sys.c~prctl-return-timerslack-through-pointer +++ a/kernel/sys.c @@ -1638,7 +1638,8 @@ SYSCALL_DEFINE5(prctl, int, option, unsi error = perf_event_task_enable(); break; case PR_GET_TIMERSLACK: - error = current->timer_slack_ns; + error = put_user(current->timer_slack_ns, + (unsigned long __user *)arg2); break; case PR_SET_TIMERSLACK: if (arg2 <= 0) _ Patches currently in -mm which might be from geoffx.smith@xxxxxxxxx are prctl-return-timerslack-through-pointer.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html