From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1902BC43334 for ; Tue, 7 Jun 2022 21:03:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1377794AbiFGVDt (ORCPT ); Tue, 7 Jun 2022 17:03:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34264 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352980AbiFGUCX (ORCPT ); Tue, 7 Jun 2022 16:02:23 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AC4F71C14CC; Tue, 7 Jun 2022 11:25:21 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 470EC60C1A; Tue, 7 Jun 2022 18:25:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5AE4EC385A2; Tue, 7 Jun 2022 18:25:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1654626317; bh=NBSceq6uO3g8F5OgwQ3chol+ONy6+vsRb+EPZbZlLzM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=A4o0Nn0s7ETj6MTD0UiUdIPlzFb6oML5pE/EUSoulsxpRPDlyyYwjKXRlJW5uwyeb TS4ElcQjqCIf3VnVfq5ZnlFuj1qJHnaWTh7CmIP+c+OmTfcEDvRrmVHR91B4/mSvmN 31iC5nAd90EdHHHHwUb0/omeiNpSSBJrst3tssgw= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, SeongJae Park , Yuanchu Xie , David Rientjes , Shuah Khan , Sasha Levin Subject: [PATCH 5.17 298/772] selftests/damon: add damon to selftests root Makefile Date: Tue, 7 Jun 2022 18:58:10 +0200 Message-Id: <20220607164957.805165705@linuxfoundation.org> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220607164948.980838585@linuxfoundation.org> References: <20220607164948.980838585@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Yuanchu Xie [ Upstream commit 678f0cdc572c5fda940cb038d70eebb8d818adc8 ] Currently the damon selftests are not built with the rest of the selftests. We add damon to the list of targets. Fixes: b348eb7abd09 ("mm/damon: add user space selftests") Reviewed-by: SeongJae Park Signed-off-by: Yuanchu Xie Acked-by: David Rientjes Signed-off-by: Shuah Khan Signed-off-by: Sasha Levin --- tools/testing/selftests/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index d08fe4cfe811..ffe453760a12 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -9,6 +9,7 @@ TARGETS += clone3 TARGETS += core TARGETS += cpufreq TARGETS += cpu-hotplug +TARGETS += damon TARGETS += drivers/dma-buf TARGETS += efivarfs TARGETS += exec -- 2.35.1