[erlang-questions] Re: Erlang/OTP R14B01 has been released

Raimo Niskanen raimo+erlang-questions@REDACTED
Mon Dec 13 16:38:07 CET 2010


On Mon, Dec 13, 2010 at 02:17:14PM +0200, Zvi . wrote:
> On Mon, Dec 13, 2010 at 12:38 PM, Raimo Niskanen <
> raimo+erlang-questions@REDACTED<raimo%2Berlang-questions@REDACTED>
> > wrote:
> 
> > On Sun, Dec 12, 2010 at 09:32:33AM -0800, Zvi wrote:
> > > Hi,
> > >
> > > running new inet:getifaddrs/0 on my Ubuntu machine results in
> > > segfault:
> >
> > Which Ubuntu is it, and what configure flags did you use?
> 
> 
> Ubuntu 10.04
> 
> just:
> 
> ./configure
> make
> sudo make install

Interesting...
The 10.04 LTS in our lab does not dump core for inet:getifaddrs().
What does this produce for you (mine below, obscured):
1> inet:getiflist().
{ok,["lo","eth0"]}
2> [{If,element(2,inet:ifget(If, [flags,hwaddr,addr,netmask,broadaddr]))}||If<-element(2,inet:getiflist())].
[{"lo",
  [{flags,[up,loopback,running]},
   {hwaddr,[0,0,0,0,0,0]},
   {addr,{127,0,0,1}},
   {netmask,{255,0,0,0}},
   {broadaddr,{0,0,0,0}}]},
 {"eth0",
  [{flags,[up,broadcast,running,multicast]},
   {hwaddr,[11,11,11,11,11,11]},
   {addr,{111,111,111,111}},
   {netmask,{255,255,255,0}},
   {broadaddr,{111,111,111,255}}]}]

And this (mine below, obscured):
$ ifconfig -a
eth0      Link encap:Ethernet  HWaddr xx:xx:xx:xx:xx:xx
          inet addr:xxx.xxx.xxx.xxx  Bcast:xxx.xxx.xxx.xxx  Mask:255.255.255.0
          inet6 addr: fec0::xxx:xxxx:xxxx:xxxx/64 Scope:Site
          inet6 addr: fe80::xxx:xxxx:xxxx:xxxx/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:14963366 errors:0 dropped:0 overruns:0 frame:0
          TX packets:9774540 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:7565200376 (7.5 GB)  TX bytes:2829650336 (2.8 GB)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:791285307 errors:0 dropped:0 overruns:0 frame:0
          TX packets:791285307 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:142265685102 (142.2 GB)  TX bytes:142265685102 (142.2 GB)

$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=10.04
DISTRIB_CODENAME=lucid
DISTRIB_DESCRIPTION="Ubuntu 10.04 LTS"

$ uname -a # Allthough this was in one of your previous mails
Linux halfling 2.6.32-21-generic #32-Ubuntu SMP Fri Apr 16 08:09:38 UTC 2010 x86_64 GNU/Linux

-- 

/ Raimo Niskanen, Erlang/OTP, Ericsson AB


More information about the erlang-questions mailing list