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 2AF6DEEAB; Wed, 5 Nov 2025 00:25:48 +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=1762302349; cv=none; b=Y8Ofdi97y1o0HcfFbq/YxqanS5toU2oV0BUku/0UYulZqZhbtjMFaA839IzT6WTAlxF5LMXPGzBVDd+gw1GsaV+/WNBvsK4XOJ5GHSNNxgdzKRMctNFci+xJzczgx4CHXy0UEUCwa3bEXBDcvV1R5+aLtLFK+ULmrpaK8sYrvTo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762302349; c=relaxed/simple; bh=Z8w2z+03SmQ97nB4usv2XGNg4zk5LCc+uhg74KhVCAE=; h=Content-Type:Date:Message-Id:To:From:Subject:Cc:Mime-Version: References:In-Reply-To; b=EimtM2uhIV/rTdsYaC5+u5HehqAo8yLgrGH2sr/t2oeXk66xloHxFkLfyX8bOMTZPU8FW0IEZwLyqwYkkwXDyzpMEl4+hdgO9t3QGWO9FhcDYSrp4UYMT2omowALwJ1xByHf+2wyNWMjxDHg1aQ7bRAVeFdcP7nDjIbXME5Z+Gc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=AHoP5FKW; 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="AHoP5FKW" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CA6EAC116B1; Wed, 5 Nov 2025 00:25:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1762302348; bh=Z8w2z+03SmQ97nB4usv2XGNg4zk5LCc+uhg74KhVCAE=; h=Date:To:From:Subject:Cc:References:In-Reply-To:From; b=AHoP5FKWHvQwMDVguAOkh27Pgb/nzrse8MvVV4epZRXHRUBwUlrpH14MwU8g+vRWA GSwBlXV1Jb9xrXNvLEL5rf4VejJPtNM/SQZ5FnezjYSx32F+HFoygS4TFCCugJFpBW J1KBm2nx3UPRv3A2le48B+tHJODYxnmvSuFzlf7l3K1uOQQ77Y0arc4UySxsEqOALj C7BMiBGHkoQZY7GEMFuy26pPzU8K0LfyX7x18eMKg+KJiNEhukGAZQTXIV2kJOpyyd vnrues8Ca+jRU2CB505T1cJJmQ1rvfPotOjv24o3YPnw0LanBan02xIGVxYOnpPT2I vdXpi4l2GB7ZQ== Content-Type: text/plain; charset=UTF-8 Date: Wed, 05 Nov 2025 01:25:43 +0100 Message-Id: To: , , , , , , , , , , , , From: "Danilo Krummrich" Subject: Re: [PATCH v3 00/10] Binary Large Objects for Rust DebugFS Cc: , , Content-Transfer-Encoding: quoted-printable Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 References: <20251022143158.64475-1-dakr@kernel.org> In-Reply-To: <20251022143158.64475-1-dakr@kernel.org> On Wed Oct 22, 2025 at 4:30 PM CEST, Danilo Krummrich wrote: Applied to driver-core-testing, thanks! > Danilo Krummrich (10): > rust: fs: add new type file::Offset I picked up the version from v2 [1] for now and send a follow-up series= for the new type approach [2]. > rust: uaccess: add UserSliceReader::read_slice_partial() [ Replace map_or() with let-else; use saturating_add(). - Danilo ] > rust: uaccess: add UserSliceReader::read_slice_file() [ Replace saturating_add() with the raw operator and a corresponding OVERFLOW comment. - Danilo ] > rust: uaccess: add UserSliceWriter::write_slice_partial() [ Replace map_or() with let-else; use saturating_add(). - Danilo ] > rust: uaccess: add UserSliceWriter::write_slice_file() [ Replace saturating_add() with the raw operator and a corresponding OVERFLOW comment. - Danilo ] > rust: debugfs: support for binary large objects > rust: debugfs: support blobs from smart pointers > samples: rust: debugfs: add example for blobs > rust: debugfs: support binary large objects for ScopedDir > samples: rust: debugfs_scoped: add example for blobs [1] https://lore.kernel.org/all/20251020222722.240473-2-dakr@kernel.org/ [2] https://lore.kernel.org/lkml/20251105002346.53119-1-dakr@kernel.org/