上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 164 下一页

2020年11月11日

摘要: https://blog.csdn.net/whatday/article/details/88896800 sudo apt-get update $ sudo apt-get install build-essential autoconf git $ git clone https://git 阅读全文
posted @ 2020-11-11 14:53 tycoon3 阅读(1525) 评论(0) 推荐(0)
摘要: 无论是哪种设备,在 /dev 目录下都有一个对应的文件(节点),并且每个设备文件都必须有主/次设备号,主设备号相同的设备是同类设备,使用同一个驱动程序(虽然目前的内核允许多个驱动共享一个主设备号,但绝大多数设备依然遵循一个驱动对应一个主设备号的原则)。 可以通过 cat /proc/devices 阅读全文
posted @ 2020-11-11 11:55 tycoon3 阅读(826) 评论(0) 推荐(0)

2020年11月10日

摘要: [ 0.137372] (driver?) [ 0.137550] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) [ 0.137762] CPU: 0 PID: 1 Comm: swapp 阅读全文
posted @ 2020-11-10 17:40 tycoon3 阅读(1923) 评论(0) 推荐(0)
摘要: root@pcl-01:/usr/share/kata-containers# strings vmlinux-5.0.21-84 | grep "Linux version" Linux version 5.0.21 (root@pcl-01) (gcc version 7.5.0 (Ubuntu 阅读全文
posted @ 2020-11-10 16:00 tycoon3 阅读(3085) 评论(0) 推荐(0)
摘要: netdev_dpdk_vhost_construct定义在文件openvswitch-2.9.2/lib/netdev-dpdk.c 1058 static int 1059 netdev_dpdk_vhost_construct(struct netdev *netdev) 1060 { 106 阅读全文
posted @ 2020-11-10 10:52 tycoon3 阅读(1150) 评论(0) 推荐(0)

2020年11月9日

摘要: http://blog.chinaunix.net/uid-28541347-id-5786547.html https://zhaozhanxu.com/2017/02/16/QEMU/2017-02-16-qemu-reconnect/ qemu-system-aarch64: -netdev 阅读全文
posted @ 2020-11-09 16:19 tycoon3 阅读(1652) 评论(0) 推荐(0)
摘要: 去debuginfo.centos.org 下载相应的rpm包, cat /etc/yum.repos.d/CentOS-Debug.repo #Debug Info [debug] name=CentOS-$releasever - DebugInfo baseurl=http://debugin 阅读全文
posted @ 2020-11-09 14:17 tycoon3 阅读(327) 评论(0) 推荐(0)
摘要: https://community.arm.com/developer/tools-software/tools/b/tools-software-ides-blog/posts/open-vswitch-with-dpdk-setup-on-arm-for-phy-vm-phy-vhost-loo 阅读全文
posted @ 2020-11-09 10:48 tycoon3 阅读(369) 评论(0) 推荐(0)

2020年11月6日

摘要: 1. eventfd 事件通知 eventfd 事件通知不仅可以用于线程间的事件通知,还可以用于内核和用户空间的事件通知。 2. eventfd 用户空间API #include <sys/eventfd.h> //创建事件通知句柄,可以被read 和 write 函数使用 int eventfd( 阅读全文
posted @ 2020-11-06 17:04 tycoon3 阅读(697) 评论(0) 推荐(0)
摘要: 首先说明在2.6.36以后ioctl函数已经不再存在了,而是用unlocked_ioctl和compat_ioctl两个函数实现以前版本的ioctl函数。 ioctl 是设备驱动程序中设备控制接口函数,一个字符设备驱动通常会实现设备打开、关闭、读、写等功能,在一些需要细分的情境下,如果需要扩展新的功 阅读全文
posted @ 2020-11-06 15:01 tycoon3 阅读(820) 评论(0) 推荐(0)
上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 164 下一页

导航