7 Star 0 Fork 14

src-openEuler/hdparm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0001-hdparm-fallocate-close-fd.patch 375 Bytes
一键复制 编辑 原始数据 按行查看 历史
wj196 提交于 2020-07-17 11:29 . upgrade package to 9.58
diff --git a/fallocate.c b/fallocate.c
index 4e60459..d73c0f9 100644
--- a/fallocate.c
+++ b/fallocate.c
@@ -39,9 +39,11 @@ int do_fallocate_syscall (const char *path, __u64 bytecount)
err = syscall(SYS_fallocate, fd, mode, offset, len);
if (err >= 0) {
fsync(fd);
+ close(fd);
exit(0);
}
err = errno;
+ close(fd);
unlink(path);
}
perror(path);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/hdparm.git
git@gitee.com:src-openeuler/hdparm.git
src-openeuler
hdparm
hdparm
master

搜索帮助