Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3befe7ceb8d39a56a9ea55dd2da8b4bd9ddcdd36
Commit:     3befe7ceb8d39a56a9ea55dd2da8b4bd9ddcdd36
Parent:     68a9bd0cd5824073e3232b102011ec568a517646
Author:     Alexey Dobriyan <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 16 23:27:14 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Wed Oct 17 08:42:53 2007 -0700

    Shrink struct task_struct::oomkilladj
    
    oomkilladj is int, but values which can be assigned to it are -17, [-16,
    15], thus fitting into s8.
    
    While patch itself doesn't help in making task_struct smaller, because of
    natural alignment of ->link_count, it will make picture clearer wrt futher
    task_struct reduction patches.  My plan is to move ->fpu_counter and
    ->oomkilladj after ->ioprio filling hole on i386 and x86_64.  But that's
    for later, because bloated distro configs need looking at as well.
    
    Signed-off-by: Alexey Dobriyan <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 include/linux/sched.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/sched.h b/include/linux/sched.h
index cb952bc..87f2eb2 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1010,7 +1010,7 @@ struct task_struct {
         * a short time
         */
        unsigned char fpu_counter;
-       int oomkilladj; /* OOM kill score adjustment (bit shift). */
+       s8 oomkilladj; /* OOM kill score adjustment (bit shift). */
        char comm[TASK_COMM_LEN]; /* executable name excluding path
                                     - access with [gs]et_task_comm (which lock
                                       it with task_lock())
-
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