1 Star 0 Fork 39

shikemeng/multipath-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0010-bugfix-flush-and-sync-before-reboot.patch 687 Bytes
一键复制 编辑 原始数据 按行查看 历史
lixiaokeng 提交于 2021-11-23 21:49 . upgrade to 0.8.7
From 822769cf9509ebca9968ebd29a983271b24b1625 Mon Sep 17 00:00:00 2001
From: Lixiaokeng <lixiaokeng@huawei.com>
Date: Tue, 23 Nov 2021 21:16:19 +0800
Subject: [PATCH 10/15] bugfix flush and sync before reboot
---
libmultipath/util.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/libmultipath/util.c b/libmultipath/util.c
index ea85840..dd32803 100644
--- a/libmultipath/util.c
+++ b/libmultipath/util.c
@@ -368,6 +368,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;
}
--
1.8.3.1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shikemeng/multipath-tools.git
git@gitee.com:shikemeng/multipath-tools.git
shikemeng
multipath-tools
multipath-tools
master

搜索帮助