The patch titled hrtimer: remove unused variables in ktime_divns() has been added to the -mm tree. Its filename is hrtimer-remove-unused-variables-in-ktime_divns.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: hrtimer: remove unused variables in ktime_divns() From: "Carlos R. Mafra" <crmafra2@xxxxxxxxx> The variables dns and inc are not used, remove them. Signed-off-by: Carlos R. Mafra <crmafra@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/hrtimer.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff -puN kernel/hrtimer.c~hrtimer-remove-unused-variables-in-ktime_divns kernel/hrtimer.c --- a/kernel/hrtimer.c~hrtimer-remove-unused-variables-in-ktime_divns +++ a/kernel/hrtimer.c @@ -300,11 +300,10 @@ EXPORT_SYMBOL_GPL(ktime_sub_ns); */ u64 ktime_divns(const ktime_t kt, s64 div) { - u64 dclc, inc, dns; + u64 dclc; int sft = 0; - dclc = dns = ktime_to_ns(kt); - inc = div; + dclc = ktime_to_ns(kt); /* Make sure the divisor is less than 2^32: */ while (div >> 32) { sft++; _ Patches currently in -mm which might be from crmafra2@xxxxxxxxx are linux-next.patch hrtimer-remove-unused-variables-in-ktime_divns.patch remove-argument-from-open_softirq-which-is-always-null.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