From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dispatch1-us1.ppe-hosted.com (dispatch1-us1.ppe-hosted.com [148.163.129.52]) by dpdk.org (Postfix) with ESMTP id 5E4DE1B76E for ; Wed, 11 Apr 2018 21:09:43 +0200 (CEST) X-Virus-Scanned: Proofpoint Essentials engine Received: from webmail.solarflare.com (uk.solarflare.com [193.34.186.16]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1-us3.ppe-hosted.com (Proofpoint Essentials ESMTP Server) with ESMTPS id 84FBD480089; Wed, 11 Apr 2018 19:09:41 +0000 (UTC) Received: from [192.168.239.128] (188.242.181.57) by ukex01.SolarFlarecom.com (10.17.10.4) with Microsoft SMTP Server (TLS) id 15.0.1044.25; Wed, 11 Apr 2018 20:09:38 +0100 To: , Anatoly Burakov From: Andrew Rybchenko Message-ID: Date: Wed, 11 Apr 2018 22:09:23 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-Originating-IP: [188.242.181.57] X-ClientProxiedBy: ocex03.SolarFlarecom.com (10.20.40.36) To ukex01.SolarFlarecom.com (10.17.10.4) X-TM-AS-Product-Ver: SMEX-11.0.0.1191-8.100.1062-23776.003 X-TM-AS-Result: No--2.720300-0.000000-31 X-TM-AS-User-Approved-Sender: Yes X-TM-AS-User-Blocked-Sender: No X-MDID: 1523473782-OV45ZWTTCyVV Subject: [dpdk-dev] Build failure on RHEL 7.4 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: , X-List-Received-Date: Wed, 11 Apr 2018 19:09:43 -0000 Hello, build fails on RHEL 7.4. I've not tried to dig it. lib/librte_eal/linuxapp/eal/eal_memalloc.c: In function ‘resize_hugefile’: librte_eal/linuxapp/eal/eal_memalloc.c:343:27: error: ‘FALLOC_FL_PUNCH_HOLE’ undeclared (first use in this function)     int flags = grow ? 0 : FALLOC_FL_PUNCH_HOLE |                            ^ lib/librte_eal/linuxapp/eal/eal_memalloc.c:343:27: note: each undeclared identifier is reported only once for each function it appears in lib/librte_eal/linuxapp/eal/eal_memalloc.c:344:6: error: ‘FALLOC_FL_KEEP_SIZE’ undeclared (first use in this function)       FALLOC_FL_KEEP_SIZE;       ^ make[6]: *** [eal_memalloc.o] Error 1 make[6]: *** Waiting for unfinished jobs.... make[5]: *** [eal] Error 2 make[4]: *** [linuxapp] Error 2 make[3]: *** [librte_eal] Error 2 make[2]: *** [lib] Error 2 make[1]: *** [all] Error 2 make: *** [all] Error 2 $ gcc --version gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-16) Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. $ uname -r 3.10.0-693.el7.x86_64 Andrew.