[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC PATCH v3 27/30] monitor: fdset: Match against O_DIRECT
|
From: |
Fabiano Rosas |
|
Subject: |
[RFC PATCH v3 27/30] monitor: fdset: Match against O_DIRECT |
|
Date: |
Mon, 27 Nov 2023 17:26:09 -0300 |
We're about to enable the use of O_DIRECT in the migration code and
due to the alignment restrictions imposed by filesystems we need to
make sure the flag is only used when doing aligned IO.
The migration will do parallel IO to different regions of a file, so
we need to use more than one file descriptor. Those cannot be obtained
by duplicating (dup()) since duplicated file descriptors share the
file status flags, including O_DIRECT. If one migration channel does
unaligned IO while another sets O_DIRECT to do aligned IO, the
filesystem would fail the unaligned operation.
The add-fd QMP command along with the fdset code are specifically
designed to allow the user to pass a set of file descriptors with
different access flags into QEMU to be later fetched by code that
needs to alternate between those flags when doing IO.
Extend the fdset matching function to behave the same with the
O_DIRECT flag.
Signed-off-by: Fabiano Rosas <farosas@suse.de>
---
monitor/fds.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/monitor/fds.c b/monitor/fds.c
index 9a28e4b72b..42bf3eb982 100644
--- a/monitor/fds.c
+++ b/monitor/fds.c
@@ -413,6 +413,12 @@ static bool monitor_fdset_flags_match(int flags, int
fd_flags)
if ((flags & O_ACCMODE) == (fd_flags & O_ACCMODE)) {
match = true;
+
+#ifdef O_DIRECT
+ if ((flags & O_DIRECT) != (fd_flags & O_DIRECT)) {
+ match = false;
+ }
+#endif
}
return match;
--
2.35.3
- [RFC PATCH v3 17/30] migration/multifd: Decouple recv method from pages, (continued)
- [RFC PATCH v3 17/30] migration/multifd: Decouple recv method from pages, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 18/30] migration/multifd: Allow receiving pages without packets, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 19/30] migration/ram: Ignore multifd flush when doing fixed-ram migration, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 20/30] migration/multifd: Support outgoing fixed-ram stream format, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 21/30] migration/multifd: Support incoming fixed-ram stream format, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 22/30] tests/qtest: Add a multifd + fixed-ram migration test, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 23/30] migration: Add direct-io parameter, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 24/30] tests/qtest: Add a test for migration with direct-io and multifd, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 25/30] monitor: Honor QMP request for fd removal immediately, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 26/30] monitor: Extract fdset fd flags comparison into a function, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 27/30] monitor: fdset: Match against O_DIRECT,
Fabiano Rosas <=
- [RFC PATCH v3 28/30] docs/devel/migration.rst: Document the file transport, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 30/30] tests/qtest: Add a test for fixed-ram with passing of fds, Fabiano Rosas, 2023/11/27
- [RFC PATCH v3 29/30] migration: Add support for fdset with multifd + file, Fabiano Rosas, 2023/11/27