Message ID | 20240411055953.2029218-1-ruyi.zhang@samsung.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | io_uring/timeout: remove duplicate initialization of the io_timeout list. | expand |
On Thu, 11 Apr 2024 13:59:53 +0800, Ruyi Zhang wrote: > In the __io_timeout_prep function, the io_timeout list is initialized > twice, removing the meaningless second initialization. > > Applied, thanks! [1/1] io_uring/timeout: remove duplicate initialization of the io_timeout list. commit: 99e440c5b1d70084eeb2097bd035e50c2de62884 Best regards,
diff --git a/io_uring/timeout.c b/io_uring/timeout.c index 7fd7dbb211d6..93ff94e82fd4 100644 --- a/io_uring/timeout.c +++ b/io_uring/timeout.c @@ -541,7 +541,6 @@ static int __io_timeout_prep(struct io_kiocb *req, if (data->ts.tv_sec < 0 || data->ts.tv_nsec < 0) return -EINVAL; - INIT_LIST_HEAD(&timeout->list); data->mode = io_translate_timeout_mode(flags); hrtimer_init(&data->timer, io_timeout_get_clock(data), data->mode);
In the __io_timeout_prep function, the io_timeout list is initialized twice, removing the meaningless second initialization. Signed-off-by: Ruyi Zhang <ruyi.zhang@samsung.com> --- io_uring/timeout.c | 1 - 1 file changed, 1 deletion(-)