From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 96611C4332F for ; Tue, 8 Nov 2022 12:27:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234056AbiKHM1K (ORCPT ); Tue, 8 Nov 2022 07:27:10 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46498 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233975AbiKHM1J (ORCPT ); Tue, 8 Nov 2022 07:27:09 -0500 Received: from mx0a-00082601.pphosted.com (mx0a-00082601.pphosted.com [67.231.145.42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 91AF732BBE for ; Tue, 8 Nov 2022 04:27:08 -0800 (PST) Received: from pps.filterd (m0148461.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 2A80VJFr008534 for ; Tue, 8 Nov 2022 04:27:08 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=meta.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=s2048-2021-q4; bh=UIAfAm1Ch4yQSzy3pXPARrbFyiYmBpx/EJeYNdGFMVg=; b=Z++vRcY7wleErcSJkalUhcwY+1IXAq0TGYjg+/Bawt4ZQWjf3Xol7Yv4949HguNZk6cH WcFceFZ0jcbjMYbzV7HvY7OB1+V9wuiMNX62oojswIEttuxxm63wbltrSwXwJYI7tjFc 3wGsY39D81ewoA1SXSQD0W+D9r+5heFyPDHCdHugltTnLVY+fuCedvJgG6Am/Sc32Ffj mO27uvfuY74KbVG7/Cpbp1GfMt21nh8/Si5nz6D6sXFiZKTVhs9C1j4mw3g/zOEUplhk WzhsLzoppN8WzMli2CWjK7upcP5+AObzaia283Jhge+26euxdZL429rY9jYd4wpUtiye Pg== Received: from mail.thefacebook.com ([163.114.132.120]) by mx0a-00082601.pphosted.com (PPS) with ESMTPS id 3kqcmqusv5-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Tue, 08 Nov 2022 04:27:08 -0800 Received: from twshared2001.03.ash8.facebook.com (2620:10d:c085:108::8) by mail.thefacebook.com (2620:10d:c085:21d::5) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Tue, 8 Nov 2022 04:27:07 -0800 Received: by devbig038.lla2.facebook.com (Postfix, from userid 572232) id 1E04A91C623C; Tue, 8 Nov 2022 04:26:59 -0800 (PST) From: Dylan Yudaken To: Jens Axboe , Pavel Begunkov CC: , , Dylan Yudaken Subject: [PATCH liburing v3] test that unregister_files processes task work Date: Tue, 8 Nov 2022 04:26:56 -0800 Message-ID: <20221108122656.628470-1-dylany@meta.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-GUID: flGIinS-FYaXeqYI6Erga0TnlXbMRsyR X-Proofpoint-ORIG-GUID: flGIinS-FYaXeqYI6Erga0TnlXbMRsyR X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.219,Aquarius:18.0.895,Hydra:6.0.545,FMLib:17.11.122.1 definitions=2022-11-07_11,2022-11-08_01,2022-06-22_01 Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org Ensure that unregister_files processes task work from defer_taskrun even when not explicitly flushed. Signed-off-by: Dylan Yudaken --- v3: - look at register_files return code v2: - fix return code when ring init fails test/file-register.c | 57 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/test/file-register.c b/test/file-register.c index 634ef8159cec..975f89d5a94b 100644 --- a/test/file-register.c +++ b/test/file-register.c @@ -935,6 +935,55 @@ static int test_zero_range_alloc(struct io_uring *ri= ng, int fds[2]) return 0; } =20 +static int test_defer_taskrun(void) +{ + struct io_uring_sqe *sqe; + struct io_uring ring; + int ret, fds[2]; + char buff =3D 'x'; + + ret =3D io_uring_queue_init(8, &ring, + IORING_SETUP_DEFER_TASKRUN | IORING_SETUP_SINGLE_ISSUER); + if (ret) { + fprintf(stderr, "ring init\n"); + return 1; + } + + ret =3D pipe(fds); + if (ret) { + fprintf(stderr, "bad pipes\n"); + return 1; + } + + ret =3D io_uring_register_files(&ring, &fds[0], 2); + + sqe =3D io_uring_get_sqe(&ring); + io_uring_prep_read(sqe, 0, &buff, 1, 0); + sqe->flags |=3D IOSQE_FIXED_FILE; + ret =3D io_uring_submit(&ring); + if (ret !=3D 1) { + fprintf(stderr, "bad submit\n"); + return 1; + } + + ret =3D write(fds[1], &buff, 1); + if (ret !=3D 1) { + fprintf(stderr, "bad pipe write\n"); + return 1; + } + + ret =3D io_uring_unregister_files(&ring); + if (ret) { + fprintf(stderr, "bad unregister %d\n", ret); + return 1; + } + + close(fds[0]); + close(fds[1]); + io_uring_queue_exit(&ring); + return 0; +} + static int test_file_alloc_ranges(void) { struct io_uring ring; @@ -1120,5 +1169,13 @@ int main(int argc, char *argv[]) return T_EXIT_FAIL; } =20 + if (t_probe_defer_taskrun()) { + ret =3D test_defer_taskrun(); + if (ret) { + fprintf(stderr, "test_defer_taskrun failed\n"); + return T_EXIT_FAIL; + } + } + return T_EXIT_PASS; } base-commit: 754bc068ec482c5338a07dd74b7d3892729bb847 --=20 2.30.2