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 B5D49C43334 for ; Tue, 7 Jun 2022 19:07:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1353598AbiFGTHB (ORCPT ); Tue, 7 Jun 2022 15:07:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48306 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352086AbiFGSQx (ORCPT ); Tue, 7 Jun 2022 14:16:53 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E6DE9133932; Tue, 7 Jun 2022 10:50:25 -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 sin.source.kernel.org (Postfix) with ESMTPS id 46D51CE21CD; Tue, 7 Jun 2022 17:50:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 212E1C385A5; Tue, 7 Jun 2022 17:50:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1654624222; bh=2R1mQvAJ3EHxKA7Z2wDfWH5G/0RmduuCe6zF8RkqES4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=i9An50rywmhPLOZj7QfmKbYAumG8ZdKsxVSkYxkOSsYw5yr34VdZHBJK5tZ493BNV eMwr6RI/f/iufdue05K1qKpf+6Jw3GmjWf7OqdKvc52qnRnRn0w1nrr1SUmCzEysY1 Dt9Z4G2dixHk00RH0jxdoCvrzHrEZj5lc0noiD1Q= 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.15 248/667] selftests/damon: add damon to selftests root Makefile Date: Tue, 7 Jun 2022 18:58:33 +0200 Message-Id: <20220607164942.223235036@linuxfoundation.org> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220607164934.766888869@linuxfoundation.org> References: <20220607164934.766888869@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 c852eb40c4f7..14206d1d1efe 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -8,6 +8,7 @@ TARGETS += clone3 TARGETS += core TARGETS += cpufreq TARGETS += cpu-hotplug +TARGETS += damon TARGETS += drivers/dma-buf TARGETS += efivarfs TARGETS += exec -- 2.35.1