> Hi gang - I just compiled and have (mostly) working TSL with the 2.6.11
> kernel (got vga framebuffer working - but pcmcia has me stumped)
> anyway the real problem I have right now is exactly the same as this error
>
> http://lists.trustix.org/pipermail/tsl-discuss/2004-January/009189.html
>
> I mean identical! - if I make the change suggested here
>
You could try whether this patch applies to your kernel. We use
it still with our kernel 2.6.11 on tinsofa classic server 2.0.
Gerald
--- linux-2.6.7/kernel/printk.c~ 2004-08-12 23:05:59.000000000 +0200
+++ linux-2.6.7/kernel/printk.c 2004-08-12 23:10:01.000000000 +0200
@@ -249,10 +249,6 @@
char c;
int error = 0;
- error = security_syslog(type);
- if (error)
- return error;
-
switch (type) {
case 0: /* Close log */
break;
@@ -373,6 +369,12 @@
asmlinkage long sys_syslog(int type, char __user * buf, int len)
{
+ int error = 0;
+
+ error = security_syslog(type);
+ if (error)
+ return error;
+
return do_syslog(type, buf, len);
}
_______________________________________________
tsl-discuss mailing list
[email protected]
http://lists.trustix.org/mailman/listinfo/tsl-discuss