Files
ubports_kernel_google_msm/include/linux
Russell King d8b295f290 [PATCH] Fix missing parens in set_personality()
If you call set_personality() with an expression such as:

	set_personality(foo ? PERS_FOO1 : PERS_FOO2);

then this evaluates to:

	((current->personality == foo ? PERS_FOO1 : PERS_FOO2) ? ...

which is obviously not the intended result.  Add the missing parents
to ensure this gets evaluated as expected:

	((current->personality == (foo ? PERS_FOO1 : PERS_FOO2)) ? ...

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-11-13 07:40:42 -08:00
..
2006-10-03 23:01:26 +02:00
2006-10-04 08:31:24 -04:00
2006-10-03 23:01:26 +02:00
2006-10-04 19:32:09 +02:00
2006-10-10 15:37:20 -07:00
2006-10-03 08:04:16 -07:00
2006-10-11 11:14:17 -07:00
2006-10-04 00:31:09 -07:00
2006-10-02 07:57:22 -07:00
2006-10-11 11:14:23 -07:00
2006-10-10 15:37:22 -07:00
2006-10-04 00:31:09 -07:00
2006-10-04 07:55:12 -07:00
2006-10-04 00:31:09 -07:00
2006-11-03 12:27:58 -08:00
2006-10-11 11:14:15 -07:00
2006-10-17 08:18:43 -07:00
2006-10-02 07:57:22 -07:00
2006-11-02 18:55:48 -05:00
2006-10-03 08:03:40 -07:00
2006-11-03 12:27:58 -08:00
2006-10-03 23:01:26 +02:00
2006-10-17 08:18:43 -07:00
2006-10-11 01:45:31 -04:00
2006-10-10 16:15:34 -07:00
2006-10-11 11:14:21 -07:00
2006-10-18 20:36:48 -07:00
2006-10-06 08:53:40 -07:00
2006-10-04 07:55:12 -07:00
2006-10-09 14:20:38 -07:00
2006-10-04 00:31:09 -07:00