mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-30 19:15:42 +00:00 
			
		
		
		
	 a6caeee811
			
		
	
	
		a6caeee811
		
	
	
	
	
		
			
			VDUSE [1] is a linux framework that makes it possible to implement software-emulated vDPA devices in userspace. This adds a library as a subproject to help implementing VDUSE backends in QEMU. [1] https://www.kernel.org/doc/html/latest/userspace-api/vduse.html Signed-off-by: Xie Yongji <xieyongji@bytedance.com> Message-Id: <20220523084611.91-6-xieyongji@bytedance.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			375 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			375 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| project('libvduse', 'c',
 | |
|         license: 'GPL-2.0-or-later',
 | |
|         default_options: ['c_std=gnu99'])
 | |
| 
 | |
| libvduse = static_library('vduse',
 | |
|                           files('libvduse.c'),
 | |
|                           c_args: '-D_GNU_SOURCE')
 | |
| 
 | |
| libvduse_dep = declare_dependency(link_with: libvduse,
 | |
|                                   include_directories: include_directories('.'))
 |