[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080305215637.7767.99635.stgit@dv.roinet.com>
Date: Wed, 05 Mar 2008 16:56:37 -0500
From: Pavel Roskin <proski@....org>
To: Ingo Molnar <mingo@...e.hu>, linux-kernel@...r.kernel.org
Subject: [PATCH] sched: make task_nice available to non-GPL modules
The API is trivial, and so is the implementation. Linux priorities are
exposed to the userspace, so nobody should claim that software aware of
Linux priorities is a derived work of the kernel.
The complementary function set_user_nice() is available to non-GPL
modules. If the module can set the priority, it should be able to read
it back.
Signed-off-by: Pavel Roskin <proski@....org>
---
kernel/sched.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/sched.c b/kernel/sched.c
index dcd553c..6db6e0c 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -4422,7 +4422,7 @@ int task_nice(const struct task_struct *p)
{
return TASK_NICE(p);
}
-EXPORT_SYMBOL_GPL(task_nice);
+EXPORT_SYMBOL(task_nice);
/**
* idle_cpu - is a given cpu idle currently?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists