[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Dazuko-help] Compiling of dazuko 2.3.5 fails on kernel 2.6.25.4
From: |
John Ogness |
Subject: |
Re: [Dazuko-help] Compiling of dazuko 2.3.5 fails on kernel 2.6.25.4 |
Date: |
Tue, 17 Jun 2008 15:13:22 +0200 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.1 (berkeley-unix) |
On 2008-06-17, Martin Koch <address@hidden> wrote:
> Unfortunately the patch dosn't help so much. This is the output:
> CC security/dazuko/dazuko_linux26.o
> security/dazuko/dazuko_linux26.c: In Funktion »check_parent«:
> security/dazuko/dazuko_linux26.c:429: Fehler: »struct task_struct«
> hat kein Element namens »p_pptr«
It seems you have quite a special kernel indeed. It would surpise me
that the task_struct in your kernel doesn't have some pointer to its
parent (whatever it might be called).
The function check_parent() is only used for the Trusted Application
Framework. If the Dazuko application you are using does not require
this, it would be safe to change the whole function to be:
static inline int check_parent(struct task_struct *parent, struct task_struct
*child)
{
return -1;
}
John Ogness
--
Dazuko Maintainer