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 6825EC636CB for ; Mon, 30 Jan 2023 16:10:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236214AbjA3QKD (ORCPT ); Mon, 30 Jan 2023 11:10:03 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47252 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236723AbjA3QJr (ORCPT ); Mon, 30 Jan 2023 11:09:47 -0500 Received: from mail-il1-x131.google.com (mail-il1-x131.google.com [IPv6:2607:f8b0:4864:20::131]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7C81E301B2 for ; Mon, 30 Jan 2023 08:09:44 -0800 (PST) Received: by mail-il1-x131.google.com with SMTP id k12so267916ilv.10 for ; Mon, 30 Jan 2023 08:09:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=google; h=content-transfer-encoding:in-reply-to:from:references:cc:to :content-language:subject:user-agent:mime-version:date:message-id :from:to:cc:subject:date:message-id:reply-to; bh=TXYq15h/4ZLKt2G+EcISWRsOuJcnsCtCjpXE9jEI0g0=; b=UKkMAa9qC4Ipig3mVDQot+yXFGt+6hEaJxCimgNHz6eagi4zJHZyZPmOUBpjMFFy6R dPuQnffYzWc183hPcO9okTAqAYY83zo7rkHspTVLRODT8IUZyBmhLQKEpMOxtE+DIS8T di6i7x12tVpGjnv1lnirQI2aw6ni9VPCpl58g= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:in-reply-to:from:references:cc:to :content-language:subject:user-agent:mime-version:date:message-id :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=TXYq15h/4ZLKt2G+EcISWRsOuJcnsCtCjpXE9jEI0g0=; b=IYiACV03USVp92cYoGn8DYtgWrKW9Q0zJ6WmgCLD6eejKJz3kFYeF/TpgVBj1ZnUtI T7TFqKhXfnGImfnzpQjgxm5kv1Luyr72A/ETKoGYMXIPH5br4QofNny/ytIyXsX1Dz3s Ud7Jma/5bLF/REUuDY/R8zJvdrUQDZTFGTXtv9K+N3nLX/bn6/rAtZcIrBKH3t6qsJei UmxB2oTtgWyWarySwVGxpXm3OAuh+gLBTNQ/3qznqP/YtI+M5pVW08+6oMoEPaSR/HjJ N2XVYblgEEclZmBbmBqKtgN+JgxHnRj4p5pzO/OoBWOYDkKjaUXq3WX2RLLb/Nh3Wq9V KThA== X-Gm-Message-State: AO0yUKVrO6pNhssSQHNLEcw579332HZq8B55f4Kxo40FksP7fOkouKWD SWYzlZG7QI32pXYaOdAZFHgwQw== X-Google-Smtp-Source: AK7set960M1U7OO/hYkoK6uNDLExUM4bktt4d7W/dz44m7y9LrWUxJRXDTIBrG+FcMSGpZIjBUQq6w== X-Received: by 2002:a92:c68e:0:b0:310:9a08:ac86 with SMTP id o14-20020a92c68e000000b003109a08ac86mr3688809ilg.2.1675094983780; Mon, 30 Jan 2023 08:09:43 -0800 (PST) Received: from [192.168.1.128] ([38.15.45.1]) by smtp.gmail.com with ESMTPSA id k7-20020a02c647000000b0038437cba721sm4859803jan.7.2023.01.30.08.09.42 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 30 Jan 2023 08:09:43 -0800 (PST) Message-ID: Date: Mon, 30 Jan 2023 09:09:42 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: [PATCH 01/34] selftests: arm64: Fix incorrect kernel headers search path Content-Language: en-US To: Mathieu Desnoyers , Shuah Khan , linux-kselftest@vger.kernel.org, Ingo Molnar , Catalin Marinas , Will Deacon Cc: linux-kernel@vger.kernel.org, stable@vger.kernel.org, Linux ARM , Shuah Khan References: <20230127135755.79929-1-mathieu.desnoyers@efficios.com> <20230127135755.79929-2-mathieu.desnoyers@efficios.com> From: Shuah Khan In-Reply-To: <20230127135755.79929-2-mathieu.desnoyers@efficios.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 1/27/23 06:57, Mathieu Desnoyers wrote: > Use $(KHDR_INCLUDES) as lookup path for kernel headers. This prevents > building against kernel headers from the build environment in scenarios > where kernel headers are installed into a specific output directory > (O=...). > > Signed-off-by: Mathieu Desnoyers > Cc: Shuah Khan > Cc: linux-kselftest@vger.kernel.org > Cc: Ingo Molnar > Cc: [5.18+] > --- > tools/testing/selftests/arm64/fp/Makefile | 2 +- > tools/testing/selftests/arm64/tags/Makefile | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > Adding arm maintainers. Would you me to take this patch through kselftest tree? If you decide to take this through yours: Acked-by: Shuah Khan thanks, -- Shuah