Re: [ANNOUNCE] 2.6.29.6-rt23

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Thomas Gleixner
Date: Friday, July 10, 2009 - 11:29 am

On Fri, 10 Jul 2009, Fernando Lopez-Lezcano wrote:

Hmm. The only change which touches timer related stuff is the ktime*
speedups. Can you please apply the revert patch below and check
whether that changes anything? If not, then we need to look at the
2.6.29.5 -> .6 delta.

Thanks,

	tglx
-----
diff --git b/kernel/hrtimer.c a/kernel/hrtimer.c
index 93affb0..cb8a15c 100644
--- b/kernel/hrtimer.c
+++ a/kernel/hrtimer.c
@@ -46,6 +46,37 @@
 
 #include <asm/uaccess.h>
 
+/**
+ * ktime_get - get the monotonic time in ktime_t format
+ *
+ * returns the time in ktime_t format
+ */
+ktime_t ktime_get(void)
+{
+	struct timespec now;
+
+	ktime_get_ts(&now);
+
+	return timespec_to_ktime(now);
+}
+EXPORT_SYMBOL_GPL(ktime_get);
+
+/**
+ * ktime_get_real - get the real (wall-) time in ktime_t format
+ *
+ * returns the time in ktime_t format
+ */
+ktime_t ktime_get_real(void)
+{
+	struct timespec now;
+
+	getnstimeofday(&now);
+
+	return timespec_to_ktime(now);
+}
+
+EXPORT_SYMBOL_GPL(ktime_get_real);
+
 /*
  * The timer bases:
  *
@@ -73,6 +104,31 @@ DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
 	}
 };
 
+/**
+ * ktime_get_ts - get the monotonic clock in timespec format
+ * @ts:		pointer to timespec variable
+ *
+ * The function calculates the monotonic clock from the realtime
+ * clock and the wall_to_monotonic offset and stores the result
+ * in normalized timespec format in the variable pointed to by @ts.
+ */
+void ktime_get_ts(struct timespec *ts)
+{
+	struct timespec tomono;
+	unsigned long seq;
+
+	do {
+		seq = read_seqbegin(&xtime_lock);
+		getnstimeofday(ts);
+		tomono = wall_to_monotonic;
+
+	} while (read_seqretry(&xtime_lock, seq));
+
+	set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec,
+				ts->tv_nsec + tomono.tv_nsec);
+}
+EXPORT_SYMBOL_GPL(ktime_get_ts);
+
 /*
  * Get the coarse grained time at the softirq based on xtime and
  * wall_to_monotonic.
diff --git b/kernel/time/timekeeping.c a/kernel/time/timekeeping.c
index 4c99c98..3192dd0 100644
--- b/kernel/time/timekeeping.c
+++ a/kernel/time/timekeeping.c
@@ -118,75 +118,6 @@ void getnstimeofday(struct timespec *ts)
 
 EXPORT_SYMBOL(getnstimeofday);
 
-ktime_t ktime_get(void)
-{
-	cycle_t cycle_now, cycle_delta;
-	unsigned int seq;
-	s64 secs, nsecs;
-
-	WARN_ON(timekeeping_suspended);
-
-	do {
-		seq = read_seqbegin(&xtime_lock);
-		secs = xtime.tv_sec + wall_to_monotonic.tv_sec;
-		nsecs = xtime.tv_nsec + wall_to_monotonic.tv_nsec;
-
-		/* read clocksource: */
-		cycle_now = clocksource_read(clock);
-
-		/* calculate the delta since the last update_wall_time: */
-		cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
-
-		/* convert to nanoseconds: */
-		nsecs += cyc2ns(clock, cycle_delta);
-
-	} while (read_seqretry(&xtime_lock, seq));
-	/*
-	 * Use ktime_set/ktime_add_ns to create a proper ktime on
-	 * 32-bit architectures without CONFIG_KTIME_SCALAR.
-	 */
-	return ktime_add_ns(ktime_set(secs, 0), nsecs);
-}
-EXPORT_SYMBOL_GPL(ktime_get);
-
-/**
- * ktime_get_ts - get the monotonic clock in timespec format
- * @ts:		pointer to timespec variable
- *
- * The function calculates the monotonic clock from the realtime
- * clock and the wall_to_monotonic offset and stores the result
- * in normalized timespec format in the variable pointed to by @ts.
- */
-void ktime_get_ts(struct timespec *ts)
-{
-	cycle_t cycle_now, cycle_delta;
-	struct timespec tomono;
-	unsigned int seq;
-	s64 nsecs;
-
-	WARN_ON(timekeeping_suspended);
-
-	do {
-		seq = read_seqbegin(&xtime_lock);
-		*ts = xtime;
-		tomono = wall_to_monotonic;
-
-		/* read clocksource: */
-		cycle_now = clocksource_read(clock);
-
-		/* calculate the delta since the last update_wall_time: */
-		cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
-
-		/* convert to nanoseconds: */
-		nsecs = cyc2ns(clock, cycle_delta);
-
-	} while (read_seqretry(&xtime_lock, seq));
-
-	set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec,
-				ts->tv_nsec + tomono.tv_nsec + nsecs);
-}
-EXPORT_SYMBOL_GPL(ktime_get_ts);
-
 /**
  * do_gettimeofday - Returns the time of day in a timeval
  * @tv:		pointer to the timeval to be set
@@ -278,65 +209,10 @@ static void change_clocksource(void)
 	       clock->name);
 	 */
 }
-#else /* GENERIC_TIME */
+#else
 static inline void clocksource_forward_now(void) { }
 static inline void change_clocksource(void) { }
-
-/**
- * ktime_get - get the monotonic time in ktime_t format
- *
- * returns the time in ktime_t format
- */
-ktime_t ktime_get(void)
-{
-	struct timespec now;
-
-	ktime_get_ts(&now);
-
-	return timespec_to_ktime(now);
-}
-EXPORT_SYMBOL_GPL(ktime_get);
-
-/**
- * ktime_get_ts - get the monotonic clock in timespec format
- * @ts:		pointer to timespec variable
- *
- * The function calculates the monotonic clock from the realtime
- * clock and the wall_to_monotonic offset and stores the result
- * in normalized timespec format in the variable pointed to by @ts.
- */
-void ktime_get_ts(struct timespec *ts)
-{
-	struct timespec tomono;
-	unsigned long seq;
-
-	do {
-		seq = read_seqbegin(&xtime_lock);
-		getnstimeofday(ts);
-		tomono = wall_to_monotonic;
-
-	} while (read_seqretry(&xtime_lock, seq));
-
-	set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec,
-				ts->tv_nsec + tomono.tv_nsec);
-}
-EXPORT_SYMBOL_GPL(ktime_get_ts);
-#endif /* !GENERIC_TIME */
-
-/**
- * ktime_get_real - get the real (wall-) time in ktime_t format
- *
- * returns the time in ktime_t format
- */
-ktime_t ktime_get_real(void)
-{
-	struct timespec now;
-
-	getnstimeofday(&now);
-
-	return timespec_to_ktime(now);
-}
-EXPORT_SYMBOL_GPL(ktime_get_real);
+#endif
 
 /**
  * getrawmonotonic - Returns the raw monotonic time in a timespec
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[Announce] 2.6.29-rc4-rt1, Thomas Gleixner, (Wed Feb 11, 3:43 pm)
Re: [Announce] 2.6.29-rc4-rt1, Frederic Weisbecker, (Wed Feb 11, 5:50 pm)
Re: [Announce] 2.6.29-rc4-rt1, Frederic Weisbecker, (Wed Feb 11, 7:12 pm)
Re: [Announce] 2.6.29-rc4-rt1, Clark Williams, (Wed Feb 11, 7:55 pm)
Re: [Announce] 2.6.29-rc4-rt1, Ingo Molnar, (Thu Feb 12, 1:18 am)
[patch] rt: fix ipi kfree(), introduce IPI_SOFTIRQ, Ingo Molnar, (Thu Feb 12, 1:19 am)
Re: [patch] rt: fix ipi kfree(), introduce IPI_SOFTIRQ, Ingo Molnar, (Thu Feb 12, 1:22 am)
Re: [patch] rt: fix ipi kfree(), introduce IPI_SOFTIRQ, Ingo Molnar, (Thu Feb 12, 1:27 am)
[patch] irq threading: fix PF_HARDIRQ definition, Ingo Molnar, (Thu Feb 12, 1:38 am)
Re: [patch] irq threading: fix PF_HARDIRQ definition, Ingo Molnar, (Thu Feb 12, 1:42 am)
Re: [patch] rt: fix ipi kfree(), introduce IPI_SOFTIRQ, Peter Zijlstra, (Thu Feb 12, 2:22 am)
[patch] generic-ipi: remove kmalloc, cleanup, Ingo Molnar, (Thu Feb 12, 3:07 am)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Peter Zijlstra, (Thu Feb 12, 3:16 am)
[patch] rt: res_counter fix, Ingo Molnar, (Thu Feb 12, 3:16 am)
[patch] rt: res_counter fix, v2, Ingo Molnar, (Thu Feb 12, 3:21 am)
Re: [patch] rt: res_counter fix, v2, KAMEZAWA Hiroyuki, (Thu Feb 12, 3:46 am)
[patch] sched: cpu hotplug fix, Ingo Molnar, (Thu Feb 12, 3:50 am)
Re: [patch] rt: res_counter fix, v2, Ingo Molnar, (Thu Feb 12, 4:28 am)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Peter Zijlstra, (Thu Feb 12, 5:09 am)
Re: [patch] rt: res_counter fix, v2, KAMEZAWA Hiroyuki, (Thu Feb 12, 5:35 am)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Peter Zijlstra, (Thu Feb 12, 5:36 am)
Re: [patch] rt: res_counter fix, v2, Frederic Weisbecker, (Thu Feb 12, 7:28 am)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Frederic Weisbecker, (Thu Feb 12, 7:34 am)
Re: [patch] rt: res_counter fix, v2, Peter Zijlstra, (Thu Feb 12, 7:41 am)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Peter Zijlstra, (Thu Feb 12, 7:42 am)
Re: [patch] rt: res_counter fix, v2, Ingo Molnar, (Thu Feb 12, 7:46 am)
Re: [patch] rt: res_counter fix, v2, Frederic Weisbecker, (Thu Feb 12, 7:50 am)
Re: [patch] rt: res_counter fix, v2, Peter Zijlstra, (Thu Feb 12, 7:51 am)
Re: [patch] rt: res_counter fix, v2, Peter Zijlstra, (Thu Feb 12, 7:58 am)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Steven Rostedt, (Thu Feb 12, 8:43 am)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Peter Zijlstra, (Thu Feb 12, 8:57 am)
Re: [patch] irq threading: fix PF_HARDIRQ definition, Clark Williams, (Thu Feb 12, 9:50 am)
Re: [patch] rt: res_counter fix, v2, Balbir Singh, (Thu Feb 12, 9:58 am)
Re: [patch] rt: res_counter fix, v2, Peter Zijlstra, (Thu Feb 12, 10:29 am)
[Announce] 2.6.29-rc4-rt2, Thomas Gleixner, (Thu Feb 12, 3:56 pm)
Re: [patch] rt: res_counter fix, v2, KAMEZAWA Hiroyuki, (Thu Feb 12, 4:56 pm)
Re: [patch] rt: res_counter fix, v2, KAMEZAWA Hiroyuki, (Thu Feb 12, 5:29 pm)
Re: [Announce] 2.6.29-rc4-rt2, Frederic Weisbecker, (Thu Feb 12, 5:48 pm)
Re: [Announce] 2.6.29-rc4-rt2, Frederic Weisbecker, (Thu Feb 12, 7:16 pm)
Re: [Announce] 2.6.29-rc4-rt2, Frederic Weisbecker, (Thu Feb 12, 8:09 pm)
[patch] rt: sysprof hrtimer fix, Ingo Molnar, (Fri Feb 13, 12:26 am)
Re: [patch] rt: sysprof hrtimer fix, Frederic Weisbecker, (Fri Feb 13, 5:04 am)
Re: [patch] rt: sysprof hrtimer fix, Ingo Molnar, (Fri Feb 13, 5:49 am)
Re: [patch] rt: sysprof hrtimer fix, Frederic Weisbecker, (Fri Feb 13, 1:03 pm)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Rusty Russell, (Fri Feb 13, 2:16 pm)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Peter Zijlstra, (Fri Feb 13, 4:48 pm)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Rusty Russell, (Mon Feb 16, 12:16 am)
Re: [patch] generic-ipi: remove kmalloc, cleanup, Peter Zijlstra, (Mon Feb 16, 2:57 am)
Re: [Announce] 2.6.29-rc4-rt2, Thomas Meyer, (Thu Feb 19, 11:44 am)
Re: [Announce] 2.6.29-rc4-rt2, Peter Zijlstra, (Thu Feb 19, 1:50 pm)
Re: [Announce] 2.6.29-rc4-rt2, Thomas Meyer, (Thu Feb 19, 11:32 pm)
Re: [Announce] 2.6.29-rc4-rt2, Peter Zijlstra, (Fri Feb 20, 12:49 am)
Re: [Announce] 2.6.29-rc4-rt2, Thomas Meyer, (Fri Feb 20, 8:09 am)
Re: [Announce] 2.6.29-rc4-rt2, Ingo Molnar, (Fri Feb 20, 9:17 am)
Re: [Announce] 2.6.29-rc4-rt2, Sven-Thorsten Dietrich, (Fri Feb 20, 3:25 pm)
Re: [Announce] 2.6.29-rc4-rt2, Peter Zijlstra, (Fri Feb 20, 3:54 pm)
Re: [Announce] 2.6.29-rc4-rt2, Sven-Thorsten Dietrich, (Fri Feb 20, 5:57 pm)
Re: [Announce] 2.6.29-rc4-rt2, Thomas Meyer, (Sat Feb 21, 10:04 am)
Re: [Announce] 2.6.29-rc4-rt2, Thomas Meyer, (Sun Feb 22, 6:20 am)
[Announce] 2.6.29-rc6-rt2, Thomas Gleixner, (Mon Feb 23, 12:44 pm)
Re: [Announce] 2.6.29-rc6-rt2, Thomas Gleixner, (Tue Feb 24, 10:51 am)
[Announce] 2.6.29-rc6-rt3, Thomas Gleixner, (Tue Feb 24, 10:57 am)
Re: [Announce] 2.6.29-rc6-rt3, Peter Zijlstra, (Wed Feb 25, 11:43 am)
Re: [Announce] 2.6.29-rc6-rt3, Thomas Meyer, (Wed Feb 25, 12:34 pm)
Re: [Announce] 2.6.29-rc6-rt3, Thomas Meyer, (Thu Feb 26, 11:46 am)
[Announce] 2.6.29-rc7-rt1, Thomas Gleixner, (Thu Mar 12, 12:17 pm)
Re: [Announce] 2.6.29-rc7-rt1, Tim Sander, (Thu Mar 12, 1:43 pm)
Re: [Announce] 2.6.29-rc7-rt1, Uwe =?iso-8859-1?Q?K ..., (Thu Mar 12, 5:34 pm)
some ARM fixes for 2.6.29-rc7-rt1, Uwe =?iso-8859-1?Q?K ..., (Thu Mar 12, 6:04 pm)
Re: some ARM fixes for 2.6.29-rc7-rt1, Uwe =?iso-8859-1?Q?K ..., (Sat Mar 14, 11:48 pm)
[Announce] 2.6.29-rc78rt1, Thomas Gleixner, (Thu Mar 19, 5:31 pm)
Re: [Announce] 2.6.29-rc78rt1, Cliff Brake, (Fri Mar 20, 9:31 am)
[Announce] 2.6.29-rc8-rt2, Thomas Gleixner, (Fri Mar 20, 10:45 am)
Re: [Announce] 2.6.29-rc78rt1, Thomas Gleixner, (Fri Mar 20, 10:48 am)
Re: [Announce] 2.6.29-rc8-rt2, Will Schmidt, (Fri Mar 20, 12:19 pm)
Re: [Announce] 2.6.29-rc8-rt2, Ingo Molnar, (Fri Mar 20, 12:25 pm)
[Announce] 2.6.29-rc8-rt3, Thomas Gleixner, (Mon Mar 23, 9:26 am)
Re: [Announce] 2.6.29-rc8-rt3, Frederic Weisbecker, (Tue Mar 24, 4:04 am)
Re: [Announce] 2.6.29-rc8-rt3, Uwe =?iso-8859-1?Q?K ..., (Tue Mar 24, 2:07 pm)
[Announce] 2.6.29-rt1, Thomas Gleixner, (Wed Mar 25, 1:59 pm)
Re: [Announce] 2.6.29-rt1, Jaswinder Singh Rajput, (Wed Mar 25, 2:05 pm)
Re: [Announce] 2.6.29-rt1, Thomas Gleixner, (Wed Mar 25, 2:09 pm)
Re: [Announce] 2.6.29-rt1, GeunSik Lim, (Thu Mar 26, 12:52 am)
Re: [Announce] 2.6.29-rt1, GeunSik Lim, (Thu Mar 26, 1:02 am)
[Announce] 2.6.29-rt2, Thomas Gleixner, (Wed Apr 1, 5:17 pm)
Re: [Announce] 2.6.29-rt2, Will Schmidt, (Thu Apr 2, 9:02 am)
Re: [Announce] 2.6.29-rt2, Thomas Gleixner, (Thu Apr 2, 9:45 am)
Re: [Announce] 2.6.29-rt2, Will Schmidt, (Thu Apr 2, 10:24 am)
Re: [Announce] 2.6.29-rt2, Peter Zijlstra, (Fri Apr 3, 2:43 am)
Re: [Announce] 2.6.29-rt2, Will Schmidt, (Fri Apr 3, 8:30 am)
[Announce] 2.6.29.1-rt4, Thomas Gleixner, (Fri Apr 3, 10:21 am)
Re: [Announce] 2.6.29.1-rt4, Fernando Lopez-Lezcano, (Fri Apr 3, 4:04 pm)
Re: [Announce] 2.6.29.1-rt4, Thomas Gleixner, (Fri Apr 3, 9:30 pm)
Re: [Announce] 2.6.29.1-rt4, Fernando Lopez-Lezcano, (Fri Apr 3, 11:57 pm)
Re: [Announce] 2.6.29.1-rt4, GeunSik Lim, (Sat Apr 4, 8:28 pm)
Re: [Announce] 2.6.29.1-rt4, Thomas Gleixner, (Sun Apr 5, 1:47 am)
Re: [Announce] 2.6.29.1-rt4, Thomas Gleixner, (Sun Apr 5, 1:53 am)
Re: [Announce] 2.6.29.1-rt4, Thomas Gleixner, (Sun Apr 5, 6:53 am)
Re: [Announce] 2.6.29.1-rt4, Fernando Lopez-Lezcano, (Sun Apr 5, 2:49 pm)
Re: [Announce] 2.6.29.1-rt4, Thomas Gleixner, (Sun Apr 5, 3:02 pm)
Re: [Announce] 2.6.29.1-rt4, Fernando Lopez-Lezcano, (Sun Apr 5, 4:10 pm)
Re: [Announce] 2.6.29.1-rt4, Thomas Gleixner, (Mon Apr 6, 12:54 pm)
Re: [Announce] 2.6.29.1-rt4, Fernando Lopez-Lezcano, (Tue Apr 7, 9:52 am)
Re: [Announce] 2.6.29.1-rt4, Thomas Gleixner, (Tue Apr 7, 9:58 am)
Re: [Announce] 2.6.29.1-rt4, Fernando Lopez-Lezcano, (Tue Apr 7, 10:14 am)
Re: [Announce] 2.6.29.1-rt4, Fernando Lopez-Lezcano, (Tue Apr 7, 11:13 am)
[Announce] 2.6.29.1-rt5, Thomas Gleixner, (Wed Apr 8, 10:49 am)
[Announce] 2.6.29.1-rt6, Thomas Gleixner, (Thu Apr 9, 11:53 am)
Re: [Announce] 2.6.29.1-rt6, GeunSik Lim, (Fri Apr 10, 1:12 am)
[Announce] 2.6.29.1-rt7, Thomas Gleixner, (Fri Apr 10, 3:05 pm)
[Announce] 2.6.29.1-rt8, Thomas Gleixner, (Sat Apr 18, 3:13 am)
[Announce] 2.6.29.1-rt9, Thomas Gleixner, (Sat Apr 25, 6:03 am)
[Announce] 2.6.29.2-rt10, Thomas Gleixner, (Tue Apr 28, 3:39 pm)
Re: [Announce] 2.6.29.2-rt10, Thomas Gleixner, (Fri May 1, 2:53 pm)
[Announce] 2.6.29.3-rt12, Thomas Gleixner, (Tue May 12, 4:27 pm)
Re: [Announce] 2.6.29.3-rt12, Hugo Vincent, (Tue May 12, 5:16 pm)
Re: [Announce] 2.6.29.3-rt12, Thomas Gleixner, (Wed May 13, 3:19 am)
Re: [Announce] 2.6.29.3-rt12, Peter Zijlstra, (Wed May 13, 3:24 am)
Re: [Announce] 2.6.29.3-rt12, Thomas Gleixner, (Wed May 13, 4:05 am)
[Announce] 2.6.29.4-rt15, Thomas Gleixner, (Fri May 22, 6:02 am)
2.6.29.4-rt16, Thomas Gleixner, (Mon May 25, 6:47 am)
Re: 2.6.29.4-rt16, GeunSik Lim, (Tue Jun 2, 9:55 pm)
[Announce] 2.6.29.4-rt17, Thomas Gleixner, (Wed Jun 10, 10:02 am)
[Announce] 2.6.29.4-rt18, Thomas Gleixner, (Fri Jun 12, 10:31 am)
2.6.29.4-rt19, Thomas Gleixner, (Mon Jun 15, 2:19 am)
[ANNOUNCE] 2.6.29.5-rt21, Thomas Gleixner, (Wed Jun 17, 1:45 am)
[ANNOUNCE] 2.6.29.5-rt22, Thomas Gleixner, (Tue Jun 23, 5:30 am)
[ANNOUNCE] 2.6.29.6-rt23, Thomas Gleixner, (Thu Jul 9, 11:25 am)
Re: [ANNOUNCE] 2.6.29.6-rt23, Fernando Lopez-Lezcano, (Fri Jul 10, 11:03 am)
Re: [ANNOUNCE] 2.6.29.5-rt22, Fernando Lopez-Lezcano, (Fri Jul 10, 11:06 am)
Re: [ANNOUNCE] 2.6.29.6-rt23, Thomas Gleixner, (Fri Jul 10, 11:29 am)
Re: [ANNOUNCE] 2.6.29.6-rt23, Fernando Lopez-Lezcano, (Fri Jul 10, 5:17 pm)
Re: [ANNOUNCE] 2.6.29.6-rt23, Jaswinder Singh Rajput, (Tue Jul 14, 2:12 am)
[ANNOUNCE] 2.6.31-rc4-rt1, Thomas Gleixner, (Wed Jul 29, 5:48 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Tim Blechmann, (Thu Jul 30, 2:56 am)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Darren Hart, (Thu Jul 30, 4:04 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Darren Hart, (Thu Jul 30, 4:20 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Clark Williams, (Fri Jul 31, 7:12 am)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Frederic Weisbecker, (Fri Jul 31, 4:22 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Darren Hart, (Fri Jul 31, 5:42 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Frederic Weisbecker, (Fri Jul 31, 6:20 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Thomas Meyer, (Sat Aug 1, 2:48 am)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, john stultz, (Tue Aug 4, 6:30 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, gowrishankar, (Tue Aug 4, 11:06 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Clark Williams, (Wed Aug 5, 6:32 am)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Will Schmidt, (Wed Aug 5, 12:20 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1 (problem with CONFIG_SYSFS_D ..., Sven-Thorsten Dietrich, (Thu Aug 6, 7:46 am)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Sripathi Kodi, (Thu Aug 6, 9:26 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Darren Hart, (Fri Aug 7, 7:30 am)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Uwe =?iso-8859-1?Q?K ..., (Fri Aug 7, 1:39 pm)
[PATCH 1/6] ucb1x00: include linux/semaphore.h, =?utf-8?q?Uwe=20Klei ..., (Fri Aug 7, 1:42 pm)
[PATCH 2/6] s3c2443-ac97: convert semaphore to mutex, =?utf-8?q?Uwe=20Klei ..., (Fri Aug 7, 1:42 pm)
[PATCH 3/6] [ARM] msm: include linux/cache.h in proc_comm.c, =?utf-8?q?Uwe=20Klei ..., (Fri Aug 7, 1:42 pm)
[PATCH 4/6] [ARM] ixp2000: fix type of ixp2000_timer_interrupt, =?utf-8?q?Uwe=20Klei ..., (Fri Aug 7, 1:42 pm)
[PATCH 6/6] [ARM] Use atomic_spin_lock/atomic_spin_unlock ..., =?utf-8?q?Uwe=20Klei ..., (Fri Aug 7, 1:42 pm)
Re: [PATCH 6/6] [ARM] Use atomic_spin_lock/atomic_spin_unl ..., Uwe =?iso-8859-1?Q?K ..., (Fri Aug 7, 1:54 pm)
[PATCH 6/6] [ARM] Use atomic_spin_lock/atomic_spin_unlock ..., =?utf-8?q?Uwe=20Klei ..., (Fri Aug 7, 1:55 pm)
[PATCH RT 7/6] include linux/interrupt.h in mm/bounce.c, =?utf-8?q?Uwe=20Klei ..., (Sun Aug 9, 2:36 am)
[PATCH RT 8/6] [ARM, WATCHDOG] davinci: include mach/timex ..., =?utf-8?q?Uwe=20Klei ..., (Sun Aug 9, 2:36 am)
[PATCH RT 9/6] [RFH] Build failure on 2.6.31-rc4-rt1 in mm ..., =?utf-8?q?Uwe=20Klei ..., (Sun Aug 9, 2:36 am)
Re: [PATCH RT 8/6] [ARM, WATCHDOG] davinci: include mach/t ..., Russell King - ARM Linux, (Sun Aug 9, 2:43 am)
Re: [PATCH RT 8/6] [ARM, WATCHDOG] davinci: include mach/t ..., Russell King - ARM Linux, (Mon Aug 10, 10:26 am)
Re: [PATCH RT 8/6] [ARM, WATCHDOG] davinci: include mach/t ..., Russell King - ARM Linux, (Mon Aug 10, 3:02 pm)
Re: [ANNOUNCE] 2.6.29.6-rt23, Jan Engelhardt, (Tue Aug 11, 3:52 am)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Thomas Gleixner, (Tue Aug 11, 11:09 am)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Will Schmidt, (Wed Aug 12, 1:45 pm)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Thomas Gleixner, (Thu Aug 13, 12:30 am)
Re: [ANNOUNCE] 2.6.31-rc4-rt1, Will Schmidt, (Thu Aug 13, 8:04 am)
[PATCH] [RFC, RT] fix kmap_high_get, =?utf-8?q?Uwe=20Klei ..., (Thu Aug 13, 2:34 pm)
[PATCH -rt] Fix kmap_high_get(), Peter Zijlstra, (Fri Aug 14, 7:02 am)
Re: [PATCH -rt] Fix kmap_high_get(), Nicolas Pitre, (Fri Aug 14, 8:58 am)
Re: [PATCH -rt] Fix kmap_high_get(), Uwe =?iso-8859-1?Q?K ..., (Fri Aug 14, 1:13 pm)
[ANNOUNCE] 2.6.31-rc6-rt2, Thomas Gleixner, (Sun Aug 16, 1:41 pm)
[ANNOUNCE] 2.6.31-rc6-rt4, Thomas Gleixner, (Tue Aug 18, 1:03 pm)
Re: [ANNOUNCE] 2.6.31-rc6-rt2, Will Schmidt, (Tue Aug 18, 2:04 pm)
Re: [ANNOUNCE] 2.6.31-rc6-rt2, Thomas Gleixner, (Tue Aug 18, 2:14 pm)
Re: [ANNOUNCE] 2.6.31-rc6-rt2, john stultz, (Tue Aug 18, 3:31 pm)
Re: [ANNOUNCE] 2.6.31-rc6-rt2, john stultz, (Tue Aug 18, 3:50 pm)
Re: [ANNOUNCE] 2.6.31-rc6-rt2, Will Schmidt, (Tue Aug 18, 4:12 pm)
Re: [ANNOUNCE] 2.6.31-rc6-rt2, john stultz, (Tue Aug 18, 5:17 pm)
Re: [ANNOUNCE] 2.6.31-rc6-rt2, Will Schmidt, (Wed Aug 19, 10:12 am)
[ANNOUNCE] 2.6.31-rc6-rt5, Thomas Gleixner, (Wed Aug 19, 2:48 pm)
Re: [ANNOUNCE] 2.6.31-rc6-rt5, john stultz, (Wed Aug 19, 7:19 pm)
Re: [ANNOUNCE] 2.6.31-rc6-rt5, Dinakar Guniguntala, (Thu Aug 20, 8:29 am)
[ANNOUNCE] 2.6.31-rc6-rt6, Thomas Gleixner, (Fri Aug 21, 2:26 pm)
[ANNOUNCE] 2.6.31-rc7-rt8, Thomas Gleixner, (Wed Aug 26, 10:23 am)
Re: [ANNOUNCE] 2.6.31-rc7-rt8, Kevin Hilman, (Thu Aug 27, 4:03 am)
Re: [ANNOUNCE] 2.6.31-rc7-rt8, Thomas Gleixner, (Fri Aug 28, 2:36 pm)
Re: [ANNOUNCE] 2.6.31-rc7-rt8, Wu Zhangjin, (Wed Sep 2, 8:25 am)
Re: [ANNOUNCE] 2.6.29.6-rt23, Jan Engelhardt, (Sat Sep 12, 2:44 am)
[ANNOUNCE] 2.6.31-rt10, Thomas Gleixner, (Tue Sep 15, 2:11 pm)
Re: [ANNOUNCE] 2.6.31-rt10, Thomas Gleixner, (Tue Sep 15, 3:30 pm)
[ANNOUNCE] 2.6.31-rt11, Thomas Gleixner, (Fri Sep 18, 3:39 pm)
Re: [ANNOUNCE] 2.6.31-rt11, Jaswinder Singh Rajput, (Fri Sep 18, 9:34 pm)
Re: [ANNOUNCE] 2.6.31-rt11, Steven Rostedt, (Sat Sep 19, 6:38 am)
Re: [ANNOUNCE] 2.6.31-rt11, Jaswinder Singh Rajput, (Sat Sep 19, 8:01 am)
Re: [ANNOUNCE] 2.6.31-rt11, Jon Masters, (Sun Sep 20, 4:22 pm)
Re: [ANNOUNCE] 2.6.31-rt11, Mark Knecht, (Sun Sep 20, 4:34 pm)
Re: [ANNOUNCE] 2.6.31-rt11, Darren Hart, (Tue Sep 22, 11:31 am)
Re: [ANNOUNCE] 2.6.31-rt11, Clark Williams, (Tue Sep 22, 12:01 pm)
Re: [ANNOUNCE] 2.6.31-rt11, Jan Blunck, (Wed Sep 23, 8:39 am)
Re: [ANNOUNCE] 2.6.31-rt11, Darren Hart, (Wed Sep 23, 9:18 am)
Re: [ANNOUNCE] 2.6.31-rt11, Thomas Gleixner, (Wed Sep 23, 9:25 am)
Re: [ANNOUNCE] 2.6.31-rt11, Will Schmidt, (Wed Sep 23, 2:33 pm)
Re: [ANNOUNCE] 2.6.31-rt11, Jan Blunck, (Thu Sep 24, 8:16 am)
[ANNOUNCE] 2.6.31.2-rt13, Thomas Gleixner, (Tue Oct 6, 3:15 am)
Re: [ANNOUNCE] 2.6.31.2-rt13, Remy Bohmer, (Tue Oct 6, 11:23 am)
Re: [ANNOUNCE] 2.6.31.2-rt13, Thomas Gleixner, (Tue Oct 6, 12:23 pm)
Re: [ANNOUNCE] 2.6.31.2-rt13, Thomas Gleixner, (Tue Oct 6, 1:07 pm)
Re: [ANNOUNCE] 2.6.31.2-rt13, Remy Bohmer, (Wed Oct 7, 12:13 am)
Re: [ANNOUNCE] 2.6.31.2-rt13, Remy Bohmer, (Tue Oct 13, 8:46 am)
Re: [ANNOUNCE] 2.6.31.2-rt13, Thomas Gleixner, (Tue Oct 13, 10:11 am)
[ANNOUNCE] 2.6.31.4-rt14, Thomas Gleixner, (Wed Oct 14, 3:02 am)
Re: [ANNOUNCE] 2.6.31.4-rt14, Fernando Lopez-Lezcano, (Tue Nov 3, 7:13 pm)
Re: [ANNOUNCE] 2.6.31.4-rt14, Uwe =?iso-8859-1?Q?K ..., (Wed Nov 4, 1:38 am)
Re: [ANNOUNCE] 2.6.31.4-rt14, Fernando Lopez-Lezcano, (Thu Nov 5, 12:33 pm)
Re: [ANNOUNCE] 2.6.31.4-rt14, Thomas Gleixner, (Thu Nov 5, 12:41 pm)
Re: [ANNOUNCE] 2.6.31.4-rt14, Fernando Lopez-Lezcano, (Thu Nov 5, 12:44 pm)
[ANNOUNCE] 2.6.31.5-rt17, Thomas Gleixner, (Fri Nov 6, 9:46 am)
[ANNOUNCE] 2.6.31.6-rt19, Thomas Gleixner, (Tue Nov 10, 5:28 am)
[ANNOUNCE] 2.6.31.12-rt20, Thomas Gleixner, (Thu Jan 21, 2:23 pm)
ARM fixes for 2.6.31.12-rt20, Uwe =?iso-8859-1?Q?K ..., (Mon Jan 25, 3:33 am)
[PATCH] Rework kmap_high_get after kmap locking is gone, =?UTF-8?q?Uwe=20Klei ..., (Mon Jan 25, 3:44 am)
Re: ARM fixes for 2.6.31.12-rt20, Thomas Gleixner, (Mon Jan 25, 5:45 am)
Re: ARM fixes for 2.6.31.12-rt20, Uwe =?iso-8859-1?Q?K ..., (Mon Jan 25, 6:07 am)
[ANNOUNCE] 2.6.31.12-rt21, Thomas Gleixner, (Thu Feb 18, 9:54 am)
Re: [ANNOUNCE] 2.6.31.12-rt21, Xavier Miller, (Fri Feb 19, 1:22 am)
[ANNOUNCE] 2.6.33-rc8-rt1, Thomas Gleixner, (Sun Feb 21, 4:24 pm)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, John Kacur, (Mon Feb 22, 4:11 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Thomas Gleixner, (Mon Feb 22, 4:28 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, John Kacur, (Mon Feb 22, 5:23 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Luis Claudio R. Gonc ..., (Mon Feb 22, 5:35 am)
[patch] latency_hist: fix small memory leak, Dan Carpenter, (Mon Feb 22, 6:27 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Dan Carpenter, (Mon Feb 22, 6:29 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Dan Carpenter, (Mon Feb 22, 6:36 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Thomas Gleixner, (Mon Feb 22, 8:00 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Thomas Gleixner, (Mon Feb 22, 8:16 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, John Kacur, (Mon Feb 22, 8:53 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, John Kacur, (Mon Feb 22, 9:12 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, gowrishankar, (Tue Feb 23, 2:46 am)
Re: [ANNOUNCE] 2.6.31.12-rt21, Fernando Lopez-Lezcano, (Tue Feb 23, 12:01 pm)
Re: [ANNOUNCE] 2.6.31.12-rt21, Peter Zijlstra, (Tue Feb 23, 1:12 pm)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Arnaldo Carvalho de Melo, (Tue Feb 23, 2:58 pm)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, GeunSik Lim, (Tue Feb 23, 6:08 pm)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Dhaval Giani, (Tue Feb 23, 6:19 pm)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Sujit K M, (Tue Feb 23, 9:40 pm)
Re: [patch] latency_hist: fix small memory leak, Carsten Emde, (Wed Feb 24, 12:05 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Carsten Emde, (Wed Feb 24, 12:15 am)
2.6.33-rc8-rt1 on Beagle, Chatterjee, Amit, (Wed Feb 24, 5:20 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, GeunSik Lim, (Wed Feb 24, 7:43 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Thomas Gleixner, (Wed Feb 24, 8:09 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, GeunSik Lim, (Wed Feb 24, 9:52 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, GeunSik Lim, (Wed Feb 24, 10:05 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, GeunSik Lim, (Wed Feb 24, 10:40 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, Thomas Gleixner, (Wed Feb 24, 10:52 am)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, GeunSik Lim, (Wed Feb 24, 2:46 pm)
Re: [ANNOUNCE] 2.6.33-rc8-rt1, GeunSik Lim, (Wed Feb 24, 2:54 pm)
RE: 2.6.33-rc8-rt1 on Beagle, Chatterjee, Amit, (Thu Feb 25, 4:06 am)
Re: 2.6.33-rc8-rt1 on Beagle, Uwe =?iso-8859-1?Q?K ..., (Mon Mar 1, 8:06 am)
Re: 2.6.33-rc8-rt1 on Beagle, Thomas Gleixner, (Mon Mar 1, 9:14 am)