From owner-cvs-all@FreeBSD.ORG Thu May 1 09:59:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15B1137B401; Thu, 1 May 2003 09:59:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2CE443FA3; Thu, 1 May 2003 09:59:23 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h41GxN0U070985; Thu, 1 May 2003 09:59:23 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h41GxN3X070984; Thu, 1 May 2003 09:59:23 -0700 (PDT) Message-Id: <200305011659.h41GxN3X070984@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 1 May 2003 09:59:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/procfs procfs_status.c src/sys/kern init_main.c kern_acct.c kern_fork.c kern_kthread.c kern_proc.c src/sys/nfsclient nfs_lock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 May 2003 16:59:24 -0000 des 2003/05/01 09:59:23 PDT FreeBSD src repository Modified files: sys/fs/procfs procfs_status.c sys/kern init_main.c kern_acct.c kern_fork.c kern_kthread.c kern_proc.c sys/nfsclient nfs_lock.c Log: Instead of recording the Unix time in a process when it starts, record the uptime. Where necessary, convert it back to Unix time by adding boottime to it. This fixes a potential problem in the accounting code, which would compute the elapsed time incorrectly if the Unix time was stepped during the lifetime of the process. Revision Changes Path 1.48 +6 -4 src/sys/fs/procfs/procfs_status.c 1.230 +1 -1 src/sys/kern/init_main.c 1.64 +4 -2 src/sys/kern/kern_acct.c 1.196 +1 -1 src/sys/kern/kern_fork.c 1.30 +1 -1 src/sys/kern/kern_kthread.c 1.184 +1 -2 src/sys/kern/kern_proc.c 1.35 +1 -0 src/sys/nfsclient/nfs_lock.c