Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5926c50b83b626991c8c38efbca2020ee96b215f
Commit:     5926c50b83b626991c8c38efbca2020ee96b215f
Parent:     8f41958bdd577731f7411c9605cfaa9db6766809
Author:     Ingo Molnar <[EMAIL PROTECTED]>
AuthorDate: Mon Jul 16 09:46:30 2007 +0200
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Mon Jul 16 09:46:30 2007 +0200

    [PATCH] sched: remove dead code from task_stime()
    
    Alexey Dobriyan noticed that task_stime() contains a piece of dead code.
    (which is a remnant of earlier versions of this code) Remove that code.
    
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
---
 fs/proc/array.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/proc/array.c b/fs/proc/array.c
index 98e78e2..c697779 100644
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -332,7 +332,7 @@ static clock_t task_utime(struct task_struct *p)
 
 static clock_t task_stime(struct task_struct *p)
 {
-       clock_t stime = cputime_to_clock_t(p->stime);
+       clock_t stime;
 
        /*
         * Use CFS's precise accounting. (we subtract utime from
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to