Skip to content
  • Ingo Molnar's avatar
    Revert "sched/cputime: Refactor the cputime_adjust() code" · 3b9c08ae
    Ingo Molnar authored
    This reverts commit 72298e5c
    
    .
    
    As Peter explains:
    
    > Argh, no... That code was perfectly fine. The new code otoh is
    > convoluted.
    >
    > The old code had the following form:
    >
    >         if (exception1)
    >           deal with exception1
    >
    >         if (execption2)
    >           deal with exception2
    >
    >         do normal stuff
    >
    > Which is as simple and straight forward as it gets.
    >
    > The new code otoh reads like:
    >
    >         if (!exception1) {
    >                 if (exception2)
    >                   deal with exception 2
    >                 else
    >                   do normal stuff
    >         }
    
    So restore the old form.
    
    Also fix the comment describing the logic, as it was confusing.
    
    Requested-by: default avatarPeter Zijlstra <peterz@infradead.org>
    Cc: Gustavo A. R. Silva <garsilva@embeddedor.com>
    Cc: Frans Klaver <fransklaver@gmail.com>
    Cc: Frederic Weisbecker <fweisbec@gmail.com>
    Cc: Linus Torvalds <torvalds@linux-foundation.org>
    Cc: Rik van Riel <riel@redhat.com>
    Cc: Stanislaw Gruszka <sgruszka@redhat.com>
    Cc: Thomas Gleixner <tglx@linutronix.de>
    Cc: Wanpeng Li <wanpeng.li@hotmail.com>
    Cc: linux-kernel@vger.kernel.org
    Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
    3b9c08ae