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 2968BC636CB for ; Mon, 30 Jan 2023 16:25:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236621AbjA3QZN (ORCPT ); Mon, 30 Jan 2023 11:25:13 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57322 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237052AbjA3QZB (ORCPT ); Mon, 30 Jan 2023 11:25:01 -0500 Received: from mail-il1-x12f.google.com (mail-il1-x12f.google.com [IPv6:2607:f8b0:4864:20::12f]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E4ADB3B0F5 for ; Mon, 30 Jan 2023 08:24:59 -0800 (PST) Received: by mail-il1-x12f.google.com with SMTP id z2so4747147ilq.2 for ; Mon, 30 Jan 2023 08:24:59 -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=Ya3wnMwrvg6taBiNfREM8J274pCjXCVFQeiXqbJA7+g=; b=V02BEAtbrMg6bxiPKWtAttJPxQhFx6Ob0vV4NjPELuMRkspfmXOmhgTRTz0qCJ93cx cmuw6ghW6RciHIjfCR8RvBgBKKjJ9xzJjoleq3abf/0C1yW+8/qQG5OHPy6vNYxrKVm7 duuXvUM/bMiqbpeRT6znfjcS5me3WYoN8MDSo= 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=Ya3wnMwrvg6taBiNfREM8J274pCjXCVFQeiXqbJA7+g=; b=hmWliyuiS1APPE0XNPsPIKPcw3XV7mLgpuVHQkYkuRELmITcnvEUTXH9KrUsbjI+KZ OYBmFLiEaQjzhqxBdk1LlDM9z2i7XqbeooYyLnNcpeLIHw1aIA5N2+2/+igXppxGUYZO iWwvhGjG4SgJF2irIhgwcWVUKHb2xCVaJToogMoVQYrEXhsF7O4naTGzHsf0A8/qQ0yA JXTMjYRF/SHR2QNUFSS1veb1BSIJu7VT049eMoqf8cATPWAwX4fBINXA0iDvZi4m2qdN 9X2yRyAHpIVgKy1BA/VPQqrVIc301RCfPlj4iUuSYtUGDso7PbkVKW2jP2pHqtNsz1bS CmnA== X-Gm-Message-State: AFqh2kpVD8wpC4UkjAQG3IxoH2T60PS2bds1AYnWg7vy0F4CyD5ssZeU 9oTISRnE5+h+2D1oYr0kFjJIVA== X-Google-Smtp-Source: AMrXdXvK65fGYKTVgnNrq5WOSzPoOU6X5vLkyU5Mt7/T3zvd6okTMkIKVIS8y5Z3ocuGCG6rdy1PFw== X-Received: by 2002:a92:2a07:0:b0:30c:1dda:42dd with SMTP id r7-20020a922a07000000b0030c1dda42ddmr7224521ile.1.1675095898633; Mon, 30 Jan 2023 08:24:58 -0800 (PST) Received: from [192.168.1.128] ([38.15.45.1]) by smtp.gmail.com with ESMTPSA id b7-20020a05663805a700b003afc548c3cdsm415088jar.166.2023.01.30.08.24.57 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 30 Jan 2023 08:24:58 -0800 (PST) Message-ID: Date: Mon, 30 Jan 2023 09:24:57 -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 17/34] selftests: net: Fix incorrect kernel headers search path Content-Language: en-US To: Mathieu Desnoyers , Shuah Khan , linux-kselftest@vger.kernel.org, Ingo Molnar , "kuba@kernel.org" , "David S. Miller" Cc: linux-kernel@vger.kernel.org, stable@vger.kernel.org, Shuah Khan , Networking References: <20230127135755.79929-1-mathieu.desnoyers@efficios.com> <20230127135755.79929-18-mathieu.desnoyers@efficios.com> From: Shuah Khan In-Reply-To: <20230127135755.79929-18-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/net/Makefile | 2 +- > tools/testing/selftests/net/bpf/Makefile | 2 +- > tools/testing/selftests/net/mptcp/Makefile | 2 +- > tools/testing/selftests/net/openvswitch/Makefile | 2 +- > 4 files changed, 4 insertions(+), 4 deletions(-) > Adding net 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