* [PATCH liburing v2] queue, liburing.h: Avoid `io_uring_get_sqe()` code duplication
@ 2022-02-25 0:58 Ammar Faizi
2022-02-25 14:16 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: Ammar Faizi @ 2022-02-25 0:58 UTC (permalink / raw)
To: Jens Axboe
Cc: Ammar Faizi, Nugra, Alviro Iskandar Setiawan,
GNU/Weeb Mailing List, Tea Inside Mailing List,
io-uring Mailing List
Since commit 8be8af4afcb4909104c ("queue: provide io_uring_get_sqe()
symbol again"), we have the same definition of `io_uring_get_sqe()` in
queue.c and liburing.h.
Make it simpler, maintain it in a single place, create a new static
inline function wrapper with name `_io_uring_get_sqe()`. Then tail
call both `io_uring_get_sqe()` functions to `_io_uring_get_sqe()`.
Cc: Nugra <[email protected]>
Cc: Alviro Iskandar Setiawan <[email protected]>
Cc: GNU/Weeb Mailing List <[email protected]>
Cc: Tea Inside Mailing List <[email protected]>
Cc: io-uring Mailing List <[email protected]>
Link: https://lore.kernel.org/io-uring/[email protected] # v1
Reviewed-by: Alviro Iskandar Setiawan <[email protected]>
Tested-by: Alviro Iskandar Setiawan <[email protected]>
Signed-off-by: Ammar Faizi <[email protected]>
---
v2:
- Address a comment from Alviro (fix typo).
- Append Reviewed-by and Tested-by tag from Alviro.
src/include/liburing.h | 9 +++++++--
src/queue.c | 11 +----------
2 files changed, 8 insertions(+), 12 deletions(-)
diff --git a/src/include/liburing.h b/src/include/liburing.h
index 590fe7f..ef5a4cd 100644
--- a/src/include/liburing.h
+++ b/src/include/liburing.h
@@ -831,8 +831,7 @@ static inline int io_uring_wait_cqe(struct io_uring *ring,
*
* Returns a vacant sqe, or NULL if we're full.
*/
-#ifndef LIBURING_INTERNAL
-static inline struct io_uring_sqe *io_uring_get_sqe(struct io_uring *ring)
+static inline struct io_uring_sqe *_io_uring_get_sqe(struct io_uring *ring)
{
struct io_uring_sq *sq = &ring->sq;
unsigned int head = io_uring_smp_load_acquire(sq->khead);
@@ -845,6 +844,12 @@ static inline struct io_uring_sqe *io_uring_get_sqe(struct io_uring *ring)
}
return sqe;
}
+
+#ifndef LIBURING_INTERNAL
+static inline struct io_uring_sqe *io_uring_get_sqe(struct io_uring *ring)
+{
+ return _io_uring_get_sqe(ring);
+}
#else
struct io_uring_sqe *io_uring_get_sqe(struct io_uring *ring);
#endif
diff --git a/src/queue.c b/src/queue.c
index 6b63490..f9b6c86 100644
--- a/src/queue.c
+++ b/src/queue.c
@@ -405,16 +405,7 @@ int io_uring_submit_and_wait(struct io_uring *ring, unsigned wait_nr)
struct io_uring_sqe *io_uring_get_sqe(struct io_uring *ring)
{
- struct io_uring_sq *sq = &ring->sq;
- unsigned int head = io_uring_smp_load_acquire(sq->khead);
- unsigned int next = sq->sqe_tail + 1;
- struct io_uring_sqe *sqe = NULL;
-
- if (next - head <= *sq->kring_entries) {
- sqe = &sq->sqes[sq->sqe_tail & *sq->kring_mask];
- sq->sqe_tail = next;
- }
- return sqe;
+ return _io_uring_get_sqe(ring);
}
int __io_uring_sqring_wait(struct io_uring *ring)
base-commit: 868be37473052893b68a8586d45a750980be4329
--
2.32.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH liburing v2] queue, liburing.h: Avoid `io_uring_get_sqe()` code duplication
2022-02-25 0:58 [PATCH liburing v2] queue, liburing.h: Avoid `io_uring_get_sqe()` code duplication Ammar Faizi
@ 2022-02-25 14:16 ` Jens Axboe
0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2022-02-25 14:16 UTC (permalink / raw)
To: Ammar Faizi
Cc: io-uring Mailing List, GNU/Weeb Mailing List,
Tea Inside Mailing List, Alviro Iskandar Setiawan, Nugra
On Fri, 25 Feb 2022 07:58:14 +0700, Ammar Faizi wrote:
> Since commit 8be8af4afcb4909104c ("queue: provide io_uring_get_sqe()
> symbol again"), we have the same definition of `io_uring_get_sqe()` in
> queue.c and liburing.h.
>
> Make it simpler, maintain it in a single place, create a new static
> inline function wrapper with name `_io_uring_get_sqe()`. Then tail
> call both `io_uring_get_sqe()` functions to `_io_uring_get_sqe()`.
>
> [...]
Applied, thanks!
[1/1] queue, liburing.h: Avoid `io_uring_get_sqe()` code duplication
commit: 15c01fcd1b0d37a12d945ab8dcdf96b3e055a4fd
Best regards,
--
Jens Axboe
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-02-25 14:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-25 0:58 [PATCH liburing v2] queue, liburing.h: Avoid `io_uring_get_sqe()` code duplication Ammar Faizi
2022-02-25 14:16 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox