1 Star 0 Fork 40

Xming/multipath-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0010-bugfix-flush-and-sync-before-reboot.patch 680 Bytes
一键复制 编辑 原始数据 按行查看 历史
wangzhiqiang 提交于 2024-02-05 16:52 . upgrade version to 0.9.5
From e8320323aea97e9bfddd8cd5f4b31ec525370eb3 Mon Sep 17 00:00:00 2001
From: Lixiaokeng <lixiaokeng@huawei.com>
Date: Tue, 23 Nov 2021 21:16:19 +0800
Subject: [PATCH] bugfix flush and sync before reboot
---
libmpathutil/util.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/libmpathutil/util.c b/libmpathutil/util.c
index 92f25a5..a89f0b4 100644
--- a/libmpathutil/util.c
+++ b/libmpathutil/util.c
@@ -318,6 +318,13 @@ int safe_write(int fd, const void *buf, size_t count)
count -= r;
buf = (const char *)buf + r;
}
+
+ /* sync->disk */
+ if (fsync(fd) < 0) {
+ condlog(0, "failed to fsync fd :%d", fd);
+ return -errno;
+ }
+
return 0;
}
--
2.33.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zjmblog/multipath-tools.git
git@gitee.com:zjmblog/multipath-tools.git
zjmblog
multipath-tools
multipath-tools
master

搜索帮助