tree: https://github.com/ammarfaizi2/linux-block axboe/linux-block/io_uring-bundle head: 71c91d09c08c70a5c13e0481ffa94abe3da94828 commit: b4023781d7a6f8fc3abd89a289bec594762e4ea8 [26/29] io_uring: add support for bundles config: loongarch-randconfig-m031-20221120 compiler: loongarch64-linux-gcc (GCC) 12.1.0 If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot smatch warnings: io_uring/io_uring.c:1362 io_put_req_find_next() warn: inconsistent indenting vim +1362 io_uring/io_uring.c 7a743e225b2a9d fs/io_uring.c Pavel Begunkov 2020-03-03 1350 ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1351 /* ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1352 * Drop reference to request, return next in chain (if there is one) if this ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1353 * was the last reference to this request. ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1354 */ 0d85035a7368a6 fs/io_uring.c Pavel Begunkov 2021-03-19 1355 static inline struct io_kiocb *io_put_req_find_next(struct io_kiocb *req) e65ef56db4945f fs/io_uring.c Jens Axboe 2019-03-12 1356 { 9b5f7bd9327268 fs/io_uring.c Pavel Begunkov 2020-06-29 1357 struct io_kiocb *nxt = NULL; 9b5f7bd9327268 fs/io_uring.c Pavel Begunkov 2020-06-29 1358 de9b4ccad750f2 fs/io_uring.c Jens Axboe 2021-02-24 1359 if (req_ref_put_and_test(req)) { b4023781d7a6f8 io_uring/io_uring.c Jens Axboe 2022-11-22 1360 if (req->flags & REQ_F_BUNDLE) b4023781d7a6f8 io_uring/io_uring.c Jens Axboe 2022-11-22 1361 io_bundle_req_complete(req); da1a08c5b28176 fs/io_uring.c Pavel Begunkov 2022-04-15 @1362 if (unlikely(req->flags & IO_REQ_LINK_FLAGS)) 9b5f7bd9327268 fs/io_uring.c Pavel Begunkov 2020-06-29 1363 nxt = io_req_find_next(req); f5c6cf2a310d8d fs/io_uring.c Pavel Begunkov 2022-04-15 1364 io_free_req(req); ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1365 } 9b5f7bd9327268 fs/io_uring.c Pavel Begunkov 2020-06-29 1366 return nxt; 2a44f46781617c fs/io_uring.c Jens Axboe 2020-02-25 1367 } 2b188cc1bb857a fs/io_uring.c Jens Axboe 2019-01-07 1368 :::::: The code at line 1362 was first introduced by commit :::::: da1a08c5b28176398773de30a056ba7b994e6988 io_uring: introduce IO_REQ_LINK_FLAGS :::::: TO: Pavel Begunkov :::::: CC: Jens Axboe -- 0-DAY CI Kernel Test Service https://01.org/lkp