From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 415DA2E11D2; Mon, 27 Apr 2026 03:51:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777261915; cv=none; b=gWuxN5a6JVwRLERBe7ylzbC+baeYpx64cUXWyIrzLxljFVnrrIb4IyLO3sqyi1JwaZl1tA5TVC1b6JeCiaOeqkwMAtSCYwWq3KWYVTLjdhf60+ON08azVUsQ2Ibv/VaPkgO4Yfb/30Strm0Ff4hNij/VU3xSsT4896KCbmX+Auo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777261915; c=relaxed/simple; bh=M8Y2bVaRN3BHzbG9WhM57RI4hQEP/BIAN+z/3IRxhVU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=tAiV0FOLOZ95OQ9qLvNlnLDg/D9qnT4jokVZKHAF/yK4FgsqgUffR9x9GK58UYVUtk5kPetbHSYP/IfSAr9ry9ABZdK5++pq+ckbVG9IXk+tyLrLQo8X0WmfrPb2HK/0R5NPbpUmFofwkvzcCJYA6bTGOWzhMN7S9e6PYBqPhg8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=RX0ITJdY; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="RX0ITJdY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0F12FC2BCB5; Mon, 27 Apr 2026 03:51:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1777261915; bh=M8Y2bVaRN3BHzbG9WhM57RI4hQEP/BIAN+z/3IRxhVU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=RX0ITJdYgQxbVhaqqEQsYEYuFbUgyWEFB2u9vGigzKDnGx90P+G2+knsGhuUl9jYB rAvT/+E740GIrT/IRMxPF6161NlxS03m0P7K9UcsxqpfxcpFjWi+2XmTKyQJqnnEaD kFEwW5b45rj+u4QeRXilM3iOA59dlcRnehewHOrs= Date: Sun, 26 Apr 2026 23:30:22 +0200 From: Greg Kroah-Hartman To: Sidong Yang Cc: Jens Axboe , Daniel Almeida , Caleb Sander Mateos , Benno Lossin , Miguel Ojeda , Arnd Bergmann , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, io-uring@vger.kernel.org Subject: Re: [PATCH v5 0/4] Rust io_uring command abstraction for miscdevice Message-ID: <2026042602-harness-chest-bfcf@gregkh> References: <20260415090851.4897-1-sidong.yang@furiosa.ai> Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260415090851.4897-1-sidong.yang@furiosa.ai> On Wed, Apr 15, 2026 at 09:02:11AM +0000, Sidong Yang wrote: > This series introduces Rust abstractions for io_uring commands > (`IORING_OP_URING_CMD`) and wires them up to the miscdevice framework, > allowing Rust drivers to handle io_uring passthrough commands. > > The series is structured as follows: > > 1. Add io_uring C headers to Rust bindings. > 2. Core io_uring Rust abstractions (IoUringCmd, QueuedIoUringCmd, > IoUringSqe, UringCmdAction type-state pattern, IoUringTaskWork trait). > 3. MiscDevice trait extension with uring_cmd callback. > 4. Sample demonstrating async uring_cmd handling via workqueue. Again, I can't take this until we have a "real" user. Please wait to submit it at that point in time. thanks, greg k-h