The patch titled csa-basic-accounting-over-taskstats-fix has been removed from the -mm tree. Its filename is csa-basic-accounting-over-taskstats-fix.patch This patch was dropped because it was folded into csa-basic-accounting-over-taskstats.patch ------------------------------------------------------ Subject: csa-basic-accounting-over-taskstats-fix From: Andrew Morton <akpm@xxxxxxxx> kernel/built-in.o: In function `bacct_add_tsk': /usr/src/linux-mm/kernel/tsacct.c:39: undefined reference to `__divdi3' Cc: "Michal Piotrowski" <michal.k.k.piotrowski@xxxxxxxxx> Cc: "Jay Lan" <jlan@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/tsacct.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff -puN kernel/tsacct.c~csa-basic-accounting-over-taskstats-fix kernel/tsacct.c --- a/kernel/tsacct.c~csa-basic-accounting-over-taskstats-fix +++ a/kernel/tsacct.c @@ -29,6 +29,7 @@ void bacct_add_tsk(struct taskstats *stats, struct task_struct *tsk) { struct timespec uptime, ts; + s64 ac_etime; BUILD_BUG_ON(TS_COMM_LEN < TASK_COMM_LEN); @@ -36,7 +37,9 @@ void bacct_add_tsk(struct taskstats *sta do_posix_clock_monotonic_gettime(&uptime); ts = timespec_sub(uptime, current->group_leader->start_time); /* rebase elapsed time to usec */ - stats->ac_etime = (timespec_to_ns(&ts))/NSEC_PER_USEC; + ac_etime = timespec_to_ns(&ts); + do_div(ac_etime, NSEC_PER_USEC); + stats->ac_etime = ac_etime; stats->ac_btime = xtime.tv_sec - ts.tv_sec; if (thread_group_leader(tsk)) { stats->ac_exitcode = tsk->exit_code; _ Patches currently in -mm which might be from akpm@xxxxxxxx are origin.patch list_del-debug-fix.patch arch-i386-pci-mmconfigc-tlb-flush-fix-tweaks.patch maximum-latency-tracking-infrastructure.patch submit-checklist-mention-headers_check.patch ntp-move-all-the-ntp-related-code-to-ntpc.patch reiserfs-on-demand-bitmap-loading.patch add-vector-aio-support.patch csa-basic-accounting-over-taskstats.patch csa-basic-accounting-over-taskstats-fix.patch stack-overflow-safe-kdump-crash_use_safe_smp_processor_id-fix.patch generic-ioremap_page_range-x86_64-conversion-fix.patch some-cleanup-in-the-pipe-code-tidy.patch support-piping-into-commands-in-proc-sys-kernel-core_pattern-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