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 70D0DA0542; Sat, 8 Feb 2020 05:04:50 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C88D71C038; Sat, 8 Feb 2020 05:04:49 +0100 (CET) Received: from mail-pj1-f47.google.com (mail-pj1-f47.google.com [209.85.216.47]) by dpdk.org (Postfix) with ESMTP id E845A1C036 for ; Sat, 8 Feb 2020 05:04:48 +0100 (CET) Received: by mail-pj1-f47.google.com with SMTP id r67so1750758pjb.0 for ; Fri, 07 Feb 2020 20:04:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:mime-version :content-transfer-encoding; bh=cTPc/8Rw9/Gemo8uoHenadDpibPnRTYarZwV1c4PNQI=; b=ev4p1LziLAk0j0//4Yc1lUyy8m6DWfo/fTWQ5lzuRPbbgENVNalARvpq+eIB+3tmO7 Mh0n4gV+qe39LRse6OO0INVhwJKvDWRlGb3JoTcNA9AQgsRvYn9jfasX1kyPpktmyiNz WNmBrE6weN3+6r60ZjO88x6qUUBxlFJZ3H6bQz3BZrrJYaw3GftaUOOY2ko7Gmjh7xvM oJK6td6jvK1/SENkJEaKkBv+xmwwfhXDc6oVczXvGMzSp//8A3CCvP7NHPwdcCNE6bEc 6eZly+vq6xJGJoPtmlWfsCw/X8k/kE3oLal5UHR3+jf3/mJvDyzmj9SPCUTl0UzibCu4 tEvA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:mime-version :content-transfer-encoding; bh=cTPc/8Rw9/Gemo8uoHenadDpibPnRTYarZwV1c4PNQI=; b=RSCWHTfPPdbTofMgC4cdxKxyJlVtCxCFclbhWiDM7BzDynGhle4EJbXDNWOrdwuiRt ubEDgrlrvE6IQ4MgXH853FqcuVtulzFqLlHErQwZR54dTZW+q5PcJpnOhAYu2aFyBfGq GNCQWfocpco/16Oy2BU0IcUpNfJyGfvS2SvJaWS0Ha4OxNJP427L147ov9YiAzQ0tkav 4hBijVymcjczgsD0t8zBG30zBpT5XAMrm9RpAsZh1MIdR8pqdwLcsDb+z3zRgTzwuaqm bYnwfN68l+oxS5vO2XL1gzE9SYixdn7UfpUKyh+CPibj4KyllqFOAoSf4cMAw8mzbHJW B4/g== X-Gm-Message-State: APjAAAUg4t9Y35aPEDRvvQpJiTsy2r80yO0b2YIq0aClTNSq0MELmb+U qzaeO1A+KxtlnUdsXt4R4weR4Q== X-Google-Smtp-Source: APXvYqwtDRLkom7N5zWqtSPPPmr+7wcqGwTyYSPfSYiS90QjWzLfaKgXXNfmWs7mleV2VNP7CLGzIg== X-Received: by 2002:a17:90a:d804:: with SMTP id a4mr7652551pjv.11.1581134687781; Fri, 07 Feb 2020 20:04:47 -0800 (PST) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id d26sm4339505pgv.66.2020.02.07.20.04.46 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 07 Feb 2020 20:04:47 -0800 (PST) Date: Fri, 7 Feb 2020 20:04:36 -0800 From: Stephen Hemminger To: Konstantin Ananyev Cc: dev@dpdk.org Message-ID: <20200207200436.7c42c7a5@hermes.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [dpdk-dev] BUG BPF examples broken 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" The BPF examples do not compile on Debian. The issue is that ret_mbuf_core.h includes rte_atomic which include rte_common which pulls in errno.h and bits/errno.h. And then asm/errno.h /usr/include/linux/errno.h:1:10: fatal error: 'asm/errno.h' file not found #include ^~~~~~~~~~~~~ 1 error generated. asm/errno.h is architecture specific and BPF is an architecture.