Re: Kernel symbols for linking LKM's against.

Alan Cox (alan@lxorguk.ukuu.org.uk)
Tue, 11 Nov 1997 21:14:06 +0000 (GMT)


> I should add, that it appears inline functions are highly dependent on
> gcc being used with -O2 or something similar. I was also having trouble
> getting ntohl() and friends resolved until I used -O2.

You need either -finline-functions or an optimsation level (like -O2) that
enables exactly this.

Alan