From patchwork Wed Oct 18 15:18:42 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Keith Busch X-Patchwork-Id: 13427224 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 70F13CDB47E for ; Wed, 18 Oct 2023 15:24:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231210AbjJRPYi (ORCPT ); Wed, 18 Oct 2023 11:24:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35024 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230391AbjJRPYh (ORCPT ); Wed, 18 Oct 2023 11:24:37 -0400 Received: from mx0b-00082601.pphosted.com (mx0b-00082601.pphosted.com [67.231.153.30]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 72F85109 for ; Wed, 18 Oct 2023 08:24:36 -0700 (PDT) Received: from pps.filterd (m0109332.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 39I4Xcjw026840 for ; Wed, 18 Oct 2023 08:24:35 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=meta.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=s2048-2021-q4; bh=Bq/y6Ay8FGWy4bqRyOewKN5HseTbnUMhXdfqoo3Xi2w=; b=MCFJOt0EEzV+lPQ8Ulbj9Z8LbMbOLV52ixk6rERRXZw6QgtGrmtRjgjTu9T3lJHKLVDW sYIiAvdj9/y1Wb1vycn2WMgocggMowB+NS9Fhf2VG+UP0vRDIyAlx0CRqXhpaMGvN9ip JmwQ6fXuG9n33nswWv1F5sh4dMfQPnqK3dQk9U1AEl8doLRLfkUne3hhExRtFYtrUsCa xw24CNympXpuAiPm2UuI+lX2aD/7E6x7btQG3Cj127cVYMljBBRV5vaxdhGwCQkAcYwv QtU/dY5LUZl8I5yYehp9xJBVa76Vl0CYUkmcfMUQboeECnwtV3ji+1hEhodWjxuNv2z1 mQ== Received: from maileast.thefacebook.com ([163.114.130.16]) by mx0a-00082601.pphosted.com (PPS) with ESMTPS id 3ts86xq5bv-5 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Wed, 18 Oct 2023 08:24:35 -0700 Received: from twshared5242.08.ash8.facebook.com (2620:10d:c0a8:1c::1b) by mail.thefacebook.com (2620:10d:c0a8:83::8) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.23; Wed, 18 Oct 2023 08:24:32 -0700 Received: by devbig007.nao1.facebook.com (Postfix, from userid 544533) id 7E7C2205F440D; Wed, 18 Oct 2023 08:24:27 -0700 (PDT) From: Keith Busch To: , , CC: , , , , Keith Busch Subject: [PATCH 3/4] iouring: remove IORING_URING_CMD_POLLED Date: Wed, 18 Oct 2023 08:18:42 -0700 Message-ID: <20231018151843.3542335-4-kbusch@meta.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20231018151843.3542335-1-kbusch@meta.com> References: <20231018151843.3542335-1-kbusch@meta.com> MIME-Version: 1.0 X-FB-Internal: Safe X-Proofpoint-GUID: 6_qHmDyudYTbzCSHK4B6IN66LJ4JNT2b X-Proofpoint-ORIG-GUID: 6_qHmDyudYTbzCSHK4B6IN66LJ4JNT2b X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.272,Aquarius:18.0.980,Hydra:6.0.619,FMLib:17.11.176.26 definitions=2023-10-18_13,2023-10-18_01,2023-05-22_02 Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org From: Keith Busch No more users of this flag. Signed-off-by: Keith Busch Reviewed-by: Christoph Hellwig --- include/uapi/linux/io_uring.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/uapi/linux/io_uring.h b/include/uapi/linux/io_uring.h index 8e61f8b7c2ced..10e724370b612 100644 --- a/include/uapi/linux/io_uring.h +++ b/include/uapi/linux/io_uring.h @@ -249,10 +249,8 @@ enum io_uring_op { * sqe->uring_cmd_flags * IORING_URING_CMD_FIXED use registered buffer; pass this flag * along with setting sqe->buf_index. - * IORING_URING_CMD_POLLED driver use only */ #define IORING_URING_CMD_FIXED (1U << 0) -#define IORING_URING_CMD_POLLED (1U << 31) /*