All of lore.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] 3.4.10-rt7
@ 2014-07-07 12:47 Thomas Gleixner
       [not found] ` <db211a08-b8e8-42ca-9d93-5737b589c3df@email.android.com>
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Thomas Gleixner @ 2014-07-07 12:47 UTC (permalink / raw)
  To: LKML
  Cc: linux-rt-users, Steven Rostedt, Sebastian Sewior, Ingo Molnar,
	Peter Zijlstra, Paul E. McKenney, Carsten Emde

Dear RT Folks,

I'm pleased to announce the 3.14.10-rt7 release. 3.14.10-rt6 is a not
announced update to 3.14.10 without any RT changes aside of resolving
the patch conflicts.

Changes since 3.14.10-rt6:

   * Do not clear PF_NO_SETAFFINITY flag in select_fallback_rq() -
     from Steven

   * Prevent workqueue deadlock/stall observed with XFS


A few words on the status and the future of RT:
-----------------------------------------------

The situation since last years RTLWS (https://lwn.net/Articles/572740/)
has not improved at all, it's worse than before. 

While shortly after RTLWS quite some people promised to whip up proper
funding, nothing has materialized and my personal situation is worse
than before.

I'm really tired of all the politics involved, the blantant lies and
the marketing bullshit which I have to bear. I learned a few month ago
that a certain kernel vendor invented most of RT anyway and is the
expert in this field, so the customers dont have to worry about my
statements.

Just for the record: The initial preempt-RT technology was brought to
you mostly by Ingo Molnar, Steven Rostedt, Paul Mckenney, Peter
Zijlstra and myself with lots of input from Doug Niehaus, who
researched full in kernel preemption already in the 1990s. The
technology rewrite around 3.0-rt was done by me with help from Peter
and Steven, and that's what preempt-RT today is based on.

Sure, people can believe whatever marketing bullshit they want, but
that doesn't make the truth go away. And the truth is, that those who
claim expertise are just a lying bunch of leeches.

What really set me off was the recent blunt question, when I'm going
to quit. What does this mean? Is someone out there just waiting that I
step down as preempt-RT maintainer, so some corporate entity can step
up as the saviour of the Linux RT world? So instead of merily leeching
someone seeks active control over the project. Nice try.

To make it entirely clear: I'm not going to step down, I'm just going
to spend less time on the project adjusted to the very limited funding
I have, simply because I need to work on stuff which pays the bills.

The consequences are obvious:

  - No new features, I'm rather pondering to drop stuff for 3.16-rt
    which is not absolutely required for basic operation just to make
    my life easier.

  - No massive effort to bring preempt-RT upstream

After my last talk about the state of preempt-RT at LinuxCon Japan,
Linus told me: "That was far more depressing than I feared".

The mainline kernel has seen a lot of benefit from the preempt-RT
efforts in the past 10 years and there is a lot more stuff which needs
to be done upstream in order to get preempt-RT fully integrated, which
certainly would improve the general state of the Linux kernel again.

Nothing for the faint hearted, but I have a pretty clear plan about
what needs to be done. Though that's going to be a plan for a long
time and probably obsolete at the point where I have enough spare time
to tackle it - about 15 years from now, when I'm going to retire.

At this point I want to thank all those who funded this effort so
far (RedHat and a few others) and OSADL for their testing efforts.

Enough ranting, give it a good testing,

      Thomas

---
The delta patch against 3.14.10-rt6 is appended below and can be found
here:

  http://www.kernel.org/pub/linux/kernel/projects/rt/3.14/incr/patch-3.14.10-rt6-rt7.patch.xz

The RT patch against 3.14.10 can be found here:

  http://www.kernel.org/pub/linux/kernel/projects/rt/3.14/patch-3.14.10-rt7.patch.xz

The split quilt queue is available at:

  http://www.kernel.org/pub/linux/kernel/projects/rt/3.14/patches-3.14.10-rt7.tar.xz


Index: linux-stable/kernel/sched/core.c
===================================================================
--- linux-stable.orig/kernel/sched/core.c
+++ linux-stable/kernel/sched/core.c
@@ -1376,12 +1376,6 @@ out:
 		}
 	}
 
-	/*
-	 * Clear PF_NO_SETAFFINITY, otherwise we wreckage
-	 * migrate_disable/enable. See optimization for
-	 * PF_NO_SETAFFINITY tasks there.
-	 */
-	p->flags &= ~PF_NO_SETAFFINITY;
 	return dest_cpu;
 }
 
@@ -2917,9 +2911,8 @@ need_resched:
 
 static inline void sched_submit_work(struct task_struct *tsk)
 {
-	if (!tsk->state || tsk_is_pi_blocked(tsk))
+	if (!tsk->state)
 		return;
-
 	/*
 	 * If a worker went to sleep, notify and ask workqueue whether
 	 * it wants to wake up a task to maintain concurrency.
@@ -2927,6 +2920,10 @@ static inline void sched_submit_work(str
 	if (tsk->flags & PF_WQ_WORKER)
 		wq_worker_sleeping(tsk);
 
+
+	if (tsk_is_pi_blocked(tsk))
+		return;
+
 	/*
 	 * If we are going to sleep and we have plugged IO queued,
 	 * make sure to submit it to avoid deadlocks.
Index: linux-stable/kernel/workqueue.c
===================================================================
--- linux-stable.orig/kernel/workqueue.c
+++ linux-stable/kernel/workqueue.c
@@ -126,6 +126,11 @@ enum {
  *    cpu or grabbing pool->lock is enough for read access.  If
  *    POOL_DISASSOCIATED is set, it's identical to L.
  *
+ *    On RT we need the extra protection via rt_lock_idle_list() for
+ *    the list manipulations against read access from
+ *    wq_worker_sleeping(). All other places are nicely serialized via
+ *    pool->lock.
+ *
  * MG: pool->manager_mutex and pool->lock protected.  Writes require both
  *     locks.  Reads can happen under either lock.
  *
@@ -409,6 +414,31 @@ static void copy_workqueue_attrs(struct
 		if (({ assert_rcu_or_wq_mutex(wq); false; })) { }	\
 		else
 
+#ifdef CONFIG_PREEMPT_RT_BASE
+static inline void rt_lock_idle_list(struct worker_pool *pool)
+{
+	preempt_disable();
+}
+static inline void rt_unlock_idle_list(struct worker_pool *pool)
+{
+	preempt_enable();
+}
+static inline void sched_lock_idle_list(struct worker_pool *pool) { }
+static inline void sched_unlock_idle_list(struct worker_pool *pool) { }
+#else
+static inline void rt_lock_idle_list(struct worker_pool *pool) { }
+static inline void rt_unlock_idle_list(struct worker_pool *pool) { }
+static inline void sched_lock_idle_list(struct worker_pool *pool)
+{
+	spin_lock_irq(&pool->lock);
+}
+static inline void sched_unlock_idle_list(struct worker_pool *pool)
+{
+	spin_unlock_irq(&pool->lock);
+}
+#endif
+
+
 #ifdef CONFIG_DEBUG_OBJECTS_WORK
 
 static struct debug_obj_descr work_debug_descr;
@@ -808,10 +838,16 @@ static struct worker *first_worker(struc
  */
 static void wake_up_worker(struct worker_pool *pool)
 {
-	struct worker *worker = first_worker(pool);
+	struct worker *worker;
+
+	rt_lock_idle_list(pool);
+
+	worker = first_worker(pool);
 
 	if (likely(worker))
 		wake_up_process(worker->task);
+
+	rt_unlock_idle_list(pool);
 }
 
 /**
@@ -839,7 +875,7 @@ void wq_worker_running(struct task_struc
  */
 void wq_worker_sleeping(struct task_struct *task)
 {
-	struct worker *next, *worker = kthread_data(task);
+	struct worker *worker = kthread_data(task);
 	struct worker_pool *pool;
 
 	/*
@@ -856,25 +892,18 @@ void wq_worker_sleeping(struct task_stru
 		return;
 
 	worker->sleeping = 1;
-	spin_lock_irq(&pool->lock);
+
 	/*
 	 * The counterpart of the following dec_and_test, implied mb,
 	 * worklist not empty test sequence is in insert_work().
 	 * Please read comment there.
-	 *
-	 * NOT_RUNNING is clear.  This means that we're bound to and
-	 * running on the local cpu w/ rq lock held and preemption
-	 * disabled, which in turn means that none else could be
-	 * manipulating idle_list, so dereferencing idle_list without pool
-	 * lock is safe.
 	 */
 	if (atomic_dec_and_test(&pool->nr_running) &&
 	    !list_empty(&pool->worklist)) {
-		next = first_worker(pool);
-		if (next)
-			wake_up_process(next->task);
+		sched_lock_idle_list(pool);
+		wake_up_worker(pool);
+		sched_unlock_idle_list(pool);
 	}
-	spin_unlock_irq(&pool->lock);
 }
 
 /**
@@ -1578,7 +1607,9 @@ static void worker_enter_idle(struct wor
 	worker->last_active = jiffies;
 
 	/* idle_list is LIFO */
+	rt_lock_idle_list(pool);
 	list_add(&worker->entry, &pool->idle_list);
+	rt_unlock_idle_list(pool);
 
 	if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
 		mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
@@ -1611,7 +1642,9 @@ static void worker_leave_idle(struct wor
 		return;
 	worker_clr_flags(worker, WORKER_IDLE);
 	pool->nr_idle--;
+	rt_lock_idle_list(pool);
 	list_del_init(&worker->entry);
+	rt_unlock_idle_list(pool);
 }
 
 /**
@@ -1857,7 +1890,9 @@ static void destroy_worker(struct worker
 	 */
 	get_task_struct(worker->task);
 
+	rt_lock_idle_list(pool);
 	list_del_init(&worker->entry);
+	rt_unlock_idle_list(pool);
 	worker->flags |= WORKER_DIE;
 
 	idr_remove(&pool->worker_idr, worker->id);
Index: linux-stable/localversion-rt
===================================================================
--- linux-stable.orig/localversion-rt
+++ linux-stable/localversion-rt
@@ -1 +1 @@
--rt6
+-rt7

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [ANNOUNCE] 3.4.10-rt7
       [not found] ` <db211a08-b8e8-42ca-9d93-5737b589c3df@email.android.com>
@ 2014-07-07 13:01   ` Thomas Gleixner
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Gleixner @ 2014-07-07 13:01 UTC (permalink / raw)
  To: Steven Rostedt
  Cc: LKML, linux-rt-users, Sebastian Sewior, Ingo Molnar,
	Peter Zijlstra, Paul E. McKenney, Carsten Emde

On Mon, 7 Jul 2014, Steven Rostedt wrote:

> For a minute there I thought you were taking over 3.4-rt stable. But then I noticed that the subject didn't match the body. ;-)

:)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [ANNOUNCE] 3.14.10-rt7
  2014-07-07 12:47 [ANNOUNCE] 3.4.10-rt7 Thomas Gleixner
       [not found] ` <db211a08-b8e8-42ca-9d93-5737b589c3df@email.android.com>
@ 2014-07-07 14:34 ` Thomas Gleixner
  2014-07-09 10:01   ` Pavel Vasilyev
  2014-07-07 14:54 ` [ANNOUNCE] 3.4.10-rt7 Mike Galbraith
  2 siblings, 1 reply; 9+ messages in thread
From: Thomas Gleixner @ 2014-07-07 14:34 UTC (permalink / raw)
  To: LKML
  Cc: linux-rt-users, Steven Rostedt, Sebastian Sewior, Ingo Molnar,
	Peter Zijlstra, Paul E. McKenney, Carsten Emde

This time with proper Subject line :)

Dear RT Folks,

I'm pleased to announce the 3.14.10-rt7 release. 3.14.10-rt6 is a not
announced update to 3.14.10 without any RT changes aside of resolving
the patch conflicts.

Changes since 3.14.10-rt6:

   * Do not clear PF_NO_SETAFFINITY flag in select_fallback_rq() -
     from Steven

   * Prevent workqueue deadlock/stall observed with XFS


A few words on the status and the future of RT:
-----------------------------------------------

The situation since last years RTLWS (https://lwn.net/Articles/572740/)
has not improved at all, it's worse than before. 

While shortly after RTLWS quite some people promised to whip up proper
funding, nothing has materialized and my personal situation is worse
than before.

I'm really tired of all the politics involved, the blantant lies and
the marketing bullshit which I have to bear. I learned a few month ago
that a certain kernel vendor invented most of RT anyway and is the
expert in this field, so the customers dont have to worry about my
statements.

Just for the record: The initial preempt-RT technology was brought to
you mostly by Ingo Molnar, Steven Rostedt, Paul Mckenney, Peter
Zijlstra and myself with lots of input from Doug Niehaus, who
researched full in kernel preemption already in the 1990s. The
technology rewrite around 3.0-rt was done by me with help from Peter
and Steven, and that's what preempt-RT today is based on.

Sure, people can believe whatever marketing bullshit they want, but
that doesn't make the truth go away. And the truth is, that those who
claim expertise are just a lying bunch of leeches.

What really set me off was the recent blunt question, when I'm going
to quit. What does this mean? Is someone out there just waiting that I
step down as preempt-RT maintainer, so some corporate entity can step
up as the saviour of the Linux RT world? So instead of merily leeching
someone seeks active control over the project. Nice try.

To make it entirely clear: I'm not going to step down, I'm just going
to spend less time on the project adjusted to the very limited funding
I have, simply because I need to work on stuff which pays the bills.

The consequences are obvious:

  - No new features, I'm rather pondering to drop stuff for 3.16-rt
    which is not absolutely required for basic operation just to make
    my life easier.

  - No massive effort to bring preempt-RT upstream

After my last talk about the state of preempt-RT at LinuxCon Japan,
Linus told me: "That was far more depressing than I feared".

The mainline kernel has seen a lot of benefit from the preempt-RT
efforts in the past 10 years and there is a lot more stuff which needs
to be done upstream in order to get preempt-RT fully integrated, which
certainly would improve the general state of the Linux kernel again.

Nothing for the faint hearted, but I have a pretty clear plan about
what needs to be done. Though that's going to be a plan for a long
time and probably obsolete at the point where I have enough spare time
to tackle it - about 15 years from now, when I'm going to retire.

At this point I want to thank all those who funded this effort so
far (RedHat and a few others) and OSADL for their testing efforts.

Enough ranting, give it a good testing,

      Thomas

---
The delta patch against 3.14.10-rt6 is appended below and can be found
here:

  http://www.kernel.org/pub/linux/kernel/projects/rt/3.14/incr/patch-3.14.10-rt6-rt7.patch.xz

The RT patch against 3.14.10 can be found here:

  http://www.kernel.org/pub/linux/kernel/projects/rt/3.14/patch-3.14.10-rt7.patch.xz

The split quilt queue is available at:

  http://www.kernel.org/pub/linux/kernel/projects/rt/3.14/patches-3.14.10-rt7.tar.xz


Index: linux-stable/kernel/sched/core.c
===================================================================
--- linux-stable.orig/kernel/sched/core.c
+++ linux-stable/kernel/sched/core.c
@@ -1376,12 +1376,6 @@ out:
 		}
 	}
 
-	/*
-	 * Clear PF_NO_SETAFFINITY, otherwise we wreckage
-	 * migrate_disable/enable. See optimization for
-	 * PF_NO_SETAFFINITY tasks there.
-	 */
-	p->flags &= ~PF_NO_SETAFFINITY;
 	return dest_cpu;
 }
 
@@ -2917,9 +2911,8 @@ need_resched:
 
 static inline void sched_submit_work(struct task_struct *tsk)
 {
-	if (!tsk->state || tsk_is_pi_blocked(tsk))
+	if (!tsk->state)
 		return;
-
 	/*
 	 * If a worker went to sleep, notify and ask workqueue whether
 	 * it wants to wake up a task to maintain concurrency.
@@ -2927,6 +2920,10 @@ static inline void sched_submit_work(str
 	if (tsk->flags & PF_WQ_WORKER)
 		wq_worker_sleeping(tsk);
 
+
+	if (tsk_is_pi_blocked(tsk))
+		return;
+
 	/*
 	 * If we are going to sleep and we have plugged IO queued,
 	 * make sure to submit it to avoid deadlocks.
Index: linux-stable/kernel/workqueue.c
===================================================================
--- linux-stable.orig/kernel/workqueue.c
+++ linux-stable/kernel/workqueue.c
@@ -126,6 +126,11 @@ enum {
  *    cpu or grabbing pool->lock is enough for read access.  If
  *    POOL_DISASSOCIATED is set, it's identical to L.
  *
+ *    On RT we need the extra protection via rt_lock_idle_list() for
+ *    the list manipulations against read access from
+ *    wq_worker_sleeping(). All other places are nicely serialized via
+ *    pool->lock.
+ *
  * MG: pool->manager_mutex and pool->lock protected.  Writes require both
  *     locks.  Reads can happen under either lock.
  *
@@ -409,6 +414,31 @@ static void copy_workqueue_attrs(struct
 		if (({ assert_rcu_or_wq_mutex(wq); false; })) { }	\
 		else
 
+#ifdef CONFIG_PREEMPT_RT_BASE
+static inline void rt_lock_idle_list(struct worker_pool *pool)
+{
+	preempt_disable();
+}
+static inline void rt_unlock_idle_list(struct worker_pool *pool)
+{
+	preempt_enable();
+}
+static inline void sched_lock_idle_list(struct worker_pool *pool) { }
+static inline void sched_unlock_idle_list(struct worker_pool *pool) { }
+#else
+static inline void rt_lock_idle_list(struct worker_pool *pool) { }
+static inline void rt_unlock_idle_list(struct worker_pool *pool) { }
+static inline void sched_lock_idle_list(struct worker_pool *pool)
+{
+	spin_lock_irq(&pool->lock);
+}
+static inline void sched_unlock_idle_list(struct worker_pool *pool)
+{
+	spin_unlock_irq(&pool->lock);
+}
+#endif
+
+
 #ifdef CONFIG_DEBUG_OBJECTS_WORK
 
 static struct debug_obj_descr work_debug_descr;
@@ -808,10 +838,16 @@ static struct worker *first_worker(struc
  */
 static void wake_up_worker(struct worker_pool *pool)
 {
-	struct worker *worker = first_worker(pool);
+	struct worker *worker;
+
+	rt_lock_idle_list(pool);
+
+	worker = first_worker(pool);
 
 	if (likely(worker))
 		wake_up_process(worker->task);
+
+	rt_unlock_idle_list(pool);
 }
 
 /**
@@ -839,7 +875,7 @@ void wq_worker_running(struct task_struc
  */
 void wq_worker_sleeping(struct task_struct *task)
 {
-	struct worker *next, *worker = kthread_data(task);
+	struct worker *worker = kthread_data(task);
 	struct worker_pool *pool;
 
 	/*
@@ -856,25 +892,18 @@ void wq_worker_sleeping(struct task_stru
 		return;
 
 	worker->sleeping = 1;
-	spin_lock_irq(&pool->lock);
+
 	/*
 	 * The counterpart of the following dec_and_test, implied mb,
 	 * worklist not empty test sequence is in insert_work().
 	 * Please read comment there.
-	 *
-	 * NOT_RUNNING is clear.  This means that we're bound to and
-	 * running on the local cpu w/ rq lock held and preemption
-	 * disabled, which in turn means that none else could be
-	 * manipulating idle_list, so dereferencing idle_list without pool
-	 * lock is safe.
 	 */
 	if (atomic_dec_and_test(&pool->nr_running) &&
 	    !list_empty(&pool->worklist)) {
-		next = first_worker(pool);
-		if (next)
-			wake_up_process(next->task);
+		sched_lock_idle_list(pool);
+		wake_up_worker(pool);
+		sched_unlock_idle_list(pool);
 	}
-	spin_unlock_irq(&pool->lock);
 }
 
 /**
@@ -1578,7 +1607,9 @@ static void worker_enter_idle(struct wor
 	worker->last_active = jiffies;
 
 	/* idle_list is LIFO */
+	rt_lock_idle_list(pool);
 	list_add(&worker->entry, &pool->idle_list);
+	rt_unlock_idle_list(pool);
 
 	if (too_many_workers(pool) && !timer_pending(&pool->idle_timer))
 		mod_timer(&pool->idle_timer, jiffies + IDLE_WORKER_TIMEOUT);
@@ -1611,7 +1642,9 @@ static void worker_leave_idle(struct wor
 		return;
 	worker_clr_flags(worker, WORKER_IDLE);
 	pool->nr_idle--;
+	rt_lock_idle_list(pool);
 	list_del_init(&worker->entry);
+	rt_unlock_idle_list(pool);
 }
 
 /**
@@ -1857,7 +1890,9 @@ static void destroy_worker(struct worker
 	 */
 	get_task_struct(worker->task);
 
+	rt_lock_idle_list(pool);
 	list_del_init(&worker->entry);
+	rt_unlock_idle_list(pool);
 	worker->flags |= WORKER_DIE;
 
 	idr_remove(&pool->worker_idr, worker->id);
Index: linux-stable/localversion-rt
===================================================================
--- linux-stable.orig/localversion-rt
+++ linux-stable/localversion-rt
@@ -1 +1 @@
--rt6
+-rt7


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [ANNOUNCE] 3.4.10-rt7
  2014-07-07 12:47 [ANNOUNCE] 3.4.10-rt7 Thomas Gleixner
       [not found] ` <db211a08-b8e8-42ca-9d93-5737b589c3df@email.android.com>
  2014-07-07 14:34 ` [ANNOUNCE] 3.14.10-rt7 Thomas Gleixner
@ 2014-07-07 14:54 ` Mike Galbraith
  2 siblings, 0 replies; 9+ messages in thread
From: Mike Galbraith @ 2014-07-07 14:54 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: LKML, linux-rt-users, Steven Rostedt, Sebastian Sewior,
	Ingo Molnar, Peter Zijlstra, Paul E. McKenney, Carsten Emde

On Mon, 2014-07-07 at 14:47 +0200, Thomas Gleixner wrote: 
> Dear RT Folks,
> 
> I'm pleased to announce the 3.14.10-rt7 release. 3.14.10-rt6 is a not
> announced update to 3.14.10 without any RT changes aside of resolving
> the patch conflicts.
> 
> Changes since 3.14.10-rt6:
> 
>    * Do not clear PF_NO_SETAFFINITY flag in select_fallback_rq() -
>      from Steven
> 
>    * Prevent workqueue deadlock/stall observed with XFS
> 
> 
> A few words on the status and the future of RT:
> -----------------------------------------------
> 
> The situation since last years RTLWS (https://lwn.net/Articles/572740/)
> has not improved at all, it's worse than before. 
> 
> While shortly after RTLWS quite some people promised to whip up proper
> funding, nothing has materialized and my personal situation is worse
> than before.

Sorry to hear that funding hasn't as yet happened.

> I'm really tired of all the politics involved, the blantant lies and
> the marketing bullshit which I have to bear. I learned a few month ago
> that a certain kernel vendor invented most of RT anyway and is the
> expert in this field, so the customers dont have to worry about my
> statements.

Wow, so someone thinks their customers either can't or won't read.  That
kind of marketing can backfire in a big way.

-Mike



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [ANNOUNCE] 3.14.10-rt7
  2014-07-07 14:34 ` [ANNOUNCE] 3.14.10-rt7 Thomas Gleixner
@ 2014-07-09 10:01   ` Pavel Vasilyev
  2014-07-09 11:34       ` Henrik Austad
  0 siblings, 1 reply; 9+ messages in thread
From: Pavel Vasilyev @ 2014-07-09 10:01 UTC (permalink / raw)
  To: Thomas Gleixner, LKML
  Cc: linux-rt-users, Steven Rostedt, Sebastian Sewior, Ingo Molnar,
	Peter Zijlstra, Paul E. McKenney, Carsten Emde

07.07.2014 18:34, Thomas Gleixner пишет:
> This time with proper Subject line :)
>
> Dear RT Folks,
>
> I'm pleased to announce the 3.14.10-rt7 release. 3.14.10-rt6 is a not
> announced update to 3.14.10 without any RT changes aside of resolving
> the patch conflicts.
>
> Changes since 3.14.10-rt6:
>
>     * Do not clear PF_NO_SETAFFINITY flag in select_fallback_rq() -
>       from Steven
>
>     * Prevent workqueue deadlock/stall observed with XFS
>
>
> A few words on the status and the future of RT:
> -----------------------------------------------
>
> The situation since last years RTLWS (https://lwn.net/Articles/572740/)
> has not improved at all, it's worse than before.
>
> While shortly after RTLWS quite some people promised to whip up proper
> funding, nothing has materialized and my personal situation is worse
> than before.

Create site, add PayPal [DOANTE] button.


-- 

                                                          Pavel.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [ANNOUNCE] 3.14.10-rt7
  2014-07-09 10:01   ` Pavel Vasilyev
@ 2014-07-09 11:34       ` Henrik Austad
  0 siblings, 0 replies; 9+ messages in thread
From: Henrik Austad @ 2014-07-09 11:34 UTC (permalink / raw)
  To: Pavel Vasilyev, Thomas Gleixner
  Cc: LKML, linux-rt-users, Steven Rostedt, Sebastian Sewior,
	Ingo Molnar, Peter Zijlstra, Paul E. McKenney, Carsten Emde

On Wed, Jul 09, 2014 at 02:01:58PM +0400, Pavel Vasilyev wrote:
> 07.07.2014 18:34, Thomas Gleixner пишет:
> >This time with proper Subject line :)
> >
> >Dear RT Folks,
> >
> >I'm pleased to announce the 3.14.10-rt7 release. 3.14.10-rt6 is a not
> >announced update to 3.14.10 without any RT changes aside of resolving
> >the patch conflicts.
> >
> >Changes since 3.14.10-rt6:
> >
> >    * Do not clear PF_NO_SETAFFINITY flag in select_fallback_rq() -
> >      from Steven
> >
> >    * Prevent workqueue deadlock/stall observed with XFS
> >
> >
> >A few words on the status and the future of RT:
> >-----------------------------------------------
> >
> >The situation since last years RTLWS (https://lwn.net/Articles/572740/)
> >has not improved at all, it's worse than before.
> >
> >While shortly after RTLWS quite some people promised to whip up proper
> >funding, nothing has materialized and my personal situation is worse
> >than before.
> 
> Create site, add PayPal [DOANTE] button.

But.. where would they donate money?

Jokes aside, setting up an easy way to support the project wouldn't be such 
a bad idea. Is this something we (tglx) could talk (convince) 
linuxfoundation into hosting?

As said in the original mail, the kernel has benefited greatly from this 
effort over the last few years, making the effort more formal could help 
secure funding and let tglx et al focus on the task at hand and not on 
silly money issues.

Just my 0.1237 Norwegian krone.

-- 
Henrik Austad

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [ANNOUNCE] 3.14.10-rt7
@ 2014-07-09 11:34       ` Henrik Austad
  0 siblings, 0 replies; 9+ messages in thread
From: Henrik Austad @ 2014-07-09 11:34 UTC (permalink / raw)
  To: Pavel Vasilyev, Thomas Gleixner
  Cc: LKML, linux-rt-users, Steven Rostedt, Sebastian Sewior,
	Ingo Molnar, Peter Zijlstra, Paul E. McKenney, Carsten Emde

On Wed, Jul 09, 2014 at 02:01:58PM +0400, Pavel Vasilyev wrote:
> 07.07.2014 18:34, Thomas Gleixner пишет:
> >This time with proper Subject line :)
> >
> >Dear RT Folks,
> >
> >I'm pleased to announce the 3.14.10-rt7 release. 3.14.10-rt6 is a not
> >announced update to 3.14.10 without any RT changes aside of resolving
> >the patch conflicts.
> >
> >Changes since 3.14.10-rt6:
> >
> >    * Do not clear PF_NO_SETAFFINITY flag in select_fallback_rq() -
> >      from Steven
> >
> >    * Prevent workqueue deadlock/stall observed with XFS
> >
> >
> >A few words on the status and the future of RT:
> >-----------------------------------------------
> >
> >The situation since last years RTLWS (https://lwn.net/Articles/572740/)
> >has not improved at all, it's worse than before.
> >
> >While shortly after RTLWS quite some people promised to whip up proper
> >funding, nothing has materialized and my personal situation is worse
> >than before.
> 
> Create site, add PayPal [DOANTE] button.

But.. where would they donate money?

Jokes aside, setting up an easy way to support the project wouldn't be such 
a bad idea. Is this something we (tglx) could talk (convince) 
linuxfoundation into hosting?

As said in the original mail, the kernel has benefited greatly from this 
effort over the last few years, making the effort more formal could help 
secure funding and let tglx et al focus on the task at hand and not on 
silly money issues.

Just my 0.1237 Norwegian krone.

-- 
Henrik Austad
--
To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [ANNOUNCE] 3.14.10-rt7
  2014-07-09 11:34       ` Henrik Austad
  (?)
@ 2014-07-09 12:04       ` Pavel Vasilyev
  2014-07-09 13:30         ` Stanislav Meduna
  -1 siblings, 1 reply; 9+ messages in thread
From: Pavel Vasilyev @ 2014-07-09 12:04 UTC (permalink / raw)
  To: Henrik Austad, Thomas Gleixner
  Cc: LKML, linux-rt-users, Steven Rostedt, Sebastian Sewior,
	Ingo Molnar, Peter Zijlstra, Paul E. McKenney, Carsten Emde

09.07.2014 15:34, Henrik Austad пишет:
> On Wed, Jul 09, 2014 at 02:01:58PM +0400, Pavel Vasilyev wrote:
>> 07.07.2014 18:34, Thomas Gleixner пишет:

>>> A few words on the status and the future of RT:
>>> -----------------------------------------------
>>>
>>> The situation since last years RTLWS (https://lwn.net/Articles/572740/)
>>> has not improved at all, it's worse than before.
>>>
>>> While shortly after RTLWS quite some people promised to whip up proper
>>> funding, nothing has materialized and my personal situation is worse
>>> than before.
>>
>> Create site, add PayPal [DONATE] button.
>
> But.. where would they donate money?
>
> Jokes aside, setting up an easy way to support the project wouldn't be such
> a bad idea. Is this something we (tglx) could talk (convince)
> linuxfoundation into hosting?

Linux foundation || OSADL || Independent hosting ...
Why not? Grsecurity project so lives. When I worked actively with grsecurity, 
10-20$ sent almost every month. Now they found sponsors, сreated commercial 
technical support.


-- 

                                                          Pavel.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [ANNOUNCE] 3.14.10-rt7
  2014-07-09 12:04       ` Pavel Vasilyev
@ 2014-07-09 13:30         ` Stanislav Meduna
  0 siblings, 0 replies; 9+ messages in thread
From: Stanislav Meduna @ 2014-07-09 13:30 UTC (permalink / raw)
  To: linux-rt-users

On 09.07.2014 14:04, Pavel Vasilyev wrote:

> Why not? Grsecurity project so lives. When I worked actively with
> grsecurity, 10-20$ sent almost every month.

Exactly - I am quite sure I could talk my employer into donating.

-- 
                                        Stano


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2014-07-09 13:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-07 12:47 [ANNOUNCE] 3.4.10-rt7 Thomas Gleixner
     [not found] ` <db211a08-b8e8-42ca-9d93-5737b589c3df@email.android.com>
2014-07-07 13:01   ` Thomas Gleixner
2014-07-07 14:34 ` [ANNOUNCE] 3.14.10-rt7 Thomas Gleixner
2014-07-09 10:01   ` Pavel Vasilyev
2014-07-09 11:34     ` Henrik Austad
2014-07-09 11:34       ` Henrik Austad
2014-07-09 12:04       ` Pavel Vasilyev
2014-07-09 13:30         ` Stanislav Meduna
2014-07-07 14:54 ` [ANNOUNCE] 3.4.10-rt7 Mike Galbraith

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.