04:39:07 Have any of you read how TidalScale works? It’s pretty interesting. Even though it can do a cache coherency algorithm using local node memory as a tier for the remote node, for the most part it migrates the vcpu thread to the node that most of the data is on. Sort of reminds me of Manta in a round-about way 04:39:14 https://www.nassi.com/speaking-engagements.html 04:51:33 tidalscale.com appears to have fallen out of the DNS (NS records point at amazon, amazon refuses queries for them) 04:56:10 They got bought by HPE (who have also bought Cray and ScaleMP) 04:56:48 It seems you can only spin up TidalScale in IBM Cloud right now 06:15:08 If anyone happens to have some e1000g parts sitting around, I'd appreciate a quick regression test of https://code.illumos.org/c/illumos-gate/+/3336. 06:15:10 → CODE REVIEW 3336: 16348 e1000g I219 V17 does not attach 16347 e1000g LM+V24-27,29 support (NEW) | https://www.illumos.org/issues/16348 21:34:16 has anyone out there tried making packetdrill work on illumos? 21:50:12 [illumos-gate] 16336 Install has outlived its usefulness -- Richard Lowe 22:46:58 if you connect an AF_INET (or AF_INET6) socket localhost, does anyone know offhand if you can get the pid or uid of the peer.. I know that works for UDS, but not sure offhand if things were plumbed up for loopback as well 22:53:03 you can 22:53:16 (I did python -m http.server; telnet localhost 8000; pfiles $(pgrep telnet)) 22:53:27 also omnios doesn't have nc(1) by default, who knew? 22:53:42 I don't think you can call getpeerucred() though. 22:54:08 So are you looking for it in the program or external to the program jbk? 23:25:16 getpeerucred(3C) suggests: "The system currently supports both sides of connection endpoints for local AF_UNIX, AF_INET, and AF_INET6 sockets" 23:25:32 It just requires that they be SOCK_STREAM 23:34:16 in the program