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 D125033CEA7; Tue, 28 Oct 2025 19:26:59 +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=1761679619; cv=none; b=bjfdljy6Gbgg+agV9NoKu4UhKYFh3OBFe5TDt7LIgqGR29dfcKGiCMVAWbK1gKArAjKiUYprzfJ74/iILnxbBWivEgWmzYh2+4uhCkxdLKL5EASdLenaVJofywrLh29k0Aru1JdNxloBmzhFFqvttICH+a3a01BOq7rhu0Oe7ls= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761679619; c=relaxed/simple; bh=W5l+ab68yytFDDqxgiQTe2mOEzh1UbDIZVUX4z6Q76s=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=d/qyJwQcCIjCnejVEg5GMB0dKZK5u1h3YroX00zIvRUTYgPB4ratYnvmzU0XWQFhBHhPCNKOHQea13GC902+BsfD3IzOwB0ZQfay05y7Owt2zNXk2WJf8aj8dIAyioP0TJ4GPqHJkDRvAVd4nX+njYFk/ykrqvP2TX+qCqOZTFM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=qvbXIFFU; 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="qvbXIFFU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 94EC7C4CEE7; Tue, 28 Oct 2025 19:26:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1761679619; bh=W5l+ab68yytFDDqxgiQTe2mOEzh1UbDIZVUX4z6Q76s=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=qvbXIFFUDaOCfVlJL9+2CIfDZ67pAoQqyuiXmgl7bQlfgqi4TWaL59+ln1CFK1iSd OOAxVusiuOJVScJlAD8jXWyaraefOQ+GOcMwNcTH+xvTFgasCHAH/Yp8p8B5x2uAFg 2cisgmnOu/Uh8RLngVFoUR4irs7KzvgavFmTZA0yGTi2H4Hj7zT1Sn14pUmqG9HrX5 c3LJyozCRGvtTZRZTfZSyb0ZTefVUEaQAP7jDSCjteI2daP21fL4+kELswUQAQwPdr z+zVpIKkn439br0PT5+s1la62CGo0FDsMSoeiOKMaC+Z89Ct+H5hY59/Bh28pWA5w6 /UJtSVe2NW6og== Message-ID: <2b2e5f31-e685-4a28-ae15-f620310d509b@kernel.org> Date: Tue, 28 Oct 2025 20:26:53 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v3 2/5] rust: bitmap: add BitmapVec::new_inline() To: Alice Ryhl Cc: Greg Kroah-Hartman , Yury Norov , =?UTF-8?Q?Arve_Hj=C3=B8nnev=C3=A5g?= , Todd Kjos , Martijn Coenen , Joel Fernandes , Christian Brauner , Carlos Llamas , Suren Baghdasaryan , Burak Emir , Miguel Ojeda , Boqun Feng , Gary Guo , =?UTF-8?Q?Bj=C3=B6rn_Roy_Baron?= , Benno Lossin , Andreas Hindborg , Trevor Gross , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org References: <20251028-binder-bitmap-v3-0-32822d4b3207@google.com> <20251028-binder-bitmap-v3-2-32822d4b3207@google.com> From: Danilo Krummrich Content-Language: en-US In-Reply-To: <20251028-binder-bitmap-v3-2-32822d4b3207@google.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 10/28/25 11:55 AM, Alice Ryhl wrote: > This constructor is useful when you just want to create a BitmapVec > without allocating but don't care how large it is. > > Acked-by: Yury Norov (NVIDIA) > Reviewed-by: Burak Emir > Signed-off-by: Alice Ryhl Reviewed-by: Danilo Krummrich