[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 13/16] fsdev: Disable proxy fs driver on Windows
From: |
Bin Meng |
Subject: |
[PATCH 13/16] fsdev: Disable proxy fs driver on Windows |
Date: |
Mon, 24 Oct 2022 12:57:56 +0800 |
From: Guohuai Shi <guohuai.shi@windriver.com>
We don't plan to support 'proxy' file system driver for 9pfs on
Windows. Disable it for Windows build.
Signed-off-by: Guohuai Shi <guohuai.shi@windriver.com>
Signed-off-by: Bin Meng <bin.meng@windriver.com>
---
fsdev/qemu-fsdev.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/fsdev/qemu-fsdev.c b/fsdev/qemu-fsdev.c
index 3da64e9f72..58e0710fbb 100644
--- a/fsdev/qemu-fsdev.c
+++ b/fsdev/qemu-fsdev.c
@@ -89,6 +89,7 @@ static FsDriverTable FsDrivers[] = {
NULL
},
},
+#ifndef CONFIG_WIN32
{
.name = "proxy",
.ops = &proxy_ops,
@@ -100,6 +101,7 @@ static FsDriverTable FsDrivers[] = {
NULL
},
},
+#endif
};
static int validate_opt(void *opaque, const char *name, const char *value,
--
2.25.1
- [PATCH 02/16] hw/9pfs: Drop unnecessary *xattr wrapper API declarations, (continued)
- [PATCH 02/16] hw/9pfs: Drop unnecessary *xattr wrapper API declarations, Bin Meng, 2022/10/24
- [PATCH 05/16] hw/9pfs: Update P9_FILE_ID to support Windows, Bin Meng, 2022/10/24
- [PATCH 06/16] hw/9pfs: Add missing definitions for Windows, Bin Meng, 2022/10/24
- [PATCH 12/16] hw/9pfs: Translate Windows errno to Linux value, Bin Meng, 2022/10/24
- [PATCH 07/16] hw/9pfs: Implement Windows specific utilities functions for 9pfs, Bin Meng, 2022/10/24
- [PATCH 10/16] hw/9pfs: Update the local fs driver to support Windows, Bin Meng, 2022/10/24
- [PATCH 04/16] hw/9pfs: Introduce an opaque type 9P_FILE_ID, Bin Meng, 2022/10/24
- [PATCH 08/16] hw/9pfs: Handle current directory offset for Windows, Bin Meng, 2022/10/24
- [PATCH 09/16] hw/9pfs: Disable unsupported flags and features for Windows, Bin Meng, 2022/10/24
- [PATCH 11/16] hw/9pfs: Add Linux error number definition, Bin Meng, 2022/10/24
- [PATCH 13/16] fsdev: Disable proxy fs driver on Windows,
Bin Meng <=
- [PATCH 15/16] tests/qtest: virtio-9p-test: Adapt the case for win32, Bin Meng, 2022/10/24
- [PATCH 14/16] hw/9pfs: Update synth fs driver for Windows, Bin Meng, 2022/10/24
- [PATCH 16/16] meson.build: Turn on virtfs for Windows, Bin Meng, 2022/10/24
- Re: [PATCH 00/16] hw/9pfs: Add 9pfs support for Windows, Bin Meng, 2022/10/27