On Tue, Mar 11, 2014 at 04:20:24PM +0800, Dongsheng Yang wrote:
On 03/11/2014 04:17 PM, Heiko Carstens wrote:Ok.
On Tue, Mar 11, 2014 at 12:59:16PM +0800, Dongsheng Yang wrote:MAX_NICE is defined in include/linux/sched/prio.h. It is applied in
+#define NICE_TO_RLIMIT(nice) (MAX_NICE - nice + 1)Where is MAX_NICE defined? The s390 patch fails to compile.
tip tree, and not in mainline yet.
You can ask three people and get five opinions ;)Also you probably want at least extra braces around the 'nice' usage toYes, agree. Another question is that I am not sure when I need to
avoid subtle side effects. (or make NICE_TO.. a function, whatever).
use a macro and when I should use a inline function.
Could you help to give me some sugguestion?
However if your above define would have been an inline function it
wouldn't suffer from possible subtle side effects and it would have
sane type checking etc. So usually functions should be preferred.