patch-1.3.25 linux/kernel/sched.c

Next file: linux/mm/filemap.c
Previous file: linux/kernel/fork.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v1.3.24/linux/kernel/sched.c linux/kernel/sched.c
@@ -71,6 +71,7 @@
 extern int _setitimer(int, struct itimerval *, struct itimerval *);
 unsigned long * prof_buffer = NULL;
 unsigned long prof_len = 0;
+unsigned long prof_shift = 0;
 
 #define _S(nr) (1<<((nr)-1))
 
@@ -536,7 +537,7 @@
 	struct timer_list * timer;
 
 	cli();
-	while ((timer = timer_head.next) != &timer_head && timer->expires < jiffies) {
+	while ((timer = timer_head.next) != &timer_head && timer->expires <= jiffies) {
 		void (*fn)(unsigned long) = timer->function;
 		unsigned long data = timer->data;
 		timer->next->prev = timer->prev;
@@ -664,15 +665,13 @@
 		current->stime++;
 		if(current != task[0])
 			kstat.cpu_system++;
-#ifdef CONFIG_PROFILE
 		if (prof_buffer && current != task[0]) {
 			extern int _stext;
 			unsigned long eip = regs->eip - (unsigned long) &_stext;
-			eip >>= CONFIG_PROFILE_SHIFT;
+			eip >>= prof_shift;
 			if (eip < prof_len)
 				prof_buffer[eip]++;
 		}
-#endif
 	}
 	/*
 	 * check the cpu time limit on the process.
@@ -711,7 +710,7 @@
 		mark_bh(TIMER_BH);
 	}
 	cli();
-	if (timer_head.next->expires < jiffies)
+	if (timer_head.next->expires <= jiffies)
 		mark_bh(TIMER_BH);
 	if (tq_timer != &tq_last)
 		mark_bh(TQUEUE_BH);

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov with Sam's (original) version
of this