1. 20 Sep, 2017 3 commits
  2. 19 Sep, 2017 5 commits
  3. 18 Sep, 2017 22 commits
  4. 17 Sep, 2017 4 commits
  5. 15 Sep, 2017 4 commits
    • Kirill Smelkov's avatar
      X rxghandoff · 8021a1d5
      Kirill Smelkov authored
      With some care it is possible for serveRecv to put itself to pause and
      handoff execution to goroutine for which a packet arrived.
      
      See comments in serveRecv about how it is done.
      
      For BenchmarkTCPlosr cuts RTT 12.5μs -> 6.6μs .
      8021a1d5
    • Kirill Smelkov's avatar
      . · 4df008a0
      Kirill Smelkov authored
      4df008a0
    • Kirill Smelkov's avatar
      . · a922259e
      Kirill Smelkov authored
      a922259e
    • Kirill Smelkov's avatar
      . · b2fe5727
      Kirill Smelkov authored
      b2fe5727
  6. 14 Sep, 2017 2 commits
    • Kirill Smelkov's avatar
      X add benchmark RTT over plain net.Conn with serveRecv-style RX handler · 496bd425
      Kirill Smelkov authored
      BenchmarkSyncChanRTT-4           5000000               350 ns/op
      BenchmarkBufChanRTT-4            5000000               352 ns/op
      BenchmarkBufChanAXRXRTT-4        3000000               407 ns/op
      BenchmarkNetPipeRTT-4            2000000               938 ns/op
      BenchmarkNetPipeRTTsr-4          1000000              1594 ns/op	<-- here
      BenchmarkTCPlo-4                  300000              4814 ns/op
      BenchmarkTCPlosr-4                100000             12261 ns/op	<-- here
      BenchmarkLinkNetPipeRTT-4         500000              3017 ns/op
      BenchmarkLinkTCPRTT-4             100000             15650 ns/op
      
      the δ beetwen TCPlo + serveRecv style RX and full link over TCPlo is ~ 3μs.
      
      -> need to find out why TCPlosr = TCPlo + 8μs
      496bd425
    • Kirill Smelkov's avatar
      X ... but negative impact on separate client / server processes, strange ... · 68738036
      Kirill Smelkov authored
      without runtime.Gosched
      
      null:00   ; oid=0..16995  nread=68269354  t=536.560158ms (31.569µs / object)  x=zsha1.go
      null:00   ; oid=0..16995  nread=68269354  t=532.416867ms (31.326µs / object)  x=zsha1.go
      null:00   ; oid=0..16995  nread=68269354  t=536.958977ms (31.593µs / object)  x=zsha1.go
      null:00   ; oid=0..16995  nread=68269354  t=534.170594ms (31.429µs / object)  x=zsha1.go
      
      with runtime.Gosched
      
      null:00   ; oid=0..16995  nread=68269354  t=594.966346ms (35.006µs / object)  x=zsha1.go
      null:00   ; oid=0..16995  nread=68269354  t=597.510359ms (35.155µs / object)  x=zsha1.go
      null:00   ; oid=0..16995  nread=68269354  t=598.251026ms (35.199µs / object)  x=zsha1.go
      null:00   ; oid=0..16995  nread=68269354  t=596.02138ms (35.068µs / object)  x=zsha1.go
      
      ----
      
      -> trace shows runtime.Gosched indeed switches to woken up G without
      second syscall in serveRecv but serveRecv migrates to different M (so
      different CPU)
      68738036