今天在使用fio進行IO測試的時候,文件系統/home分區遇到了mount: Structure needs cleaning 報錯。大致情況:
/home分區是xfs文件系統;
執行fio進行多進程測試;
測試完畢之後,執行du -hs /home/*,部分文件的數據提示 “mount: Structure needs cleaning”報錯;
解決方法
可以使用xfs_repair來修復,但是要注意 xfs_repair修復的分區中的文件都會丟失,即使是du能正常顯示的文件也會丟失。
處理步驟:
umount /home
xfs_repair /home
mount /home