Index: linux-2.6.13-rc6-mm1/Makefile =================================================================== --- linux-2.6.13-rc6-mm1.orig/Makefile 2005-08-19 17:26:46.000000000 -0700 +++ linux-2.6.13-rc6-mm1/Makefile 2005-08-23 08:18:24.000000000 -0700 @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 13 -EXTRAVERSION =-rc6-mm1 +EXTRAVERSION =-rc6-mm1-delta NAME=Woozy Numbat # *DOCUMENTATION* Index: linux-2.6.13-rc6-mm1/include/linux/sched.h =================================================================== --- linux-2.6.13-rc6-mm1.orig/include/linux/sched.h 2005-08-23 08:18:13.000000000 -0700 +++ linux-2.6.13-rc6-mm1/include/linux/sched.h 2005-08-23 13:23:55.000000000 -0700 @@ -647,6 +647,15 @@ struct task_struct { atomic_t usage; unsigned long flags; /* per process flags, defined below */ unsigned long ptrace; + /* + * Deltas for corresponding counters in mm_struct which require + * the page_table_lock. The deltas may be updated and are later + * folded into the corresponding mm_struct counters. + */ + long delta_rss; + long delta_anon_rss; + long delta_nr_ptes; + int lock_depth; /* BKL lock depth */ @@ -682,15 +691,6 @@ struct task_struct { struct mm_struct *mm, *active_mm; - /* - * Deltas for corresponding counters in mm_struct which require - * the page_table_lock. The deltas may be updated and are later - * folded into the corresponding mm_struct counters. - */ - long delta_rss; - long delta_anon_rss; - long delta_nr_ptes; - /* task state */ struct linux_binfmt *binfmt; long exit_state;