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 CA30C14D2BD; Tue, 23 Jul 2024 09:27:57 +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=1721726877; cv=none; b=P6ypRknK4efbGIFpMIiGyDPABnDdkloIMpxBpeGdwWZqKZWolx2R8CCzNWg4cKIGd1hgFWc+FjedgeVV0/71tSed9g0kcGwbIbpIgrHx8qu++X4Fy8zx4Zq8j9vG50JnsHsQw3wkWIr4kfrX/D2K13mczst7mTXoEeuxYWr4IGM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1721726877; c=relaxed/simple; bh=pacHTGzkR2gkhTSagG2dx/AjchwXfuboSWpk0BhMkKk=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Ja9ANSOlESO43MHrgagem/l3ea132d2jAPRAAiD5wDw1nYilkn3Q/5C1OGOglxK87fqH6AGElVmNF6lQtBy/Ao7XZTwa7j7ZrUZkp+YTDeQp1++Be7UqeAdd5QMgryo2NnXFZdi+VFDcwX+P2xb2ZtudEjyvpodbs8qoV5NRwhM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=HwDbjiv+; 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="HwDbjiv+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F342FC4AF0A; Tue, 23 Jul 2024 09:27:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1721726877; bh=pacHTGzkR2gkhTSagG2dx/AjchwXfuboSWpk0BhMkKk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=HwDbjiv+lxddX51ZCTbQpsP3QQdi4i+a2LAWuChZVK+v3TkqDj1dLmojvBZW6KAVd tkOi3cXHcCmnu2hCTZON+hINyw8RDFqORhiIIHLHFQB3X32vSoZAxUa+bZEYRg9soF aBlK2KBGSdsIWHSInAczO50aBWhIZ4WOavDaoLT9dGfsO6ae1ZetA02DNxEuf2h58x 0/vfn0Pzh/GSl2rKgHrFXxgGdPvCoEdLvgjb4l0T2fBvG4yg7PLYCLKAmyPCK+ceMX OB0da2OW0HXFY4a5J6N9G7pzgsvwz2o95plgHb+RYiOtkwEoQBOrG0d9xkZVSdGEDy r4jljFtHVlR2A== Date: Tue, 23 Jul 2024 12:25:51 +0300 From: Mike Rapoport To: Lorenzo Stoakes Cc: Andrew Morton , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, "Liam R . Howlett" , Vlastimil Babka , Matthew Wilcox , Alexander Viro , Christian Brauner , Jan Kara , Eric Biederman , Kees Cook , Suren Baghdasaryan , SeongJae Park , Shuah Khan , Brendan Higgins , David Gow , Rae Moar Subject: Re: [PATCH v3 6/7] tools: separate out shared radix-tree components Message-ID: References: Precedence: bulk X-Mailing-List: linux-fsdevel@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: On Mon, Jul 22, 2024 at 12:50:24PM +0100, Lorenzo Stoakes wrote: > The core components contained within the radix-tree tests which provide > shims for kernel headers and access to the maple tree are useful for > testing other things, so separate them out and make the radix tree tests > dependent on the shared components. > > This lays the groundwork for us to add VMA tests of the newly introduced > vma.c file. > > Acked-by: Vlastimil Babka > Reviewed-by: Liam R. Howlett > Signed-off-by: Lorenzo Stoakes > --- > tools/testing/radix-tree/Makefile | 68 +++---------------- > tools/testing/radix-tree/maple.c | 15 +--- > tools/testing/radix-tree/xarray.c | 10 +-- > tools/testing/shared/autoconf.h | 2 + > tools/testing/{radix-tree => shared}/bitmap.c | 0 > tools/testing/{radix-tree => shared}/linux.c | 0 maybe tools/testing/lib > .../{radix-tree => shared}/linux/bug.h | 0 and tools/testing/include? -- Sincerely yours, Mike.