- sync some bugfix patches from upstream - support vhostuser disk - libvirt: support dirtyrate (calc-dirty-rate, dirtyrate-param.mode) Signed-off-by: yezengruan <yezengruan@huawei.com>
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From 94ce004ea840aed0c8159502a6a7bd2b0dd3f4a7 Mon Sep 17 00:00:00 2001
|
|
From: tangbinzy <tangbin_yewu@cmss.chinamobile.com>
|
|
Date: Tue, 29 Nov 2022 09:42:43 +0000
|
|
Subject: [PATCH 06/24] tests: Fix lstat() mock initialization on macOS There
|
|
is a typo that prevents initialization of real_lstat.
|
|
|
|
Fixes: d6b17edd5163 ("tests: Lookup extended stat/lstat in mocks")
|
|
Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>
|
|
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
|
|
|
|
Signed-off-by: tangbin <tangbin_yewu@cmss.chinamobile.com>
|
|
(cherry-pick from 2c0b3db3c7901f99eed8d95a652b176c9b04b45d)
|
|
---
|
|
tests/virmockstathelpers.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/virmockstathelpers.c b/tests/virmockstathelpers.c
|
|
index 5118ffc731..9cd6f5edb8 100644
|
|
--- a/tests/virmockstathelpers.c
|
|
+++ b/tests/virmockstathelpers.c
|
|
@@ -169,7 +169,7 @@ static void virMockStatInit(void)
|
|
#endif
|
|
#ifdef MOCK_LSTAT
|
|
# ifdef __APPLE__
|
|
- VIR_MOCK_REAL_INIT_ALIASED(stat, "lstat$INODE64");
|
|
+ VIR_MOCK_REAL_INIT_ALIASED(lstat, "lstat$INODE64");
|
|
# else
|
|
VIR_MOCK_REAL_INIT(lstat);
|
|
# endif
|
|
--
|
|
2.27.0
|
|
|