The patch titled unnecessary long index i in sched has been added to the -mm tree. Its filename is unnecessary-long-index-i-in-sched.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Steven Rostedt <rostedt@xxxxxxxxxxx> Unless we expect to have more than 2G CPUs, there's no reason to have 'i' as a long long here. Signed-off-by: Steven Rostedt <rostedt@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/sched.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/sched.c~unnecessary-long-index-i-in-sched kernel/sched.c --- devel/kernel/sched.c~unnecessary-long-index-i-in-sched 2006-05-14 02:29:26.000000000 -0700 +++ devel-akpm/kernel/sched.c 2006-05-14 02:29:26.000000000 -0700 @@ -1879,7 +1879,8 @@ unsigned long nr_uninterruptible(void) unsigned long long nr_context_switches(void) { - unsigned long long i, sum = 0; + int i; + unsigned long long sum = 0; for_each_possible_cpu(i) sum += cpu_rq(i)->nr_switches; _ Patches currently in -mm which might be from rostedt@xxxxxxxxxxx are fix-for-serial-uart-lockup.patch jbd-avoid-kfree-null.patch ext3_clear_inode-avoid-kfree-null.patch sched-comment-bitmap-size-accounting.patch unnecessary-long-index-i-in-sched.patch rtmutex-remove-buggy-bug_on-in-pi-boosting-code.patch document-futex-pi-design.patch document-futex-pi-design-fix.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