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 1FD182500D3 for ; Tue, 3 Dec 2024 20:48:34 +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=1733258915; cv=none; b=VAjfrto6+i3gGM5y4YlNZaQuCgF2pau0fxu7it6kwwyt7ArlnRnmJ4Ao3HO1NDMtWI8HqoHTHTWOw1lEEWFkRAx1seP4nCzyPSUFZk6Sf/o5wveoEgnhqy9Xk1XHCI7bbx3AeZ1hKzQHqWTNJWD0bANHYTjxTh8O8H+t9hhXJ54= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733258915; c=relaxed/simple; bh=LV6Rky9E26YOhfbS/89gbB0UbSiZOxp5xPGNIqPwVKQ=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=T5eJ8L1qYC+C9WFdW27LhWKDnOVufTAJ000ueT8hY7puEyHPBPh8xwGvBfE/Q+oVkWTWsrNMPC4pBCMQWDqKFwgnUXW2/S0bU9ArR6tGJYoiQ4roDOf2K/tFW7cLfrR26/fekR/FGNTiDyeOA/7B5MQ0R/c/alYCf88ACynNRQo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ceDflFUO; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ceDflFUO" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 838F7C4CECF; Tue, 3 Dec 2024 20:48:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1733258914; bh=LV6Rky9E26YOhfbS/89gbB0UbSiZOxp5xPGNIqPwVKQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ceDflFUO5g8wxH6IQjiCcBug1JocSvL/3VppRCEJ5y2+dgePD96snzFLiiZmPeLBV +eC06p4tQNAansJKpkUIBlTquCYqNSHoIhqOSo+TcoF49HOv45kS0FEvoYAcOQD7EZ AcT84gCjVoiWmTeCH5NmBR2ltdwetAwsBeksyyTNAYgv49gfmxJfUutY6QsII2XDao u67/1Yjzyb2t+fOBaUyb1Gse86W4taU0i96J66y4209k7e0+h1+7vL4606e8MAaW0E Wky5YPFAkRtNPCu3mJ0Mz3db3Dmh9rPAgFAwrTBCaTaKaEIch1UDFWHp65e1wAjSlo y3d1nGv3sbHGA== Date: Tue, 3 Dec 2024 10:48:33 -1000 From: Tejun Heo To: Konstantin Andrikopoulos Cc: Miguel Ojeda , Alex Gaynor , Boqun Feng , Gary Guo , =?iso-8859-1?Q?Bj=F6rn?= Roy Baron , Benno Lossin , Andreas Hindborg , Alice Ryhl , Trevor Gross , rust-for-linux@vger.kernel.org, Vangelis Mamalakis Subject: Re: [PATCH v2] rust: add safety comment in workqueue traits Message-ID: References: <20241127150643.789033-1-kernel@mandragore.io> 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: <20241127150643.789033-1-kernel@mandragore.io> On Wed, Nov 27, 2024 at 03:07:38PM +0000, Konstantin Andrikopoulos wrote: > Add missing safety comments for the implementation of the unsafe traits > WorkItemPointer and RawWorkItem for Arc in workqueue.rs > > Link: https://github.com/Rust-for-Linux/linux/issues/351. > Co-developed-by: Vangelis Mamalakis > Signed-off-by: Vangelis Mamalakis > Suggested-by: Miguel Ojeda > Reviewed-by: Alice Ryhl > Signed-off-by: Konstantin Andrikopoulos Applied to wq/for-6.13-fixes. Thanks. -- tejun