tree: https://github.com/ammarfaizi2/linux-block axboe/linux-block/io_uring-bundle head: 6309487285f29f66a7a75c1dae95b7f2fd26813c commit: 2f3a7d309a69f171c4cd83b37ea1099f0548ecaa [6/8] io_uring: add support for bundles config: x86_64-randconfig-m001 compiler: gcc-11 (Debian 11.3.0-8) 11.3.0 If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot smatch warnings: io_uring/io_uring.c:1517 io_put_req_find_next() warn: inconsistent indenting vim +1517 io_uring/io_uring.c 7a743e225b2a9d fs/io_uring.c Pavel Begunkov 2020-03-03 1505 ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1506 /* ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1507 * Drop reference to request, return next in chain (if there is one) if this ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1508 * was the last reference to this request. ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1509 */ 0d85035a7368a6 fs/io_uring.c Pavel Begunkov 2021-03-19 1510 static inline struct io_kiocb *io_put_req_find_next(struct io_kiocb *req) e65ef56db4945f fs/io_uring.c Jens Axboe 2019-03-12 1511 { 9b5f7bd9327268 fs/io_uring.c Pavel Begunkov 2020-06-29 1512 struct io_kiocb *nxt = NULL; 9b5f7bd9327268 fs/io_uring.c Pavel Begunkov 2020-06-29 1513 de9b4ccad750f2 fs/io_uring.c Jens Axboe 2021-02-24 1514 if (req_ref_put_and_test(req)) { 2f3a7d309a69f1 io_uring/io_uring.c Jens Axboe 2022-11-22 1515 if (req->flags & REQ_F_BUNDLE) 2f3a7d309a69f1 io_uring/io_uring.c Jens Axboe 2022-11-22 1516 io_bundle_req_complete(req, IO_URING_F_UNLOCKED); da1a08c5b28176 fs/io_uring.c Pavel Begunkov 2022-04-15 @1517 if (unlikely(req->flags & IO_REQ_LINK_FLAGS)) 9b5f7bd9327268 fs/io_uring.c Pavel Begunkov 2020-06-29 1518 nxt = io_req_find_next(req); f5c6cf2a310d8d fs/io_uring.c Pavel Begunkov 2022-04-15 1519 io_free_req(req); ba816ad61fdf31 fs/io_uring.c Jens Axboe 2019-09-28 1520 } 9b5f7bd9327268 fs/io_uring.c Pavel Begunkov 2020-06-29 1521 return nxt; 2a44f46781617c fs/io_uring.c Jens Axboe 2020-02-25 1522 } 2b188cc1bb857a fs/io_uring.c Jens Axboe 2019-01-07 1523 :::::: The code at line 1517 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://github.com/intel/lkp-tests