From 3200e997d0692398088c944836add7c331677f29 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sat, 18 May 2019 00:00:19 -0700 Subject: Fix manpage mmap() syntax The examples in the io_uring_setup.2 man patch erroneously ORs the protection bits and mmap flags, fix it up. Signed-off-by: Ian Gulliver Signed-off-by: Jens Axboe --- man/io_uring_setup.2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man/io_uring_setup.2 b/man/io_uring_setup.2 index 6814397..9e66cbd 100644 --- a/man/io_uring_setup.2 +++ b/man/io_uring_setup.2 @@ -172,7 +172,7 @@ submission queue can be mapped with a call like: .in +4n .EX ptr = mmap(0, sq_off.array + sq_entries * sizeof(__u32), - PROT_READ|PROT_WRITE|MAP_SHARED|MAP_POPULATE, + PROT_READ|PROT_WRITE, MAP_SHARED|MAP_POPULATE, ring_fd, IORING_OFF_SQ_RING); .EE .in @@ -229,7 +229,7 @@ The array of submission queue entries is mapped with: .in +4n .EX sqentries = mmap(0, sq_entries * sizeof(struct io_uring_sqe), - PROT_READ|PROT_WRITE|MAP_SHARED|MAP_POPULATE, + PROT_READ|PROT_WRITE, MAP_SHARED|MAP_POPULATE, ring_fd, IORING_OFF_SQES); .EE .in @@ -260,7 +260,7 @@ from the queue itself, and can be mapped with: .in +4n .EX ptr = mmap(0, cq_off.cqes + cq_entries * sizeof(struct io_uring_cqe), - PROT_READ|PROT_WRITE|MAP_SHARED|MAP_POPULATE, ring_fd, + PROT_READ|PROT_WRITE, MAP_SHARED|MAP_POPULATE, ring_fd, IORING_OFF_CQ_RING); .EE .in -- cgit