13:27:42 I still wonder why SmartOS install on hardware, ignores static IP addresses set in /usbkey/config and always tries to set itselfs up on DHCP. 13:34:37 it's probably a problem with the configfile itself.. 13:34:47 i've been using static IPs for the GZ for years 15:09:51 Before, I have seen that I can not set static IP in config for only external interface. Now it seems it is the case for both interfaces. 15:13:40 Does it depend if booted form the zones pool with piadm or from USB flash drive.. 15:29:52 jbk, you can ty it. just before reboot, connect smartos machine on different networks with different DHCP ip address ranges on them and see what happens. 15:30:12 for admin and external 21:09:58 I tried to run Dtrace in a zone but I'm getting this error for this one liner: dtrace -n 'syscall::entry { @[execname] = count(); }' 21:10:03 dtrace: invalid probe specifier syscall::entry { @[execname] = count(); }: "/usr/lib/dtrace/scsi.d", line 46: translator member ic_cdb definition uses incompatible types: "uint8_t *" = "int ()" 21:12:50 I remember that worked, I'll check the omnios server also 21:59:26 neirac: you're missing a ":" in your probe specifier 21:59:55 i.e. syscall:::entry 22:34:05 jperkin thanks!! 22:34:32 I'll need to increase my font size, from now on 22:36:05 oh, same result with dtrace -n 'syscall:::entry { @[execname] = count(); }' ; now I was testing in gz 22:38:50 Did you build your own image? 22:38:57 I expect if you add '-x nolibs' it'll work. 22:39:38 rmustacc yes, I build an iso to test some changes I was doing in SmartOS 22:40:22 Were you maually using dmake install versus rerunning nightly? 22:40:38 rmustacc that worked, I used the gmake iso target in smartos 22:40:42 Anyways, I'd expect -x nolibs would work. 22:40:57 Right, but if it was a custom build, presumably you were doing stuff ahead of that. 22:40:57 yes -x nolibs worked, thanks a lot. 22:42:12 So, there haven't been any changes to the scsi_task_t that the translator is there so my suspicion is that somehow you changed genunix but didn't end up having all the kernel modules rebuilt. 22:42:28 As what you're getting is basically a mismatch in ctf uniquification. 22:52:24 rmustacc now I'll know what happened if I see an error like that again. I have a question. to test changes upstream I need to run a distribution that uses illumos-gate? in other opportunities I was lucky and did not find changes between gate and illumos-joyent or illumos-omnios, now I don't have that luck.