上一页 1 2 3 4 5 6 ··· 18 下一页
摘要: LINUX平台收发TCP URG报文客户端:sz = send(sd, "hello", 5, MSG_OOB);发送字节:5, 内容:'hello'服务端:sz = recv(sd, buf, sizeof(buf), MSG_OOB);OOB接收字节:1, 内容:'o'sz = recv(sd, 阅读全文
posted @ 2019-07-25 17:31 mull 阅读(289) 评论(0) 推荐(0) 编辑
摘要: openssl-1.0.1p源码安装后,依赖于openssl.so库的应用报错libcrypto.so.1.0.0: no version information available解法:1. 创建 /tmp/openssl.ld,如下:OPENSSL_1.0.0 { global: *;};OPE 阅读全文
posted @ 2019-04-25 16:20 mull 阅读(2382) 评论(0) 推荐(0) 编辑
摘要: EAL: Detected 4 lcore(s)EAL: Detected 1 NUMA nodesEAL: Multi-process socket /var/run/dpdk/rte/mp_socket2019/01/15 16:53:06 [error] 23804#0: primary wo 阅读全文
posted @ 2019-01-16 09:08 mull 阅读(986) 评论(0) 推荐(0) 编辑
摘要: f-stack中ipc传递指针从应用中读取信息时挂掉如:创建bridge0./ifconfig bridge0 create./ifconfig f-stack-0 down./ifconfig f-stack-1 down./ifconfig bridge0 addm f-stack-0 addm 阅读全文
posted @ 2019-01-09 15:25 mull 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 2018-11-12 13:34:12调试允许跨站请求A站:http://127.0.0.1:35585B站:http://192.168.58.228A站请求:$.getJson("http://192.168.58.228/api/api.php", function(res){ ... }); 阅读全文
posted @ 2018-11-12 15:05 mull 阅读(264) 评论(0) 推荐(0) 编辑
摘要: DPDK kni创建要先于port开启1. DPDK kni创建使用API:- rte_kni_init- rte_kni_alloc2. DPDK port开启使用API:- rte_eth_dev_start先创建kni口再开启port, 顺序不能颠倒,否则可能引起如下问题:- 即使配置指定". 阅读全文
posted @ 2018-08-31 16:45 mull 阅读(651) 评论(0) 推荐(0) 编辑
摘要: 1. 参文“在Windows下编译Cef3.2623并加入mp3、mp4支持(附带源码包和最终DLL)”下载包 http://blog.csdn.net/zhuhongshu/article/details/54193842 2. 创建build.bat e:\cef\ source automat 阅读全文
posted @ 2018-07-29 22:57 mull 阅读(655) 评论(0) 推荐(0) 编辑
摘要: LINUX内核PCI扫描过程 内核版本 3.10.1031. ACPI热插拔扫描subsys_initcall(acpi_init)@drivers/acpi/bus.c |-acpi_scan_init@drivers/acpi/scan.c |->acpi_pci_root_init@drive 阅读全文
posted @ 2018-07-19 17:33 mull 阅读(1241) 评论(0) 推荐(0) 编辑
摘要: 来源:本文由公众号 半导体行业观察(ID:icbank)翻译自「anandtech」,谢谢。 北京时间今天凌晨,Intel宣布收购了半导体设计公司eASIC。 eASIC的商业模式介于传统Fabless芯片设计公司和芯片设计服务公司之间。其芯片可以说是重新启用了经典的sea-of-gates架构,即 阅读全文
posted @ 2018-07-13 11:36 mull 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 2018-6-27 9:12:38https://stackoverflow.com/questions/26385554/error-setting-nr-hugepages-via-sysfs~ # echo 1 > /sys/devices/system/node/node0/hugepage 阅读全文
posted @ 2018-06-27 10:10 mull 阅读(471) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 18 下一页