- Timestamp:
- May 18, 2020 3:46:46 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/ioqueue-iouringfile-provider.cpp
r82968 r84333 253 253 254 254 255 /** 256 * @name LNXIOURINGSQE::u8Opc defined opcodes. 255 /** @name LNXIOURINGSQE::u8Opc defined opcodes. 257 256 * @{ */ 258 257 /** Opcode to profile the interface, does nothing. */ … … 281 280 282 281 283 /** 284 * @name Additional flags for LNX_IOURING_OPC_FSYNC requests. 282 /** @name Additional flags for LNX_IOURING_OPC_FSYNC requests. 285 283 * @{ */ 286 284 /** Sync userdata as well instead of metadata only. */ … … 289 287 290 288 291 /** 292 * @name Flags for the LNX_IOURING_SYSCALL_SETUP syscall. 289 /** @name Flags for the LNX_IOURING_SYSCALL_SETUP syscall. 293 290 * @{ */ 294 291 /** The I/O context is polled. */ … … 301 298 302 299 303 /** 304 * @name Flags for LNXIOURINGSQE::u8Flags. 300 /** @name Flags for LNXIOURINGSQE::u8Flags. 305 301 * @{ */ 306 302 /** The file descriptor was registered before use. */ … … 313 309 314 310 315 /** 316 * @name Magic mmap offsets to map submission and completion queues. 311 /** @name Magic mmap offsets to map submission and completion queues. 317 312 * @{ */ 318 313 /** Used to map the submission queue. */ … … 325 320 326 321 327 /** 328 * @name Flags used for the SQ ring structure. 322 /** @name Flags used for the SQ ring structure. 329 323 * @{ */ 330 324 /** The kernel thread needs a io_uring_enter() wakeup to continue processing requests. */ … … 333 327 334 328 335 /** 336 * @name Flags for the LNX_IOURING_SYSCALL_ENTER syscall. 337 * { */ 329 /** @name Flags for the LNX_IOURING_SYSCALL_ENTER syscall. 330 * @{ */ 338 331 /** Retrieve completion events for the completion queue. */ 339 332 #define LNX_IOURING_ENTER_F_GETEVENTS RT_BIT_32(0) … … 343 336 344 337 345 /** 346 * @name Opcodes for the LNX_IOURING_SYSCALL_REGISTER syscall. 347 * { */ 338 /** @name Opcodes for the LNX_IOURING_SYSCALL_REGISTER syscall. 339 * @{ */ 348 340 /** Register a fixed set of buffers. */ 349 341 #define LNX_IOURING_REGISTER_OPC_BUFFERS_REGISTER 0
Note:
See TracChangeset
for help on using the changeset viewer.