Re: pre5 compile problems

Linus Torvalds (torvalds@transmeta.com)
Tue, 12 Aug 1997 20:25:07 -0700 (PDT)


On Tue, 12 Aug 1997, Dave Wreski wrote:
>
> Hi all. I haven't even seen any announcement for 2.0.31-pre5 yet; I'm
> wondering what the 140k changes were between 4 and 5.. It patched ok, but
> received this problem when compiling:

The 140k patches between 4 and 5 are the networking updates, but there was
obviously at least one minor boo-boo in there..

> net/network.a(ipv4.o): In function `ip_rcv':
> ipv4.o(.text+0x2a5e): undefined reference to `net_alias_dev_rcv_sel32'
> net/network.a(ipv4.o): In function `arp_rcv':
> ipv4.o(.text+0xfdc1): undefined reference to `net_alias_dev_rcv_sel32'

Change the calls to "net_alias_dev_rcv_sel32()" into calls to
"net_alias_dev_rx32()". This happens in net/ipv4/arp.c and
net/ipv4/ip_input.c if I remember correctly.

That _should_ clear up that particular problem. Holler if it doesn't help,

Linus