summaryrefslogtreecommitdiffstats
path: root/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2021-02-07 08:43:53 -0500
committerBruce Ashfield <bruce.ashfield@gmail.com>2021-02-07 08:43:53 -0500
commit436b60e582ec5026db82d8961477ffe94d8e2b90 (patch)
tree88438499a40b1ef2859c4cbd9e1f1413211024da /recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
parent0904b0a7788d22f32d28541197c898e032107c99 (diff)
downloadmeta-virtualization-436b60e582ec5026db82d8961477ffe94d8e2b90.tar.gz
kvmtool: refresh to 5.10 version
Grabbing the latest kvmtool sources. These follow kernel numbering, so we bump that to 5.10 to match. We also drop one patch that is part of the main repo now, and refresh the others to avoid fuzz warnings. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch')
-rw-r--r--recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch12
1 files changed, 5 insertions, 7 deletions
diff --git a/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch b/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
index 63911fc2..4582285b 100644
--- a/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
+++ b/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
@@ -1,20 +1,21 @@
1From bcd954ffdb9383030e02d356b51e09e4e2a7105a Mon Sep 17 00:00:00 2001 1From 6b864b05b7aea74f375502250e99f54564cfe829 Mon Sep 17 00:00:00 2001
2From: Dariusz Pelowski <dariusz.pelowski@gmail.com> 2From: Dariusz Pelowski <dariusz.pelowski@gmail.com>
3Date: Sun, 5 Nov 2017 12:39:52 +0100 3Date: Sun, 5 Nov 2017 12:39:52 +0100
4Subject: [PATCH 1/2] kvmtool: 9p: fixed compilation error 4Subject: [PATCH] kvmtool: 9p: fixed compilation error
5 5
6makedev is defined in sys/sysmacros.h 6makedev is defined in sys/sysmacros.h
7 7
8Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com> 8Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com>
9
9--- 10---
10 virtio/9p.c | 1 + 11 virtio/9p.c | 1 +
11 1 file changed, 1 insertion(+) 12 1 file changed, 1 insertion(+)
12 13
13diff --git a/virtio/9p.c b/virtio/9p.c 14diff --git a/virtio/9p.c b/virtio/9p.c
14index 6acbfdd..1dee2c2 100644 15index b78f2b3..838c5c4 100644
15--- a/virtio/9p.c 16--- a/virtio/9p.c
16+++ b/virtio/9p.c 17+++ b/virtio/9p.c
17@@ -15,6 +15,7 @@ 18@@ -16,6 +16,7 @@
18 #include <string.h> 19 #include <string.h>
19 #include <errno.h> 20 #include <errno.h>
20 #include <sys/vfs.h> 21 #include <sys/vfs.h>
@@ -22,6 +23,3 @@ index 6acbfdd..1dee2c2 100644
22 23
23 #include <linux/virtio_ring.h> 24 #include <linux/virtio_ring.h>
24 #include <linux/virtio_9p.h> 25 #include <linux/virtio_9p.h>
25--
262.15.0
27