Oleg Nesterov 246bb0b1de kill PF_BORROWED_MM in favour of PF_KTHREAD
Kill PF_BORROWED_MM.  Change use_mm/unuse_mm to not play with ->flags, and
do s/PF_BORROWED_MM/PF_KTHREAD/ for a couple of other users.

No functional changes yet.  But this allows us to do further
fixes/cleanups.

oom_kill/ptrace/etc often check "p->mm != NULL" to filter out the
kthreads, this is wrong because of use_mm().  The problem with
PF_BORROWED_MM is that we need task_lock() to avoid races.  With this
patch we can check PF_KTHREAD directly, or use a simple lockless helper:

	/* The result must not be dereferenced !!! */
	struct mm_struct *__get_task_mm(struct task_struct *tsk)
	{
		if (tsk->flags & PF_KTHREAD)
			return NULL;
		return tsk->mm;
	}

Note also ecard_task().  It runs with ->mm != NULL, but it's the kernel
thread without PF_BORROWED_MM.

Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Roland McGrath <roland@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-07-25 10:53:39 -07:00
..
2008-07-03 09:59:03 -05:00
2008-02-08 09:22:40 -08:00
2008-07-24 10:47:33 -07:00
2008-07-25 10:53:33 -07:00
2008-07-25 10:53:34 -07:00
2008-04-29 08:06:00 -07:00
2008-07-25 10:53:33 -07:00
2008-02-08 09:22:40 -08:00
2008-05-21 16:55:58 -07:00
2008-07-25 10:53:30 -07:00
2008-07-25 10:53:34 -07:00
2008-07-02 15:06:27 -06:00
2008-07-24 17:32:41 -07:00
2007-10-18 14:37:31 -07:00
2008-05-24 09:56:08 -07:00
2008-07-24 10:47:17 -07:00
2008-07-04 09:52:14 +02:00
2008-04-30 08:29:52 -07:00
2008-07-15 17:35:24 +03:00
2008-07-25 10:53:34 -07:00
2008-06-06 11:29:13 -07:00
2008-06-06 11:29:13 -07:00
2008-01-30 13:31:46 +01:00
2008-07-24 10:47:27 -07:00
2008-05-01 13:08:16 -04:00
2008-07-25 10:53:39 -07:00
2008-07-24 10:47:28 -07:00
2008-05-01 13:08:16 -04:00
2008-07-14 19:10:52 +03:00
2008-05-06 13:13:37 -07:00
2008-02-06 10:41:07 -08:00
2008-04-29 08:06:00 -07:00
2008-07-25 10:53:33 -07:00
2008-06-06 11:29:08 -07:00
2008-02-14 21:13:33 -08:00
2008-07-24 10:47:19 -07:00
2008-07-24 10:47:29 -07:00
2008-07-25 10:53:35 -07:00
2008-07-02 15:06:27 -06:00
2008-02-14 21:13:33 -08:00