From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 59485A051C; Tue, 11 Feb 2020 17:03:30 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 38D342B84; Tue, 11 Feb 2020 17:03:30 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 50A332952 for ; Tue, 11 Feb 2020 17:03:28 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581437007; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wCCCQUNN6w7bfZ1fEeGuTyL4U5R6W4fRqVu/s1c3Oek=; b=ekGA6N7YdhGt+Zvt2RL3nsK77k/JLu4W3Byzt6lY5IvpdIm1y2QaPRTJylt7JY3Y2xdR0+ PDh9eGzbFVnoGDhgsO8Y84O2fHn2ABbTYw4MC5m8CizCeFALexnL5FHWDVmM4alMjCd2Kc md4JTknYaDTqCR4sAlb3DYcfRHTNLHM= Received: from mail-vs1-f71.google.com (mail-vs1-f71.google.com [209.85.217.71]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-348-SqTi8k3wMrSAIuJZzwGeLA-1; Tue, 11 Feb 2020 11:03:18 -0500 Received: by mail-vs1-f71.google.com with SMTP id n129so805315vsd.4 for ; Tue, 11 Feb 2020 08:03:18 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=auIInMjErj6lqVkMUNp5n+eCgsk+/Y/Pqc1CDFHXGlA=; b=cr8XcOBkbKtihExfTw0X8emu90BRbuiCn0PpKsEYcgCNmVSGA/QAyPh9NLBLKvox4I 3/7UaAHE/4PKEvXLvFN/WocxCYE62MaDT3mzDftq9iYXQN7YCueA79GJLhOteTy2ofMP gVqY0S3qya/rYVCmpS6+9FM9BSbHpUIkm2/IJQsXfkvX3JweXKAawjQxq7g7nbOZANuv KLfWaHaJoiPUJXtvsxDJRJHLJ7TglpmcnV6uy3w8HpI63rBb3KJk/pq+xERNAfzF70CE yVPx19xW4PKnG2uaWXlYdCGBqBk9E0b2rxjtsYZHyEBIly7kcXfSIHDU3U/FXd+ZObhi GqeQ== X-Gm-Message-State: APjAAAVJcVY+8aNZn2OQW7Na4tIfaZz903FJlwXqvOWs5UxzLpI/GrKg LzEiYJ413RM2FOgVyAbUK+D7dQQ1qGP5mSYLghaos0jDFBBpNYrKfVFgKphnGYyvL8piym8K8jo f86rmMB3vQeFv8wTlnRw= X-Received: by 2002:a67:f1ca:: with SMTP id v10mr9680989vsm.180.1581436997555; Tue, 11 Feb 2020 08:03:17 -0800 (PST) X-Google-Smtp-Source: APXvYqyQyi6F4O4JDzOFlO1x6ZAvIEFvw4nLpb+BDL42WVOCfv3P+ociwvz22nCRRkD54slu8JYLGM5grLoP6AauLa0= X-Received: by 2002:a67:f1ca:: with SMTP id v10mr9680962vsm.180.1581436997195; Tue, 11 Feb 2020 08:03:17 -0800 (PST) MIME-Version: 1.0 References: <20200210095334.1167059-1-thomas@monjalon.net> In-Reply-To: <20200210095334.1167059-1-thomas@monjalon.net> From: David Marchand Date: Tue, 11 Feb 2020 17:03:06 +0100 Message-ID: To: Thomas Monjalon Cc: Wenzhuo Lu , Jingjing Wu , Bernard Iremonger , Neil Horman , Matan Azrad , Shahaf Shuler , Viacheslav Ovsiienko , Ravi Kumar , Xiaolong Ye , Qi Zhang , Gaetan Rivet , Ziyang Xuan , Xiaoyun Wang , Guoyang Zhou , dev X-MC-Unique: SqTi8k3wMrSAIuJZzwGeLA-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH] build: remove redundant config include X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Feb 10, 2020 at 10:54 AM Thomas Monjalon wrot= e: > > The header file rte_config.h is always included by make or meson. > If required in an exported API header file, it must be included > in the public header file for external applications. > In the internal files, explicit include of rte_config.h is useless, > and can be removed. > > Signed-off-by: Thomas Monjalon Acked-by: Matan Azrad Acked-by: David Marchand Acked-by: Neil Horman Applied, thanks. --=20 David Marchand