Open christmart opened 4 years ago
RDMA certainly won't work, as it was never properly finished. UDP and TCP worked last I'm I tried rpcping, but that was, admittedly, a long time ago. Go ahead and post the backtrace.
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". Core was generated by `./tests/rpcping tcp localhost --count=1000 --threads=4 --workers=2'. Program terminated with signal SIGSEGV, Segmentation fault.
[Current thread is 1 (Thread 0x7fe0488aa700 (LWP 128873))]
(gdb) back
@dang I encountered the same problem in version 4.0. I observed that this test file has not been updated for a long time. Is it out of date and not applicable? How do I test myself?
It is certainly out-of-date. It was written to help develop RDMA, and hasn't been used since the developer working on RDMA left the project. I'm open to having it working again, but I don't think I'll have time to work on it myself.
server side rdma support is enabled now in tirpc, but we need to fix rdma clnt also to make rpcping work.
server side rdma support is enabled now in tirpc, but we need to fix rdma clnt also to make rpcping work.
Are you considering making this work eventually? If not, should we remove rpcping?
Don't we need clnt anyway for the backchannel?
yeah, eventually we want to fix rdma_clnt to enable callback channels, that should fix rpcping also. But for now we should disable rdma from rpcping till we fix it.
While building ntirpc 3.3 on Debian unstable I tried to run the test suit with
Every call version above results in a segmentation fault. strace shows:
[pid 23495] sendmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\200\0\0(", iov_len=4}, {iov_base="\0\0\0\2\0\0\0\0\0\0\0\2\0\1\206\243\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0"..., iov_len=40}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_DONTWAIT <unfinished ...> [pid 23494] <... write resumed>) = 4 [pid 23492] rt_sigprocmask(SIG_SETMASK, [], <unfinished ...> [pid 23495] <... sendmsg resumed>) = -1 ECONNREFUSED (Connection refused) [pid 23493] <... read resumed>"\0\0\0\0", 4) = 4 [pid 23492] <... rt_sigprocmask resumed>NULL, 8) = 0 [pid 23495] epoll_ctl(6, EPOLL_CTL_DEL, 3, 0x55c6c6a98158 <unfinished ...> [pid 23494] write(4, "\0\0\0\0", 4 <unfinished ...> [pid 23492] mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...> [pid 23493] epoll_wait(6, <unfinished ...> [pid 23495] <... epoll_ctl resumed>) = 0 [pid 23492] <... mmap resumed>) = 0x7fa6a00e6000 [pid 23494] <... write resumed>) = 4 [pid 23492] mprotect(0x7fa6a00e7000, 8388608, PROT_READ|PROT_WRITE <unfinished ...> [pid 23495] futex(0x7fa69c000bb4, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, {tv_sec=1600699135, tv_nsec=456362868}, FUTEX_BITSET_MATCH_ANY <unfinished ...> [pid 23493] <... epoll_wait resumed>[{EPOLLIN, {u32=5, u64=5}}], 512, 29996) = 1 [pid 23492] <... mprotect resumed>) = 0 [pid 23494] --- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=0x60} ---
I can provide a coredump ..