Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost

Pull virtio fix from Michael Tsirkin:
"A last-minute fix for a test build"

* tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost:
virtio: fix test build after uio.h change

+4
+4
tools/virtio/linux/kernel.h
··· 23 23 #define PAGE_MASK (~(PAGE_SIZE-1)) 24 24 #define PAGE_ALIGN(x) ((x + PAGE_SIZE - 1) & PAGE_MASK) 25 25 26 + /* generic data direction definitions */ 27 + #define READ 0 28 + #define WRITE 1 29 + 26 30 typedef unsigned long long phys_addr_t; 27 31 typedef unsigned long long dma_addr_t; 28 32 typedef size_t __kernel_size_t;