Lauener Nathan wrote: > Hi, > I just patched my adeos enhanced kernel with > "ipipe-tracer-2.6.15-i386-1.3.0-00.patch". When compiling the kernel > with the tracer switched on I get the following compile error: > kernel/ipipe/tracer.c:122: error: bad syntax before "void". It seems the > compiler does not recognice "notrace". Did I miss something when > patching the kernel?
notrace is defined in the patched linkage.h, and this one comes with your patch revision: --- 2.6.15/include/linux/linkage.h +++ 2.6.15-ipipe/include/linux/linkage.h @@ -51,4 +51,8 @@ #define fastcall #endif +#ifndef notrace +#define notrace __attribute__((no_instrument_function)) +#endif + #endif Moreover, just yesterday I compiled a 2.6.15.3 kernel with that revision + tracer but without problems... strange. Jan
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Adeos-main mailing list [email protected] https://mail.gna.org/listinfo/adeos-main
