已开启
fio server will crash if send signal SIGINT(ctrl-c) to server when client running #26
cenhuilin创建于 7月2日
7月2日 添加了label:sig/Application
openeuler-ci-bot
7月2日 评论:
7月2日 评论:
Welcome To openEuler Community
Hey @cenhuilin , thanks for your contribution to the community.
Bot Usage Manual
I'm the Bot here serving you. You can find the instructions on how to interact with me at Here . That means you can comment below every pull request or issue to trigger Bot Commands.
Contact Guide
If you have any questions, please contact the SIG: Application ,
and any of the maintainers: @kaitiandu, @small_leek, @zhuchunyi ,
and any of the committers: @caodongxia, @starlet-dx, @wk333 .


7月3日 关联了pull request:[sync] PR-99: server: reap child processes on SIGINT to prevent assertion crash
7月3日 关联了pull request:[sync] PR-99: server: reap child processes on SIGINT to prevent assertion crash
7月3日 关联了pull request:[sync] PR-99: server: reap child processes on SIGINT to prevent assertion crash
7月3日 关联了pull request:[sync] PR-99: server: reap child processes on SIGINT to prevent assertion crash
7月3日 关联了pull request:[sync] PR-99: server: reap child processes on SIGINT to prevent assertion crash
7月3日 关联了pull request:[sync] PR-99: server: reap child processes on SIGINT to prevent assertion crash
fio客户端运行时向服务端发送信号 SIGINT(Ctrl-C),fio 服务端崩溃。
test2.sh:
#!/bin/bash
fio --server > server3.log 2>&1 &
SERVER_PID=! sleep 1 fio --client=127.0.0.1 libaio.fio > client3.log 2>&1 & CLIENT_PID=!
sleep 2
kill -INT $SERVER_PID
sleep 2
cat server3.log
libaio.fio:
[file1]
rw=randwrite
bs=4k
ioengine=libaio
iodepth=32
size=1G