From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mta1.formilux.org (mta1.formilux.org [51.159.59.229]) (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 1503B28643C for ; Sat, 4 Apr 2026 12:37:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=51.159.59.229 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775306259; cv=none; b=XlTkQtmeYbdsIqza1uJCZqitzjDJOEON0CR+BWUroVXx5M0V+URuLKe1BOulm2EHO/4g2Pb7AKZkA3dQpfYH9O+PG3OYZFJoPxEYiP/xS8HqmsGNJfAi9aOgR2+9ePu90ZBSPmRtkBWdoAeTS0xpdW3S/yiLEb32ylaQ1ePJ2Gg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775306259; c=relaxed/simple; bh=h0RCpah1WKYxL+J8Cq7942Um4NMFyugbW1OkqXCmyHI=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=u/NnPr2BUmBVMBsUibWenqI7W2jQUWnJnS2q+B4Lzg8aYO2DTK988f3RGnxN3UEK6BYQRaWKFBNjyPMa6Z/nH2KSNK/daOlSE3N/hrUL44DDpfTC2AvjSuS2BLjCBomrLp+aJTsfetnFC5WMspTorw6CbbZwnBNA0EUvZCnVA4Y= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=1wt.eu; spf=pass smtp.mailfrom=1wt.eu; dkim=pass (1024-bit key) header.d=1wt.eu header.i=@1wt.eu header.b=kp3S8/6z; arc=none smtp.client-ip=51.159.59.229 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=1wt.eu Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=1wt.eu Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=1wt.eu header.i=@1wt.eu header.b="kp3S8/6z" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1wt.eu; s=mail; t=1775306255; bh=5MY1dgfqNhsYN3bgMba+2vmJQBQJvMfd/lvMWkWEtFc=; h=From:Message-ID:From; b=kp3S8/6zqH3wf9aN3g7Rgh5s6Fw8qahqAHpZoh03KsU/Rw7gXtKAT0iGGQn4WwanE nFVWlyb4HLFCNABH0s3HCDPH57RR86M1iNiGL/jESi5rwLiw9MRS17ye233bVjFhIR rb4wD8LZOlVYWWNIW46BS8wCYlB5r6VY0skfUFxY= Received: from 1wt.eu (ded1.1wt.eu [163.172.96.212]) by mta1.formilux.org (Postfix) with ESMTP id F36F7C09B3; Sat, 04 Apr 2026 14:37:34 +0200 (CEST) Date: Sat, 4 Apr 2026 14:37:34 +0200 From: Willy Tarreau To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 0/2] selftests/nolibc: test the memory allocator Message-ID: References: <20260404-nolibc-asprintf-v2-0-17d2d0df9763@weissschuh.net> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260404-nolibc-asprintf-v2-0-17d2d0df9763@weissschuh.net> On Sat, Apr 04, 2026 at 01:50:18PM +0200, Thomas Weißschuh wrote: > The memory allocator has not seen any testing so far. > > Add a simple testcase for it. > > Signed-off-by: Thomas Weißschuh > --- > Changes in v2: > - Previously part of "tools/nolibc: add support for asprintf()". > - Drop already applied patches. > - Fix compilation of calloc() on arm32 clang. > - Link to v1: https://patch.msgid.link/20260401-nolibc-asprintf-v1-0-46292313439f@weissschuh.net Nice improvement, thank you Thomas! Acked-by: Willy Tarreau Willy