Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PC2 on GPU may crash, leaks out GPU RAM and worker #1326

Closed
karalabe opened this issue Oct 24, 2020 · 14 comments
Closed

PC2 on GPU may crash, leaks out GPU RAM and worker #1326

karalabe opened this issue Oct 24, 2020 · 14 comments

Comments

@karalabe
Copy link

I've configured my node to run both C2 and PC2 on the GPU.

FIL_PROOFS_USE_GPU_COLUMN_BUILDER=1
FIL_PROOFS_USE_GPU_TREE_BUILDER=1

I've also configured my node to run multiple PC2s concurrently.

An annoying issue I've been hitting now is that from time to time there are more jobs scheduled to the GPU than available RAM. In the case of C2, if there's not enough available GPU RAM, it will print an error and continue on the CPU:

Oct 24 08:17:09 filecoin lotus-worker[30970]: {"level":"warn","ts":"2020-10-24T08:17:09.464+0300","logger":"bellperson::gpu::locks","caller":"/root/.cargo/registry/src/github.com-1ecc6>
Oct 24 08:17:09 filecoin lotus-worker[30970]: ################################ OPENCL ERROR ###############################
Oct 24 08:17:09 filecoin lotus-worker[30970]: Error executing function: clEnqueueNDRangeKernel("radix_fft")
Oct 24 08:17:09 filecoin lotus-worker[30970]: Status error code: CL_MEM_OBJECT_ALLOCATION_FAILURE (-4)
Oct 24 08:17:09 filecoin lotus-worker[30970]: Please visit the following url for more information:
Oct 24 08:17:09 filecoin lotus-worker[30970]: https://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clEnqueueNDRangeKernel.html#errors
Oct 24 08:17:09 filecoin lotus-worker[30970]: #############################################################################
Oct 24 08:17:09 filecoin lotus-worker[30970]: "}

However, if the GPU RAM limit is hit on PC2, the process crashes:

Oct 23 20:08:04 filecoin lotus-worker[30970]: thread '<unnamed>' panicked at 'failed to add columns: GPUError("FutharkError(FutharkError { error: \"./lib/a.c:18770: OpenCL call\\n  ope>
Oct 23 20:08:04 filecoin lotus-worker[30970]: stack backtrace:
Oct 23 20:08:04 filecoin lotus-worker[30970]:    0: backtrace::backtrace::libunwind::trace
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at ./cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.44/src/backtrace/libunwind.rs:86
Oct 23 20:08:04 filecoin lotus-worker[30970]:    1: backtrace::backtrace::trace_unsynchronized
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at ./cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.44/src/backtrace/mod.rs:66
Oct 23 20:08:04 filecoin lotus-worker[30970]:    2: std::sys_common::backtrace::_print_fmt
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libstd/sys_common/backtrace.rs:78
Oct 23 20:08:04 filecoin lotus-worker[30970]:    3: <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libstd/sys_common/backtrace.rs:59
Oct 23 20:08:04 filecoin lotus-worker[30970]:    4: core::fmt::write
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libcore/fmt/mod.rs:1063
Oct 23 20:08:04 filecoin lotus-worker[30970]:    5: std::io::Write::write_fmt
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libstd/io/mod.rs:1426
Oct 23 20:08:04 filecoin lotus-worker[30970]:    6: std::sys_common::backtrace::_print
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libstd/sys_common/backtrace.rs:62
Oct 23 20:08:04 filecoin lotus-worker[30970]:    7: std::sys_common::backtrace::print
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libstd/sys_common/backtrace.rs:49
Oct 23 20:08:04 filecoin lotus-worker[30970]:    8: std::panicking::default_hook::{{closure}}
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libstd/panicking.rs:204
Oct 23 20:08:04 filecoin lotus-worker[30970]:    9: std::panicking::default_hook
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libstd/panicking.rs:224
Oct 23 20:08:04 filecoin lotus-worker[30970]:   10: std::panicking::rust_panic_with_hook
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libstd/panicking.rs:470
Oct 23 20:08:04 filecoin lotus-worker[30970]:   11: rust_begin_unwind
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libstd/panicking.rs:378
Oct 23 20:08:04 filecoin lotus-worker[30970]:   12: core::panicking::panic_fmt
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libcore/panicking.rs:85
Oct 23 20:08:04 filecoin lotus-worker[30970]:   13: core::option::expect_none_failed
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libcore/option.rs:1211
Oct 23 20:08:04 filecoin lotus-worker[30970]:   14: <std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once
Oct 23 20:08:04 filecoin lotus-worker[30970]:   15: std::panicking::try::do_call
Oct 23 20:08:04 filecoin lotus-worker[30970]:   16: __rust_maybe_catch_panic
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libpanic_unwind/lib.rs:86
Oct 23 20:08:04 filecoin lotus-worker[30970]:   17: <rayon_core::job::HeapJob<BODY> as rayon_core::job::Job>::execute
Oct 23 20:08:04 filecoin lotus-worker[30970]:   18: rayon_core::registry::WorkerThread::wait_until_cold
Oct 23 20:08:04 filecoin lotus-worker[30970]:   19: rayon_core::scope::ScopeBase::steal_till_jobs_complete
Oct 23 20:08:04 filecoin lotus-worker[30970]:   20: <std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once
Oct 23 20:08:04 filecoin lotus-worker[30970]:   21: std::panicking::try::do_call
Oct 23 20:08:04 filecoin lotus-worker[30970]:   22: __rust_maybe_catch_panic
Oct 23 20:08:04 filecoin lotus-worker[30970]:              at src/libpanic_unwind/lib.rs:86
Oct 23 20:08:04 filecoin lotus-worker[30970]:   23: <rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute
Oct 23 20:08:04 filecoin lotus-worker[30970]:   24: rayon_core::registry::WorkerThread::wait_until_cold
Oct 23 20:08:04 filecoin lotus-worker[30970]:   25: rayon_core::registry::ThreadBuilder::run
Oct 23 20:08:04 filecoin lotus-worker[30970]: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

The big issues here are:

  • The rust prover crashes, but it never notifies lotus of the failure. So essentially lotus things there's a PC2 running and waits indefinitely, whilst the prover is long dead and doesn't do anything.
  • Running nvidia-smi indicates that although in this state I have 0% GPU usage, it nonetheless has 1.6GB GPU RAM usage. It would seem that not only does the prover crash, but it leaks out video RAM that will make the next scenario even worse, gradually making everything crash on the GPU due to not enough RAM.
@porcuquine
Copy link
Collaborator

It sounds like tree-building is leaking GPU RAM. This was much worse before and believed fixed. I think I know where to look and generally what the fix should be, if I can confirm.

If you were to make a minimal issue in the neptune repository, referencing this one, that would help with tracking.

@karalabe
Copy link
Author

It only seems to happen if the prover crashes though. I haven't seen a leak while normally operating.

@porcuquine
Copy link
Collaborator

Can you estimate how often it happens? Is it regular?

@karalabe
Copy link
Author

Another data point, my PC2 just crashed with bad file descriptor (this seems to be another bug, if I restart my miner in PC2, it will fail 3x on PC2 then revert to PC1 with this error):

Oct 24 11:00:38 filecoin lotus-worker[20925]: thread '<unnamed>' panicked at 'failed to flatten and write store: Bad file descriptor (os error 9)', /root/.cargo/registry/src/github.com>
Oct 24 11:00:38 filecoin lotus-worker[20925]: stack backtrace:
Oct 24 11:00:38 filecoin lotus-worker[20925]:    0: backtrace::backtrace::libunwind::trace
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at ./cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.44/src/backtrace/libunwind.rs:86
Oct 24 11:00:38 filecoin lotus-worker[20925]:    1: backtrace::backtrace::trace_unsynchronized
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at ./cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.44/src/backtrace/mod.rs:66
Oct 24 11:00:38 filecoin lotus-worker[20925]:    2: std::sys_common::backtrace::_print_fmt
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libstd/sys_common/backtrace.rs:78
Oct 24 11:00:38 filecoin lotus-worker[20925]:    3: <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libstd/sys_common/backtrace.rs:59
Oct 24 11:00:38 filecoin lotus-worker[20925]:    4: core::fmt::write
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libcore/fmt/mod.rs:1063
Oct 24 11:00:38 filecoin lotus-worker[20925]:    5: std::io::Write::write_fmt
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libstd/io/mod.rs:1426
Oct 24 11:00:38 filecoin lotus-worker[20925]:    6: std::sys_common::backtrace::_print
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libstd/sys_common/backtrace.rs:62
Oct 24 11:00:38 filecoin lotus-worker[20925]:    7: std::sys_common::backtrace::print
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libstd/sys_common/backtrace.rs:49
Oct 24 11:00:38 filecoin lotus-worker[20925]:    8: std::panicking::default_hook::{{closure}}
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libstd/panicking.rs:204
Oct 24 11:00:38 filecoin lotus-worker[20925]:    9: std::panicking::default_hook
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libstd/panicking.rs:224
Oct 24 11:00:38 filecoin lotus-worker[20925]:   10: std::panicking::rust_panic_with_hook
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libstd/panicking.rs:470
Oct 24 11:00:38 filecoin lotus-worker[20925]:   11: rust_begin_unwind
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libstd/panicking.rs:378
Oct 24 11:00:38 filecoin lotus-worker[20925]:   12: core::panicking::panic_fmt
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libcore/panicking.rs:85
Oct 24 11:00:38 filecoin lotus-worker[20925]:   13: core::option::expect_none_failed
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libcore/option.rs:1211
Oct 24 11:00:38 filecoin lotus-worker[20925]:   14: <std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once
Oct 24 11:00:38 filecoin lotus-worker[20925]:   15: std::panicking::try::do_call
Oct 24 11:00:38 filecoin lotus-worker[20925]:   16: __rust_maybe_catch_panic
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libpanic_unwind/lib.rs:86
Oct 24 11:00:38 filecoin lotus-worker[20925]:   17: <rayon_core::job::HeapJob<BODY> as rayon_core::job::Job>::execute
Oct 24 11:00:38 filecoin lotus-worker[20925]:   18: rayon_core::registry::WorkerThread::wait_until_cold
Oct 24 11:00:38 filecoin lotus-worker[20925]:   19: rayon_core::scope::ScopeBase::steal_till_jobs_complete
Oct 24 11:00:38 filecoin lotus-worker[20925]:   20: <std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once
Oct 24 11:00:38 filecoin lotus-worker[20925]:   21: std::panicking::try::do_call
Oct 24 11:00:38 filecoin lotus-worker[20925]:   22: __rust_maybe_catch_panic
Oct 24 11:00:38 filecoin lotus-worker[20925]:              at src/libpanic_unwind/lib.rs:86
Oct 24 11:00:38 filecoin lotus-worker[20925]:   23: <rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute
Oct 24 11:00:38 filecoin lotus-worker[20925]:   24: rayon_core::registry::WorkerThread::wait_until_cold
Oct 24 11:00:38 filecoin lotus-worker[20925]:   25: rayon_core::registry::ThreadBuilder::run

The memory leak can be observed in this case too. My node restarted PC2, but the 1.6GB GPU RAM was not clered up, rather an additional 1.6GB was allocated.

@karalabe
Copy link
Author

Here's the relevant issue: #1327

@karalabe
Copy link
Author

@porcuquine How often? 3 times in the last 12 hours

@porcuquine
Copy link
Collaborator

Thanks, that's all helpful.

@magik6k
Copy link

magik6k commented Oct 27, 2020

When this happens on lotus-worker again, can you try killing it with SIGQUIT to see if the goroutine calling rust is stuck in the call?

@karalabe
Copy link
Author

# nvidia-smi 
Tue Oct 27 07:36:15 2020       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 455.28       Driver Version: 455.28       CUDA Version: 11.1     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  GeForce RTX 3080    Off  | 00000000:C1:00.0 Off |                  N/A |
|  0%   33C    P8    17W / 340W |   1605MiB / 10015MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
+-----------------------------------------------------------------------------+
# lotus-miner sealing jobs
ID   Sector  Worker  Hostname  Task  State    Time
292  388     1       filecoin  PC2   running  11h6m27.5s
303  396     1       filecoin  PC1   running  9h35m12.5s
308  398     1       filecoin  AP    running  9h33m48.3s
310  400     1       filecoin  AP    running  9h33m47.7s
318  387     1       filecoin  PC2   running  9h8m19.3s
332  393     1       filecoin  PC2   running  7h54m11.9s
339  392     1       filecoin  PC2   running  7h6m5.3s
360  399     1       filecoin  PC1   running  4h16m46.7s
366  397     1       filecoin  PC2   running  2h16m28.8s
369  394     1       filecoin  PC2   running  1h28m58s
Oct 27 07:38:34 filecoin lotus-worker[285]: SIGQUIT: quit
Oct 27 07:38:34 filecoin lotus-worker[285]: PC=0x5885e1 m=0 sigcode=0
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 0 [idle]:
Oct 27 07:38:34 filecoin lotus-worker[285]: runtime.futex(0x42685a8, 0x80, 0x0, 0x0, 0x7ffe00000000, 0x5881bc, 0x52606, 0x52616f, 0x7ffe13964668, 0x5264ff, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/sys_linux_amd64.s:587 +0x21
Oct 27 07:38:34 filecoin lotus-worker[285]: runtime.futexsleep(0x42685a8, 0x100000000, 0xffffffffffffffff)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/os_linux.go:45 +0x46
Oct 27 07:38:34 filecoin lotus-worker[285]: runtime.notesleep(0x42685a8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/lock_futex.go:159 +0x9f
Oct 27 07:38:34 filecoin lotus-worker[285]: runtime.stopm()
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/proc.go:1910 +0xc5
Oct 27 07:38:34 filecoin lotus-worker[285]: runtime.findrunnable(0xc000045800, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/proc.go:2471 +0xa7f
Oct 27 07:38:34 filecoin lotus-worker[285]: runtime.schedule()
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/proc.go:2669 +0x2d7
Oct 27 07:38:34 filecoin lotus-worker[285]: runtime.park_m(0xc000183200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/proc.go:2837 +0x9d
Oct 27 07:38:34 filecoin lotus-worker[285]: runtime.mcall(0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/asm_amd64.s:318 +0x5b
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 1 [IO wait, 116 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.runtime_pollWait(0x7fc3d50ec818, 0x72, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/netpoll.go:220 +0x55
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.(*pollDesc).wait(0xc000574518, 0x72, 0x0, 0x0, 0x22f98aa)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/internal/poll/fd_poll_runtime.go:87 +0x45
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.(*pollDesc).waitRead(...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/internal/poll/fd_poll_runtime.go:92
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.(*FD).Accept(0xc000574500, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/internal/poll/fd_unix.go:394 +0x1fc
Oct 27 07:38:34 filecoin lotus-worker[285]: net.(*netFD).accept(0xc000574500, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/fd_unix.go:172 +0x45
Oct 27 07:38:34 filecoin lotus-worker[285]: net.(*TCPListener).accept(0xc000626420, 0x5f979726, 0xc0003c9608, 0x5e86c6)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/tcpsock_posix.go:139 +0x32
Oct 27 07:38:34 filecoin lotus-worker[285]: net.(*TCPListener).Accept(0xc000626420, 0xc0003c9658, 0x18, 0xc000000300, 0x9c57cc)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/tcpsock.go:261 +0x65
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*Server).Serve(0xc0001ac0e0, 0x259d880, 0xc000626420, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2937 +0x266
Oct 27 07:38:34 filecoin lotus-worker[285]: main.glob..func3(0xc00014ca80, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/cmd/lotus-seal-worker/main.go:446 +0x2106
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/urfave/cli/v2.(*Command).Run(0x41e93e0, 0xc00014c700, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/urfave/cli/v2@v2.2.0/command.go:164 +0x4ed
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/urfave/cli/v2.(*App).RunContext(0xc0000ecf00, 0x25a25c0, 0xc0001b2010, 0xc00019a150, 0x3, 0x3, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/urfave/cli/v2@v2.2.0/app.go:306 +0x81f
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/urfave/cli/v2.(*App).Run(...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/urfave/cli/v2@v2.2.0/app.go:215
Oct 27 07:38:34 filecoin lotus-worker[285]: main.main()
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/cmd/lotus-seal-worker/main.go:92 +0x63b
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 19 [select, 2682 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/ipfs/go-log/writer.(*MirrorWriter).logRoutine(0xc00019bce0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/ipfs/go-log@v1.0.4/writer/writer.go:71 +0x128
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/ipfs/go-log/writer.NewMirrorWriter
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/ipfs/go-log@v1.0.4/writer/writer.go:36 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 20 [select]:
Oct 27 07:38:34 filecoin lotus-worker[285]: go.opencensus.io/stats/view.(*worker).start(0xc0001c6400)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/go.opencensus.io@v0.22.4/stats/view/worker.go:276 +0x105
Oct 27 07:38:34 filecoin lotus-worker[285]: created by go.opencensus.io/stats/view.init.0
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/go.opencensus.io@v0.22.4/stats/view/worker.go:34 +0x68
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 99 [select]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*wsConn).handleWsConn(0xc000518300, 0x25a25c0, 0xc0001b2010)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:555 +0x488
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.websocketClient
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/client.go:247 +0x2cf
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 38 [select]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*wsConn).setupPings.func3(0xc000518300, 0xc00015e1e0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:493 +0xc6
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).setupPings
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:491 +0xcf
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 73 [select, 2682 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.rselect(0xc00077cd50, 0x2, 0x4, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/select.go:547 +0x390
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Select(0xc00077cf30, 0x2, 0x2, 0x10e393096bd09, 0x0, 0x24813d0, 0x20d4860, 0x7fc3d50ec8f8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:2250 +0x1ab
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*client).makeOutChan.func1.1(0x25a2640, 0xc000111d70, 0xc000010200, 0x20eb720, 0xc00018e9c0, 0x12)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/client.go:332 +0x3cc
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*client).makeOutChan.func1
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/client.go:307 +0x205
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 100 [chan receive, 2682 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/cli.ReqContext.func1(0xc0000e9680, 0xc0003d4d30)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/cli/cmd.go:257 +0x34
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/lotus/cli.ReqContext
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/cli/cmd.go:256 +0x108
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 102 [syscall, 2682 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: os/signal.signal_recv(0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/sigqueue.go:147 +0x9d
Oct 27 07:38:34 filecoin lotus-worker[285]: os/signal.loop()
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/os/signal/signal_unix.go:23 +0x25
Oct 27 07:38:34 filecoin lotus-worker[285]: created by os/signal.Notify.func1.1
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/os/signal/signal.go:150 +0x45
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 40 [select, 2682 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: main.watchMinerConn.func1(0x25b95c0, 0xc0003fc280, 0x25a2580, 0xc00070f540, 0xc00014ca80)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/cmd/lotus-seal-worker/main.go:457 +0x1ac
Oct 27 07:38:34 filecoin lotus-worker[285]: created by main.watchMinerConn
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/cmd/lotus-seal-worker/main.go:451 +0x67
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 74 [chan receive, 2682 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCtxAsync(0xc000518300, 0x25a2640, 0xc000111d70, 0x3)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:282 +0x65
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleResponse
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:369 +0x46a
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 4273 [select, 2500 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc000034380, 0xc000714500)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc000034380, 0xc000714500)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc000034380, 0xc000714300)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc000034380, 0xc000714200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc000034380, 0xc000714200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc0003fe640, 0x25a2580, 0xc00014cb00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 140 [select]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/stores.(*Local).reportHealth(0xc0000e8660, 0x25a2580, 0xc00070f540)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/stores/local.go:244 +0x54c
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/lotus/extern/sector-storage/stores.(*Local).open
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/stores/local.go:234 +0x1ab
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 141 [chan receive, 2681 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: main.glob..func3.3(0x25a2580, 0xc00070f540, 0xc0001ac0e0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/cmd/lotus-seal-worker/main.go:397 +0x65
Oct 27 07:38:34 filecoin lotus-worker[285]: created by main.glob..func3
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/cmd/lotus-seal-worker/main.go:396 +0x1a6b
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 149 [select, 2681 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.rselect(0xc000778bf8, 0x4, 0x4, 0xc00052a700, 0x257f940)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/select.go:547 +0x390
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Select(0xc0000340e0, 0x4, 0x4, 0x1, 0x2, 0xc00058a840, 0x1, 0x2)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:2250 +0x1ab
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*wsConn).handleOutChans(0xc0008046c0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:167 +0x208
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleChanOut.func1
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:254 +0x3e
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 143 [select, 91 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*wsConn).handleWsConn(0xc0008046c0, 0x25a2640, 0xc0005b64b0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:555 +0x488
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handleWS(0xc0003d5980, 0x25a2640, 0xc0005b64b0, 0x259db40, 0xc0001ac1c0, 0xc000172300)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/server.go:65 +0x2d7
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).ServeHTTP(0xc0003d5980, 0x259db40, 0xc0001ac1c0, 0xc000172300)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/server.go:79 +0x108
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc0001ac1c0, 0xc000172100)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc0001ac1c0, 0xc000714100)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc0001ac1c0, 0xc000714100)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc0003ffb80, 0x25a2580, 0xc00070f200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 210871 [syscall, 578 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_seal_pre_commit_phase1(0xc000000003, 0xc00073f8c0, 0xc00073f8f0, 0xc00073f920, 0x18c, 0x1959c, 0x0, 0x0, 0x0, 0x451da7e090e0058f, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1670 +0x51
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilSealPreCommitPhase1(0xc000000003, 0xc00073f4a0, 0x24, 0xc00073f140, 0x26, 0xc00073f2f0, 0x24, 0x18c, 0x1959c, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:617 +0x417
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.SealPreCommitPhase1(0x3, 0xc00073f4a0, 0x24, 0xc00073f140, 0x26, 0xc00073f2f0, 0x24, 0x18c, 0x4a9c, 0xc00073eff0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:297 +0x327
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).SealPreCommit1(0xc000487170, 0x25a2640, 0xc000487050, 0x4a9c, 0x18c, 0xc00073eff0, 0x20, 0x21, 0xc0004c4300, 0x1, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:453 +0x49b
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).SealPreCommit1(0xc00070ec80, 0x25a2640, 0xc000487050, 0x4a9c, 0x18c, 0xc00073eff0, 0x20, 0x21, 0xc0004c4300, 0x1, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:149 +0x370
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x3a13, 0x22f5f9c, 0x4, 0xc0004c43c0, 0x4, 0x4, 0x2213700, 0xc0005b3bc0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x3a13, 0xc0004c43c0, 0x4, 0x4, 0xc000487050, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc0004c43c0, 0x4, 0x4, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f830, 0xc000770fd8, 0xc000770fc0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc000486bd0, 0x4a9c, 0x18c, 0xc00073eff0, 0x20, 0x21, 0xc0004c4300, 0x1, 0x4, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit1(0xc00020afc0, 0x25a2640, 0xc000486bd0, 0x4a9c, 0x18c, 0xc00073eff0, 0x20, 0x21, 0xc0004c4300, 0x1, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1414 +0xb3
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x3213, 0x22f5f9c, 0x4, 0xc0004c4360, 0x4, 0x4, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x3213, 0xc0004c4360, 0x4, 0x4, 0x5, 0x1, 0x18)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc0004c4360, 0x4, 0x4, 0xc0004c4360, 0x429be60, 0x1)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc0006221e0, 0xc0007715c0, 0xc0007715a8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc000486bd0, 0x4a9c, 0x18c, 0xc00073eff0, 0x20, 0x21, 0xc0004c4300, 0x1, 0x4, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit1(0xc00020bb90, 0x25a2640, 0xc000486bd0, 0x4a9c, 0x18c, 0xc00073eff0, 0x20, 0x21, 0xc0004c4300, 0x1, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1414 +0xb3
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711980, 0xc0001b4f90, 0x13, 0x22f5f9c, 0x4, 0xc000143580, 0x5, 0x5, 0x58017f, 0x20ddf00, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711980, 0xc0001b4f90, 0x13, 0xc000143580, 0x5, 0x5, 0x20ddf00, 0xc00010eb00, 0x197)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc0007a2020, 0x17, 0xc000711980, 0xc0001b4f90, 0x13, 0xc000143580, 0x5, 0x5, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc000486ae0, 0xc000e78dc0, 0x3, 0xc000e78dc8, 0xc0007a2020, 0x17, 0xc00066cd80, 0x3, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 6317 [select, 2411 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc0000341c0, 0xc000714700)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc0000341c0, 0xc000714700)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc0000341c0, 0xc000714400)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc0000341c0, 0xc000714300)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc0000341c0, 0xc000714300)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc00059c0a0, 0x25a2580, 0xc0005b2bc0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 242606 [select, 452 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc000034700, 0xc000714f00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc000034700, 0xc000714f00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc000034700, 0xc000714c00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc000034700, 0xc000714a00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc000034700, 0xc000714a00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc00059c320, 0x25a2580, 0xc001b36c80)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 242166 [select, 461 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc000034620, 0xc000714d00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc000034620, 0xc000714d00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc000034620, 0xc000714a00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc000034620, 0xc000714800)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc000034620, 0xc000714800)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc00059c280, 0x25a2580, 0xc001b36480)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 247370 [select, 260 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc0000348c0, 0xc0001fe900)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc0000348c0, 0xc0001fe900)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc0000348c0, 0xc0001fe600)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc0000348c0, 0xc0001fe300)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc0000348c0, 0xc0001fe300)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc00059c5a0, 0x25a2580, 0xc000e8a400)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 72276 [select, 2030 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc0001ac380, 0xc0001fe700)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc0001ac380, 0xc0001fe700)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc0001ac380, 0xc0001fe300)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc0001ac380, 0xc0001fe200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc0001ac380, 0xc0001fe200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc0001601e0, 0x25a2580, 0xc0002164c0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 251939 [syscall, 91 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_seal_pre_commit_phase2(0xc0006b9200, 0x59f, 0xc00047ee40, 0xc00047ee70, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1691 +0x4e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilSealPreCommitPhase2(0xc0006b8c00, 0x59f, 0x59f, 0xc00047ee10, 0x24, 0xc00047ed20, 0x24, 0x24)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:644 +0x24e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.SealPreCommitPhase2(0xc0008c7800, 0x59f, 0x5a0, 0xc00047ee10, 0x24, 0xc00047ed20, 0x24, 0x0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:315 +0xde
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).SealPreCommit2(0xc000e4bf80, 0x25a2640, 0xc000e4bf50, 0x4a9c, 0x18a, 0xc0008c7800, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:476 +0x253
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).SealPreCommit2(0xc00070ec80, 0x25a2640, 0xc000e4bf50, 0x4a9c, 0x18a, 0xc0008c7800, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:158 +0x12f
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x3e13, 0x22f5f9c, 0x4, 0xc00081ca50, 0x3, 0x3, 0x2213700, 0xc0002177c0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x3e13, 0xc00081ca50, 0x3, 0x3, 0xc000e4bf50, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc00081ca50, 0x3, 0x3, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f8f0, 0xc000614ff8, 0xc000614fe0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc000e4be90, 0x4a9c, 0x18a, 0xc0008c7800, 0x59f, 0x5a0, 0xc0001f6930, 0x70, 0xc0003c30f0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020afc0, 0x25a2640, 0xc000e4be90, 0x4a9c, 0x18a, 0xc0008c7800, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x3613, 0x22f5f9c, 0x4, 0xc00081ca00, 0x3, 0x3, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x3613, 0xc00081ca00, 0x3, 0x3, 0x5, 0x1, 0x18)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc00081ca00, 0x3, 0x3, 0xc00081ca00, 0xc00013c1a0, 0xc0003c3518)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc000622210, 0xc0006155d0, 0xc0006155b8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc000e4be90, 0x4a9c, 0x18a, 0xc0008c7800, 0x59f, 0x5a0, 0x25a2640, 0xc000e4be90, 0xc0003c36c8, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020bb90, 0x25a2640, 0xc000e4be90, 0x4a9c, 0x18a, 0xc0008c7800, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711a00, 0xc0001b4f98, 0x13, 0x22f5f9c, 0x4, 0xc0007e5920, 0x4, 0x4, 0x58017f, 0x211c0e0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711a00, 0xc0001b4f98, 0x13, 0xc0007e5920, 0x4, 0x4, 0x211c0e0, 0xc00557cb60, 0x197)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc00013aa20, 0x17, 0xc000711a00, 0xc0001b4f98, 0x13, 0xc0007e5920, 0x4, 0x4, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc000e4be30, 0xc000a9a7f8, 0x3, 0xc000a9a800, 0xc00013aa20, 0x17, 0xc000804480, 0x2, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 249847 [select, 165 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc0001ac620, 0xc0001fed00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc0001ac620, 0xc0001fed00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc0001ac620, 0xc0001fea00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc0001ac620, 0xc0001fe800)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc0001ac620, 0xc0001fe800)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc00059c820, 0x25a2580, 0xc000216200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 87510 [select, 1651 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc000034460, 0xc000172400)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc000034460, 0xc000172400)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc000034460, 0xc000172200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc000034460, 0xc000172100)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc000034460, 0xc000172100)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc000160280, 0x25a2580, 0xc000031200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 242946 [select, 450 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc0000347e0, 0xc000715100)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc0000347e0, 0xc000715100)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc0000347e0, 0xc000714e00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc0000347e0, 0xc000714c00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc0000347e0, 0xc000714c00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc000160320, 0x25a2580, 0xc0004946c0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 251940 [IO wait]:
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.runtime_pollWait(0x7fc3d50ec738, 0x72, 0x2583ec0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/netpoll.go:220 +0x55
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.(*pollDesc).wait(0xc000574618, 0x72, 0xc000755000, 0x1000, 0x1000)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/internal/poll/fd_poll_runtime.go:87 +0x45
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.(*pollDesc).waitRead(...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/internal/poll/fd_poll_runtime.go:92
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.(*FD).Read(0xc000574600, 0xc000755000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/internal/poll/fd_unix.go:159 +0x1b1
Oct 27 07:38:34 filecoin lotus-worker[285]: net.(*netFD).Read(0xc000574600, 0xc000755000, 0x1000, 0x1000, 0xc00015e000, 0x0, 0x1)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/fd_posix.go:55 +0x4f
Oct 27 07:38:34 filecoin lotus-worker[285]: net.(*conn).Read(0xc0001b5050, 0xc000755000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/net.go:182 +0x8e
Oct 27 07:38:34 filecoin lotus-worker[285]: bufio.(*Reader).fill(0xc000543980)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/bufio/bufio.go:101 +0x105
Oct 27 07:38:34 filecoin lotus-worker[285]: bufio.(*Reader).Peek(0xc000543980, 0x2, 0x0, 0x20, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/bufio/bufio.go:139 +0x4f
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/websocket.(*Conn).read(0xc00024d760, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/websocket@v1.4.2/conn.go:370 +0x45
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/websocket.(*Conn).advanceFrame(0xc00024d760, 0x9, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/websocket@v1.4.2/conn.go:798 +0x5c
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/websocket.(*Conn).NextReader(0xc00024d760, 0xbfde020ecc130227, 0x8a8a8c2c9cc0, 0x42670c0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/websocket@v1.4.2/conn.go:980 +0x8f
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*wsConn).nextMessage(0xc0008046c0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:99 +0x5a
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleWsConn
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:615 +0x115d
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 70824 [select, 2068 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc0000342a0, 0xc0001fe500)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc0000342a0, 0xc0001fe500)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc0000342a0, 0xc0001fe200)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc0000342a0, 0xc0001fe100)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc0000342a0, 0xc0001fe100)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc000160140, 0x25a2580, 0xc000e8b000)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 218983 [syscall, 552 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_seal_pre_commit_phase2(0xc0007a6000, 0x59f, 0xc0004dd800, 0xc0004dd8f0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1691 +0x4e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilSealPreCommitPhase2(0xc000793800, 0x59f, 0x59f, 0xc0004dd770, 0x24, 0xc0004daf90, 0x25, 0x24)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:644 +0x24e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.SealPreCommitPhase2(0xc0008c6000, 0x59f, 0x5a0, 0xc0004dd770, 0x24, 0xc0004daf90, 0x25, 0x0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:315 +0xde
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).SealPreCommit2(0xc0005e8420, 0x25a2640, 0xc0005e83f0, 0x4a9c, 0x183, 0xc0008c6000, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:476 +0x253
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).SealPreCommit2(0xc00070ec80, 0x25a2640, 0xc0005e83f0, 0x4a9c, 0x183, 0xc0008c6000, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:158 +0x12f
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x3e13, 0x22f5f9c, 0x4, 0xc00277c320, 0x3, 0x3, 0x2213700, 0xc001b36680, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x3e13, 0xc00277c320, 0x3, 0x3, 0xc0005e83f0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc00277c320, 0x3, 0x3, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f8f0, 0xc000e6cff8, 0xc000e6cfe0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0005e8330, 0x4a9c, 0x183, 0xc0008c6000, 0x59f, 0x5a0, 0xc00050c7e0, 0x70, 0xc000c5d0f0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020afc0, 0x25a2640, 0xc0005e8330, 0x4a9c, 0x183, 0xc0008c6000, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x3613, 0x22f5f9c, 0x4, 0xc00277c280, 0x3, 0x3, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x3613, 0xc00277c280, 0x3, 0x3, 0x5, 0x1, 0x18)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc00277c280, 0x3, 0x3, 0xc00277c280, 0xc00013c1a0, 0xc000c5d518)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc000622210, 0xc000e6d5d0, 0xc000e6d5b8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0005e8330, 0x4a9c, 0x183, 0xc0008c6000, 0x59f, 0x5a0, 0x25a2640, 0xc0005e8330, 0xc000c5d6c8, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020bb90, 0x25a2640, 0xc0005e8330, 0x4a9c, 0x183, 0xc0008c6000, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711a00, 0xc0001b4f98, 0x13, 0x22f5f9c, 0x4, 0xc0005426c0, 0x4, 0x4, 0x58017f, 0x211c0e0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711a00, 0xc0001b4f98, 0x13, 0xc0005426c0, 0x4, 0x4, 0x211c0e0, 0xc0001a8820, 0x197)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc00003c5c0, 0x17, 0xc000711a00, 0xc0001b4f98, 0x13, 0xc0005426c0, 0x4, 0x4, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc0005e82d0, 0xc000898310, 0x3, 0xc000898318, 0xc00003c5c0, 0x17, 0xc000666180, 0x2, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 247492 [syscall, 260 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_seal_pre_commit_phase1(0xc000000003, 0xc00086f6e0, 0xc00086f710, 0xc00086f740, 0x18f, 0x1959c, 0x0, 0x0, 0x0, 0xa09df060f1f58295, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1670 +0x51
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilSealPreCommitPhase1(0xc000000003, 0xc00ee406f0, 0x23, 0xc00086f290, 0x26, 0xc00086f3b0, 0x24, 0x18f, 0x1959c, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:617 +0x417
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.SealPreCommitPhase1(0x3, 0xc00ee406f0, 0x23, 0xc00086f290, 0x26, 0xc00086f3b0, 0x24, 0x18f, 0x4a9c, 0xc00112af60, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:297 +0x327
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).SealPreCommit1(0xc0006228d0, 0x25a2640, 0xc0007dfec0, 0x4a9c, 0x18f, 0xc00112af60, 0x20, 0x21, 0xc0004c4ba0, 0x1, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:453 +0x49b
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).SealPreCommit1(0xc00070ec80, 0x25a2640, 0xc0007dfec0, 0x4a9c, 0x18f, 0xc00112af60, 0x20, 0x21, 0xc0004c4ba0, 0x1, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:149 +0x370
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x3a13, 0x22f5f9c, 0x4, 0xc0004c4c60, 0x4, 0x4, 0x2213700, 0xc001a85740, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x3a13, 0xc0004c4c60, 0x4, 0x4, 0xc0007dfec0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc0004c4c60, 0x4, 0x4, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f830, 0xc000478fd8, 0xc000478fc0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0007dfcb0, 0x4a9c, 0x18f, 0xc00112af60, 0x20, 0x21, 0xc0004c4ba0, 0x1, 0x4, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit1(0xc00020afc0, 0x25a2640, 0xc0007dfcb0, 0x4a9c, 0x18f, 0xc00112af60, 0x20, 0x21, 0xc0004c4ba0, 0x1, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1414 +0xb3
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x3213, 0x22f5f9c, 0x4, 0xc0004c4c00, 0x4, 0x4, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x3213, 0xc0004c4c00, 0x4, 0x4, 0x5, 0x1, 0x18)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc0004c4c00, 0x4, 0x4, 0xc0004c4c00, 0x429be60, 0x1)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc0006221e0, 0xc0004795c0, 0xc0004795a8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0007dfcb0, 0x4a9c, 0x18f, 0xc00112af60, 0x20, 0x21, 0xc0004c4ba0, 0x1, 0x4, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit1(0xc00020bb90, 0x25a2640, 0xc0007dfcb0, 0x4a9c, 0x18f, 0xc00112af60, 0x20, 0x21, 0xc0004c4ba0, 0x1, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1414 +0xb3
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711980, 0xc0001b4f90, 0x13, 0x22f5f9c, 0x4, 0xc0004c3280, 0x5, 0x5, 0x58017f, 0x20ddf00, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711980, 0xc0001b4f90, 0x13, 0xc0004c3280, 0x5, 0x5, 0x20ddf00, 0xc0006a4400, 0x197)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc00015ad80, 0x17, 0xc000711980, 0xc0001b4f90, 0x13, 0xc0004c3280, 0x5, 0x5, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc0007dfb30, 0xc001a675b8, 0x3, 0xc001a675c0, 0xc00015ad80, 0x17, 0xc00052c240, 0x3, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 253655 [IO wait]:
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.runtime_pollWait(0x7fc3d50ec8f8, 0x72, 0x2583ec0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/runtime/netpoll.go:220 +0x55
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.(*pollDesc).wait(0xc000710498, 0x72, 0xc000754000, 0x1000, 0x1000)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/internal/poll/fd_poll_runtime.go:87 +0x45
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.(*pollDesc).waitRead(...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/internal/poll/fd_poll_runtime.go:92
Oct 27 07:38:34 filecoin lotus-worker[285]: internal/poll.(*FD).Read(0xc000710480, 0xc000754000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/internal/poll/fd_unix.go:159 +0x1b1
Oct 27 07:38:34 filecoin lotus-worker[285]: net.(*netFD).Read(0xc000710480, 0xc000754000, 0x1000, 0x1000, 0xc000115ce0, 0x52045c, 0xc000702480)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/fd_posix.go:55 +0x4f
Oct 27 07:38:34 filecoin lotus-worker[285]: net.(*conn).Read(0xc0001b4860, 0xc000754000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/net.go:182 +0x8e
Oct 27 07:38:34 filecoin lotus-worker[285]: bufio.(*Reader).fill(0xc0000e9620)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/bufio/bufio.go:101 +0x105
Oct 27 07:38:34 filecoin lotus-worker[285]: bufio.(*Reader).Peek(0xc0000e9620, 0x2, 0xc00015e120, 0xc000115dc0, 0x0, 0xfda118, 0x1)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/bufio/bufio.go:139 +0x4f
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/websocket.(*Conn).read(0xc000728840, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/websocket@v1.4.2/conn.go:370 +0x45
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/websocket.(*Conn).advanceFrame(0xc000728840, 0xa, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/websocket@v1.4.2/conn.go:798 +0x5c
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/websocket.(*Conn).NextReader(0xc000728840, 0xbfde0a7c9f720027, 0x92642f3c00b5, 0x42670c0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/websocket@v1.4.2/conn.go:980 +0x8f
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*wsConn).nextMessage(0xc000518300)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:99 +0x5a
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleWsConn
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:615 +0x115d
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 211429 [syscall, 554 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_generate_piece_commitment(0x4000000003, 0x3f8000, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1288 +0x4e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilGeneratePieceCommitment(0x4000000003, 0x3f8000, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:280 +0x4b
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.GeneratePieceCIDFromFile(0x3, 0xc0005be000, 0x3f8000, 0x0, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:186 +0xec
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).pieceCid(0xc0005c15f0, 0xc0064cc000, 0x3f8000, 0x3f8000, 0x3f8000, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:188 +0x176
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).AddPiece(0xc0005c15f0, 0x25a2640, 0xc0005c15c0, 0x4a9c, 0x190, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:139 +0x7a5
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).AddPiece(0xc00070ec80, 0x25a2640, 0xc0005c15c0, 0x4a9c, 0x190, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:120 +0x158
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x213, 0x22f5f9c, 0x4, 0xc005569c80, 0x5, 0x5, 0x2213700, 0xc000e8b400, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x213, 0xc005569c80, 0x5, 0x5, 0xc0005c15c0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc005569c80, 0x5, 0x5, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f740, 0xc000e68fd8, 0xc000e68fc0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0005c14d0, 0x4a9c, 0x190, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, 0xc000010590, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).AddPiece(0xc00020afc0, 0x25a2640, 0xc0005c14d0, 0x4a9c, 0x190, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1410 +0xb3
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x213, 0x22f5f9c, 0x4, 0xc005569b80, 0x5, 0x5, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x213, 0xc005569b80, 0x5, 0x5, 0x5, 0x1, 0x10)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc005569b80, 0x5, 0x5, 0xc005569b80, 0x429be60, 0x3)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc0006221b0, 0xc000e695c0, 0xc000e695a8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0005c14d0, 0x4a9c, 0x190, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, 0xc000010590, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).AddPiece(0xc00020bb90, 0x25a2640, 0xc0005c14d0, 0x4a9c, 0x190, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1410 +0xb3
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711900, 0xc0001b4f30, 0x13, 0x22f5f9c, 0x4, 0xc000cac750, 0x6, 0x6, 0xc000036208, 0x2163200, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711900, 0xc0001b4f30, 0x13, 0xc000cac750, 0x6, 0x6, 0x216b700, 0xc000010590, 0x16)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc00003ddc0, 0x11, 0xc000711900, 0xc0001b4f30, 0x13, 0xc000cac750, 0x6, 0x6, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc0005c1470, 0xc001a9f380, 0x3, 0xc001a9f388, 0xc00003ddc0, 0x11, 0xc00066d140, 0x4, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 241586 [syscall, 476 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_seal_pre_commit_phase2(0xc000793200, 0x59f, 0xc00112aa20, 0xc00112aa50, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1691 +0x4e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilSealPreCommitPhase2(0xc000792c00, 0x59f, 0x59f, 0xc00112a9f0, 0x24, 0xc00112a870, 0x25, 0x24)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:644 +0x24e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.SealPreCommitPhase2(0xc000792000, 0x59f, 0x5a0, 0xc00112a9f0, 0x24, 0xc00112a870, 0x25, 0x0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:315 +0xde
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).SealPreCommit2(0xc0006cf830, 0x25a2640, 0xc0006cf800, 0x4a9c, 0x189, 0xc000792000, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:476 +0x253
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).SealPreCommit2(0xc00070ec80, 0x25a2640, 0xc0006cf800, 0x4a9c, 0x189, 0xc000792000, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:158 +0x12f
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x3e13, 0x22f5f9c, 0x4, 0xc0005a2af0, 0x3, 0x3, 0x2213700, 0xc00014d080, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x3e13, 0xc0005a2af0, 0x3, 0x3, 0xc0006cf800, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc0005a2af0, 0x3, 0x3, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f8f0, 0xc000774ff8, 0xc000774fe0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0006cf740, 0x4a9c, 0x189, 0xc000792000, 0x59f, 0x5a0, 0xc00050c1c0, 0x70, 0xc0003e10f0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020afc0, 0x25a2640, 0xc0006cf740, 0x4a9c, 0x189, 0xc000792000, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x3613, 0x22f5f9c, 0x4, 0xc0005a2aa0, 0x3, 0x3, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x3613, 0xc0005a2aa0, 0x3, 0x3, 0x5, 0x1, 0x18)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc0005a2aa0, 0x3, 0x3, 0xc0005a2aa0, 0xc00013c1a0, 0xc0003e1518)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc000622210, 0xc0007755d0, 0xc0007755b8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0006cf740, 0x4a9c, 0x189, 0xc000792000, 0x59f, 0x5a0, 0x25a2640, 0xc0006cf740, 0xc0003e16c8, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020bb90, 0x25a2640, 0xc0006cf740, 0x4a9c, 0x189, 0xc000792000, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711a00, 0xc0001b4f98, 0x13, 0x22f5f9c, 0x4, 0xc0001b6cc0, 0x4, 0x4, 0x58017f, 0x211c0e0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711a00, 0xc0001b4f98, 0x13, 0xc0001b6cc0, 0x4, 0x4, 0x211c0e0, 0xc00440c7e0, 0x197)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc00042e900, 0x17, 0xc000711a00, 0xc0001b4f98, 0x13, 0xc0001b6cc0, 0x4, 0x4, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc0006cf6e0, 0xc001a66ab0, 0x3, 0xc001a66ab8, 0xc00042e900, 0x17, 0xc00066c0c0, 0x2, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 241843 [select, 464 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc000034540, 0xc000714b00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc000034540, 0xc000714b00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc000034540, 0xc000714800)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc000034540, 0xc000714600)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc000034540, 0xc000714600)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc00059c1e0, 0x25a2580, 0xc000216f80)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 241276 [select, 478 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc0001ac540, 0xc000714900)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc0001ac540, 0xc000714900)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc0001ac540, 0xc000714600)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc0001ac540, 0xc000714400)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc0001ac540, 0xc000714400)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc00059c140, 0x25a2580, 0xc000494280)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 250678 [syscall, 140 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_seal_pre_commit_phase2(0xc0007a7200, 0x59f, 0xc000dfe720, 0xc000dfe750, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1691 +0x4e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilSealPreCommitPhase2(0xc0007a6600, 0x59f, 0x59f, 0xc000dfe6f0, 0x24, 0xc002fb3470, 0x25, 0x24)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:644 +0x24e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.SealPreCommitPhase2(0xc000792c00, 0x59f, 0x5a0, 0xc000dfe6f0, 0x24, 0xc002fb3470, 0x25, 0x0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:315 +0xde
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).SealPreCommit2(0xc001e7bd40, 0x25a2640, 0xc001e7bd10, 0x4a9c, 0x18d, 0xc000792c00, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:476 +0x253
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).SealPreCommit2(0xc00070ec80, 0x25a2640, 0xc001e7bd10, 0x4a9c, 0x18d, 0xc000792c00, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:158 +0x12f
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x3e13, 0x22f5f9c, 0x4, 0xc0000eb590, 0x3, 0x3, 0x2213700, 0xc000031c80, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x3e13, 0xc0000eb590, 0x3, 0x3, 0xc001e7bd10, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc0000eb590, 0x3, 0x3, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f8f0, 0xc00047cff8, 0xc00047cfe0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc001e7bc50, 0x4a9c, 0x18d, 0xc000792c00, 0x59f, 0x5a0, 0xc0003da4d0, 0x70, 0xc0003c50f0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020afc0, 0x25a2640, 0xc001e7bc50, 0x4a9c, 0x18d, 0xc000792c00, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x3613, 0x22f5f9c, 0x4, 0xc0000eb540, 0x3, 0x3, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x3613, 0xc0000eb540, 0x3, 0x3, 0x5, 0x1, 0x18)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc0000eb540, 0x3, 0x3, 0xc0000eb540, 0xc00013c1a0, 0xc0003c5518)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc000622210, 0xc00047d5d0, 0xc00047d5b8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc001e7bc50, 0x4a9c, 0x18d, 0xc000792c00, 0x59f, 0x5a0, 0x25a2640, 0xc001e7bc50, 0xc0003c56c8, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020bb90, 0x25a2640, 0xc001e7bc50, 0x4a9c, 0x18d, 0xc000792c00, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711a00, 0xc0001b4f98, 0x13, 0x22f5f9c, 0x4, 0xc0007ad440, 0x4, 0x4, 0x58017f, 0x211c0e0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711a00, 0xc0001b4f98, 0x13, 0xc0007ad440, 0x4, 0x4, 0x211c0e0, 0xc00557c440, 0x197)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc00013b040, 0x17, 0xc000711a00, 0xc0001b4f98, 0x13, 0xc0007ad440, 0x4, 0x4, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc001e7bbf0, 0xc001a9f3f8, 0x3, 0xc001a9f400, 0xc00013b040, 0x17, 0xc000666540, 0x2, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 211267 [syscall, 554 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_generate_piece_commitment(0x5600000003, 0x3f8000, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1288 +0x4e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilGeneratePieceCommitment(0x5600000003, 0x3f8000, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:280 +0x4b
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.GeneratePieceCIDFromFile(0x3, 0xc000136020, 0x3f8000, 0x0, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:186 +0xec
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).pieceCid(0xc000e4b710, 0xc00440e000, 0x3f8000, 0x3f8000, 0x3f8000, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:188 +0x176
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).AddPiece(0xc000e4b710, 0x25a2640, 0xc000e4b6e0, 0x4a9c, 0x18e, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:139 +0x7a5
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).AddPiece(0xc00070ec80, 0x25a2640, 0xc000e4b6e0, 0x4a9c, 0x18e, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:120 +0x158
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x213, 0x22f5f9c, 0x4, 0xc000142500, 0x5, 0x5, 0x2213700, 0xc0005b36c0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x213, 0xc000142500, 0x5, 0x5, 0xc000e4b6e0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc000142500, 0x5, 0x5, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f740, 0xc000c20fd8, 0xc000c20fc0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc000e4b5f0, 0x4a9c, 0x18e, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, 0xc0001366e8, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).AddPiece(0xc00020afc0, 0x25a2640, 0xc000e4b5f0, 0x4a9c, 0x18e, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1410 +0xb3
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x213, 0x22f5f9c, 0x4, 0xc000142380, 0x5, 0x5, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x213, 0xc000142380, 0x5, 0x5, 0x5, 0x1, 0x10)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc000142380, 0x5, 0x5, 0xc000142380, 0x429be60, 0x3)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc0006221b0, 0xc000c215c0, 0xc000c215a8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc000e4b5f0, 0x4a9c, 0x18e, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, 0xc0001366e8, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).AddPiece(0xc00020bb90, 0x25a2640, 0xc000e4b5f0, 0x4a9c, 0x18e, 0x429a440, 0x0, 0x0, 0x7f0000000, 0x257fca0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1410 +0xb3
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711900, 0xc0001b4f30, 0x13, 0x22f5f9c, 0x4, 0xc000112870, 0x6, 0x6, 0xc000036208, 0x2163200, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711900, 0xc0001b4f30, 0x13, 0xc000112870, 0x6, 0x6, 0x216b700, 0xc0001366e8, 0x16)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc00003d540, 0x11, 0xc000711900, 0xc0001b4f30, 0x13, 0xc000112870, 0x6, 0x6, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc000e4b590, 0xc00117db88, 0x3, 0xc00117db90, 0xc00003d540, 0x11, 0xc00066cc00, 0x4, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 247981 [select, 248 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/lib/rpcenc.ReaderParamDecoder.func1(0x259db40, 0xc0001ac460, 0xc0001feb00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/lib/rpcenc/reader.go:136 +0x453
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.HandlerFunc.ServeHTTP(0xc00053a020, 0x259db40, 0xc0001ac460, 0xc0001feb00)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2042 +0x44
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/gorilla/mux.(*Router).ServeHTTP(0xc000518b40, 0x259db40, 0xc0001ac460, 0xc0001fe800)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/gorilla/mux@v1.7.4/mux.go:210 +0xd3
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.(*Handler).ServeHTTP(0xc000198900, 0x259db40, 0xc0001ac460, 0xc0001fe600)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/handler.go:47 +0x403
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.serverHandler.ServeHTTP(0xc0001ac0e0, 0x259db40, 0xc0001ac460, 0xc0001fe600)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2843 +0xa3
Oct 27 07:38:34 filecoin lotus-worker[285]: net/http.(*conn).serve(0xc00059c6e0, 0x25a2580, 0xc000217000)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:1925 +0x8ad
Oct 27 07:38:34 filecoin lotus-worker[285]: created by net/http.(*Server).Serve
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/net/http/server.go:2969 +0x36c
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 243635 [syscall, 429 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_seal_pre_commit_phase2(0xc0008c6600, 0x593, 0xc004310600, 0xc004310630, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1691 +0x4e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilSealPreCommitPhase2(0xc000269800, 0x593, 0x593, 0xc0043105d0, 0x23, 0xc00073e4e0, 0x24, 0x24)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:644 +0x24e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.SealPreCommitPhase2(0xc0007a6c00, 0x593, 0x594, 0xc0043105d0, 0x23, 0xc00073e4e0, 0x24, 0x0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:315 +0xde
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).SealPreCommit2(0xc001a86690, 0x25a2640, 0xc001a86660, 0x4a9c, 0x188, 0xc0007a6c00, 0x593, 0x594, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:476 +0x253
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).SealPreCommit2(0xc00070ec80, 0x25a2640, 0xc001a86660, 0x4a9c, 0x188, 0xc0007a6c00, 0x593, 0x594, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:158 +0x12f
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x3e13, 0x22f5f9c, 0x4, 0xc00081c280, 0x3, 0x3, 0x2213700, 0xc001a843c0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x3e13, 0xc00081c280, 0x3, 0x3, 0xc001a86660, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc00081c280, 0x3, 0x3, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f8f0, 0xc000826ff8, 0xc000826fe0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc001a865a0, 0x4a9c, 0x188, 0xc0007a6c00, 0x593, 0x594, 0xc00050c620, 0x70, 0xc004c9d0f0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020afc0, 0x25a2640, 0xc001a865a0, 0x4a9c, 0x188, 0xc0007a6c00, 0x593, 0x594, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x3613, 0x22f5f9c, 0x4, 0xc00081c230, 0x3, 0x3, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x3613, 0xc00081c230, 0x3, 0x3, 0x5, 0x1, 0x18)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc00081c230, 0x3, 0x3, 0xc00081c230, 0xc00013c1a0, 0xc004c9d518)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc000622210, 0xc0008275d0, 0xc0008275b8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc001a865a0, 0x4a9c, 0x188, 0xc0007a6c00, 0x593, 0x594, 0x25a2640, 0xc001a865a0, 0xc004c9d6c8, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020bb90, 0x25a2640, 0xc001a865a0, 0x4a9c, 0x188, 0xc0007a6c00, 0x593, 0x594, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711a00, 0xc0001b4f98, 0x13, 0x22f5f9c, 0x4, 0xc0001b7320, 0x4, 0x4, 0x58017f, 0x211c0e0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711a00, 0xc0001b4f98, 0x13, 0xc0001b7320, 0x4, 0x4, 0x211c0e0, 0xc00440c320, 0x197)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc0007a2300, 0x17, 0xc000711a00, 0xc0001b4f98, 0x13, 0xc0001b7320, 0x4, 0x4, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc001a86540, 0xc00058a560, 0x3, 0xc00058a568, 0xc0007a2300, 0x17, 0xc0006663c0, 0x2, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: goroutine 203812 [syscall, 670 minutes]:
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated._Cfunc_fil_seal_pre_commit_phase2(0xc000792600, 0x59f, 0xc0004dc210, 0xc0004dc270, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         _cgo_gotypes.go:1691 +0x4e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi/generated.FilSealPreCommitPhase2(0xc000792000, 0x59f, 0x59f, 0xc0004dc1e0, 0x24, 0xc00073e3c0, 0x25, 0x24)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/generated/generated.go:644 +0x24e
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/filecoin-ffi.SealPreCommitPhase2(0xc0006b9800, 0x59f, 0x5a0, 0xc0004dc1e0, 0x24, 0xc00073e3c0, 0x25, 0x0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/filecoin-ffi/proofs.go:315 +0xde
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper.(*Sealer).SealPreCommit2(0xc0000242a0, 0x25a2640, 0xc000024270, 0x4a9c, 0x184, 0xc0006b9800, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/ffiwrapper/sealer_cgo.go:476 +0x253
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/extern/sector-storage.(*LocalWorker).SealPreCommit2(0xc00070ec80, 0x25a2640, 0xc000024270, 0x4a9c, 0x184, 0xc0006b9800, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/extern/sector-storage/localworker.go:158 +0x12f
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x22a8840, 0xc00039bfe0, 0x3e13, 0x22f5f9c, 0x4, 0xc00081d590, 0x3, 0x3, 0x2213700, 0xc001ef1f00, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x22a8840, 0xc00039bfe0, 0x3e13, 0xc00081d590, 0x3, 0x3, 0xc000024270, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/metrics.proxy.func1(0xc00081d590, 0x3, 0x3, 0x0, 0x0, 0x0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/metrics/proxy.go:61 +0x29e
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc00059f8f0, 0xc000822ff8, 0xc000822fe0)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0000241b0, 0x4a9c, 0x184, 0xc0006b9800, 0x59f, 0x5a0, 0xc0003da230, 0x70, 0xc0006130f0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020afc0, 0x25a2640, 0xc0000241b0, 0x4a9c, 0x184, 0xc0006b9800, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0x2299f40, 0xc00020afc0, 0x3613, 0x22f5f9c, 0x4, 0xc00081d540, 0x3, 0x3, 0x5, 0x20ddd01, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0x2299f40, 0xc00020afc0, 0x3613, 0xc00081d540, 0x3, 0x3, 0x5, 0x1, 0x18)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc/auth.PermissionedProxy.func1(0xc00081d540, 0x3, 0x3, 0xc00081d540, 0xc00013c1a0, 0xc000613518)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/auth/auth.go:62 +0x533
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.callReflect(0xc000622210, 0xc0008235d0, 0xc0008235b8)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:564 +0x32a
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.makeFuncStub(0x25a2640, 0xc0000241b0, 0x4a9c, 0x184, 0xc0006b9800, 0x59f, 0x5a0, 0x25a2640, 0xc0000241b0, 0xc0006136c8, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/asm_amd64.s:20 +0x42
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/lotus/api/apistruct.(*WorkerStruct).SealPreCommit2(0xc00020bb90, 0x25a2640, 0xc0000241b0, 0x4a9c, 0x184, 0xc0006b9800, 0x59f, 0x5a0, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /work/lotus/api/apistruct/struct.go:1418 +0x89
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.call(0xc000711a00, 0xc0001b4f98, 0x13, 0x22f5f9c, 0x4, 0xc00092dce0, 0x4, 0x4, 0x58017f, 0x211c0e0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:475 +0x8c7
Oct 27 07:38:34 filecoin lotus-worker[285]: reflect.Value.Call(0xc000711a00, 0xc0001b4f98, 0x13, 0xc00092dce0, 0x4, 0x4, 0x211c0e0, 0xc0005a7000, 0x197)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/.go/src/reflect/value.go:336 +0xb9
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.doCall(0xc000712960, 0x17, 0xc000711a00, 0xc0001b4f98, 0x13, 0xc00092dce0, 0x4, 0x4, 0x0, 0x0, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:130 +0xdc
Oct 27 07:38:34 filecoin lotus-worker[285]: github.com/filecoin-project/go-jsonrpc.(*RPCServer).handle(0xc0003d5980, 0x25a2640, 0xc000024150, 0xc000e78438, 0x3, 0xc000e78440, 0xc000712960, 0x17, 0xc00066c240, 0x2, ...)
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/handler.go:221 +0xe85
Oct 27 07:38:34 filecoin lotus-worker[285]: created by github.com/filecoin-project/go-jsonrpc.(*wsConn).handleCall
Oct 27 07:38:34 filecoin lotus-worker[285]:         /root/go/pkg/mod/github.com/filecoin-project/go-jsonrpc@v0.1.2-0.20201008195726-68c6a2704e49/websocket.go:423 +0x28f
Oct 27 07:38:34 filecoin lotus-worker[285]: rax    0xca
Oct 27 07:38:34 filecoin lotus-worker[285]: rbx    0x4268460
Oct 27 07:38:34 filecoin lotus-worker[285]: rcx    0x5885e3
Oct 27 07:38:34 filecoin lotus-worker[285]: rdx    0x0
Oct 27 07:38:34 filecoin lotus-worker[285]: rdi    0x42685a8
Oct 27 07:38:34 filecoin lotus-worker[285]: rsi    0x80
Oct 27 07:38:34 filecoin lotus-worker[285]: rbp    0x7ffe13964630
Oct 27 07:38:34 filecoin lotus-worker[285]: rsp    0x7ffe139645e8
Oct 27 07:38:34 filecoin lotus-worker[285]: r8     0x0
Oct 27 07:38:34 filecoin lotus-worker[285]: r9     0x0
Oct 27 07:38:34 filecoin lotus-worker[285]: r10    0x0
Oct 27 07:38:34 filecoin lotus-worker[285]: r11    0x286
Oct 27 07:38:34 filecoin lotus-worker[285]: r12    0x3
Oct 27 07:38:34 filecoin lotus-worker[285]: r13    0x4267960
Oct 27 07:38:34 filecoin lotus-worker[285]: r14    0x420d320
Oct 27 07:38:34 filecoin lotus-worker[285]: r15    0x2030000
Oct 27 07:38:34 filecoin lotus-worker[285]: rip    0x5885e1
Oct 27 07:38:34 filecoin lotus-worker[285]: rflags 0x286
Oct 27 07:38:34 filecoin lotus-worker[285]: cs     0x33
Oct 27 07:38:34 filecoin lotus-worker[285]: fs     0x0
Oct 27 07:38:34 filecoin lotus-worker[285]: gs     0x0

@karalabe
Copy link
Author

No idea what's happening above, PC2 takes beteen 30-60 minutes generally.

@karalabe
Copy link
Author

8 hours later and my GPU is already running with leaked memory:

# lotus-miner sealing jobs
ID  Sector  Worker  Hostname  Task  State    Time
48  393     2       filecoin  PC1   running  4h32m27s
49  399     2       filecoin  PC1   running  4h32m27s
64  388     2       filecoin  PC1   running  3h28m17.3s
67  391     2       filecoin  PC1   running  3h11m44.2s
71  404     2       filecoin  PC1   running  2h15m16.5s
# nvidia-smi
Tue Oct 27 16:00:39 2020       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 455.28       Driver Version: 455.28       CUDA Version: 11.1     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  GeForce RTX 3080    Off  | 00000000:C1:00.0 Off |                  N/A |
|  0%   33C    P8    17W / 340W |   1601MiB / 10015MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
+-----------------------------------------------------------------------------+

I.e. No PC2 or C2 running for hours now, but the GPU still has memory allocated on it which will build up and choke future PC2s.

@karalabe
Copy link
Author

Typically the sector logs look like this:

[...]
5.	2020-10-27 07:38:46 +0200 EET:	[event;sealing.SectorSealPreCommit2Failed]	{"User":{}}
	seal pre commit(2) failed: handler: websocket connection closed
6.	2020-10-27 07:39:46 +0200 EET:	[event;sealing.SectorRetrySealPreCommit2]	{"User":{}}
7.	2020-10-27 07:55:59 +0200 EET:	[event;sealing.SectorSealPreCommit2Failed]	{"User":{}}
	seal pre commit(2) failed: presealing sector 388 (): Rust panic: no unwind information
8.	2020-10-27 07:56:59 +0200 EET:	[event;sealing.SectorRetrySealPreCommit2]	{"User":{}}
9.	2020-10-27 09:51:51 +0200 EET:	[event;sealing.SectorSealPreCommit2Failed]	{"User":{}}
	seal pre commit(2) failed: presealing sector 388 (): Rust panic: no unwind information
10.	2020-10-27 09:52:51 +0200 EET:	[event;sealing.SectorRetrySealPreCommit2]	{"User":{}}
11.	2020-10-27 10:05:15 +0200 EET:	[event;sealing.SectorSealPreCommit2Failed]	{"User":{}}
	seal pre commit(2) failed: presealing sector 388 (): Rust panic: no unwind information
12.	2020-10-27 10:06:15 +0200 EET:	[event;sealing.SectorRetrySealPreCommit1]	{"User":{}}
13.	2020-10-27 12:21:44 +0200 EET:	[event;sealing.SectorSealPreCommit1Failed]	{"User":{}}
	seal pre commit(1) failed: acquiring sector paths: local acquire error: finding best storage for allocating : no good path found
14.	2020-10-27 12:22:44 +0200 EET:	[event;sealing.SectorRetrySealPreCommit1]	{"User":{}}

@porcuquine
Copy link
Collaborator

I am not sure whether this would have been expected to affect whatever version you are using, but we are aware of a GPU memory leak which should be fixed in the next release.

@cryptonemo cryptonemo added the gpu label Jan 21, 2021
@cryptonemo
Copy link
Collaborator

Tree building has been re-written and issues like this haven't come up in a while. I'm closing now, but any new issues should be reported.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants