On Thu, Feb 10, 2005 at 02:35:08AM -0800, Andrew Morton wrote: > > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.11-rc3/2.6.11-rc3-mm2/ > > > - Added the mlock and !SCHED_OTHER Linux Security Module for the audio guys. > It seems that nothing else is going to come along and this is completely > encapsulated.
Even if we accept a module that grants capabilities to groups this isn't fine yet because it only supports two specific capabilities (and even those two in different ways!) instead of adding generic support to bind capabilities to groups. More comments on the actual code: +#include <linux/module.h> +#include <linux/security.h> + +#define RT_LSM "Realtime LSM " /* syslog module name prefix */ +#define RT_ERR "Realtime: " /* syslog error message prefix */ +#include <linux/vermagic.h> +MODULE_INFO(vermagic,VERMAGIC_STRING); This doesn't belong into a module. +#define MY_NAME __stringify(KBUILD_MODNAME) Please use normal prefix. A module shouldn't behave differently depending on what name you compile it as. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/