From patchwork Wed Jan 13 21:14:56 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gregory Farnum X-Patchwork-Id: 8028111 Return-Path: X-Original-To: patchwork-fstests@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 36E4B9F32E for ; Wed, 13 Jan 2016 21:15:01 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6E41720525 for ; Wed, 13 Jan 2016 21:15:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 501082051A for ; Wed, 13 Jan 2016 21:14:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752714AbcAMVO7 (ORCPT ); Wed, 13 Jan 2016 16:14:59 -0500 Received: from mail-wm0-f53.google.com ([74.125.82.53]:33030 "EHLO mail-wm0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752688AbcAMVO6 (ORCPT ); Wed, 13 Jan 2016 16:14:58 -0500 Received: by mail-wm0-f53.google.com with SMTP id f206so312752837wmf.0 for ; Wed, 13 Jan 2016 13:14:57 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to :content-type; bh=g30LZmTXD116V9lvnHTQLqt5Mnp9EEi2eEkP0rKoikQ=; b=gmKtACjXM52Iuqf52Kkm7dkedTkeNTS1SjFKZLZ5I4W2oplpEHMl0PTtMStlk4LRMG pr2oIt8/enkq8EG9a4HNQ/otc44AbG3uhll+uLS+AP/Vs5ySnwCSFYF04p48ZAkeL5bG OLBd/Zpan2AkNsAGbMP5WWojzBQHPlM4MoHGIH/oc1bP752axvnNkM5LLon3mb3Jpyt2 YvqE0yQMbWTCV9o72hphJz+uWi94sl/V0la4wWUKfunkbhGcl8czGX8Mx/KVdcagGK/H qgWxbmkI+ZLhBRExgIRwg0sfxMgPAu0xGULdHBpvPfXPA2e0EgN69hC0fZ6UXk8f8MNt gP2Q== X-Gm-Message-State: ALoCoQnO01MbXrly3GB9ldmSbx5DQILvOZft8Q/Yggwg6Px7MDtdrm06jqeoHFNAW5u1GPj8DtcITGceIYG82R5cISO45eiqu0k4cygF5VM+foW1lLxG1F4= MIME-Version: 1.0 X-Received: by 10.194.205.103 with SMTP id lf7mr276275wjc.147.1452719697019; Wed, 13 Jan 2016 13:14:57 -0800 (PST) Received: by 10.28.92.134 with HTTP; Wed, 13 Jan 2016 13:14:56 -0800 (PST) Date: Wed, 13 Jan 2016 13:14:56 -0800 Message-ID: Subject: broken fsx compilation From: Gregory Farnum To: fstests@vger.kernel.org Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP We use xfstests in the Ceph test lab and are finding that fsx is failing to build correctly on those boxes (Ubuntu 14.04.3, nothing especially odd about them that I'm aware of): fsx.c: In function 'logdump': fsx.c:298:3: error: unknown type name 'bool' bool overlap; ^ It works fine on my (old) Fedora dev box (and presumably on the boxes of everybody who put it in the tree) so I assume there's something going on with the build chain and environment, but it's not obvious what that would be to me. And it's pretty simple to just add stdbool.h to the header list like you're supposed to for C99 (I can't find any updates to that for C11, but I don't know what your standards are or if I'm missing something). -Greg --- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ========== commit adb8c2cdfa6e30a411529d30c9df96ad47ec918f Author: Greg Farnum Date: Wed Jan 13 12:51:47 2016 -0800 fsx: include stdbool.h Signed-off-by: Greg Farnum diff --git a/ltp/fsx.c b/ltp/fsx.c index 28f109c..9005ef9 100644 --- a/ltp/fsx.c +++ b/ltp/fsx.c @@ -30,6 +30,7 @@ #include #include #include +#include #ifdef AIO #include #endif