6 Star 1 Fork 17

src-openEuler/kiran-cc-daemon

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0019-fix-systeminfo-Remove-the-duplicate-graphical-and-ne.patch 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
From df915cbcc72f0ac8c220e40a62eb6da050057c3e Mon Sep 17 00:00:00 2001
From: tangjie02 <tangjie02@kylinsec.com.cn>
Date: Thu, 4 Jul 2024 19:39:36 +0800
Subject: [PATCH 19/22] fix(systeminfo): Remove the duplicate graphical and
network hardware info.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 移除重复的显卡和网络设备
Signed-off-by: tangjie02 <tangjie02@kylinsec.com.cn>
---
plugins/systeminfo/systeminfo-hardware.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/plugins/systeminfo/systeminfo-hardware.cpp b/plugins/systeminfo/systeminfo-hardware.cpp
index 73960f7..8ccb0e4 100644
--- a/plugins/systeminfo/systeminfo-hardware.cpp
+++ b/plugins/systeminfo/systeminfo-hardware.cpp
@@ -355,6 +355,10 @@ KVList SystemInfoHardware::get_pcis_by_major_class_id(PCIMajorClassID major_clas
// 如果为空则不执行下面的命令,否则会取到所有的PCI设备(没有了-d选项的限制)
RETURN_VAL_IF_TRUE(full_class_ids.size() == 0, KVList());
+ // 对full_class_ids去重
+ std::sort(full_class_ids.begin(), full_class_ids.end());
+ full_class_ids.erase(std::unique(full_class_ids.begin(), full_class_ids.end()), full_class_ids.end());
+
// 根据full_class_id列表获取设备相关信息
std::string full_outputs;
for (auto& full_class_id : full_class_ids)
--
2.27.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/kiran-cc-daemon.git
git@gitee.com:src-openeuler/kiran-cc-daemon.git
src-openeuler
kiran-cc-daemon
kiran-cc-daemon
master

搜索帮助