From patchwork Thu Aug 9 02:42:17 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Theodore Ts'o X-Patchwork-Id: 955303 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-ext4-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=mit.edu Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=thunk.org header.i=@thunk.org header.b="Dji60DkQ"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 41mCG90kwSz9s8W for ; Thu, 9 Aug 2018 12:42:25 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727503AbeHIFEy (ORCPT ); Thu, 9 Aug 2018 01:04:54 -0400 Received: from imap.thunk.org ([74.207.234.97]:52960 "EHLO imap.thunk.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727158AbeHIFEx (ORCPT ); Thu, 9 Aug 2018 01:04:53 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=thunk.org; s=ef5046eb; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Sender:Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=fp3xvWyJzkOOD8TkymB9PRr9+hshIQiV2lTZ5jUe6dQ=; b=Dji60DkQ9V9IW4rtQdhz0gxFD/ il7f4YhxA9JZ6w2qPIFK1DjLnYrtCI7g1L0fFeX1+xq+eQE2SQMDYWhkQEIycE+A18LZ3P0mp8AEa EKDpJPdff4wItXL7U65+GSNb3mUdvqI4SnB6a644BMUBzwtgNAzd9aX6qXrLaUnpobew=; Received: from root (helo=callcc.thunk.org) by imap.thunk.org with local-esmtp (Exim 4.89) (envelope-from ) id 1fnau6-0000aA-Rk; Thu, 09 Aug 2018 02:42:22 +0000 Received: by callcc.thunk.org (Postfix, from userid 15806) id BCB0F7A6515; Wed, 8 Aug 2018 22:42:21 -0400 (EDT) From: Theodore Ts'o To: Ext4 Developers List Cc: Theodore Ts'o Subject: [PATCH 3/5] e2fsck: fix LTO type warnings Date: Wed, 8 Aug 2018 22:42:17 -0400 Message-Id: <20180809024219.15696-3-tytso@mit.edu> X-Mailer: git-send-email 2.18.0.rc0 In-Reply-To: <20180809024219.15696-1-tytso@mit.edu> References: <20180809024219.15696-1-tytso@mit.edu> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: tytso@thunk.org X-SA-Exim-Scanned: No (on imap.thunk.org); SAEximRunCond expanded to false Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org The jfs_user.h, which is used by the journal functions didn't include config.h before including e2fsck.h. This caused the e2fsck structure to be different compared how it's compiled for the other e2fsck source files. Signed-off-by: Theodore Ts'o --- e2fsck/jfs_user.h | 1 + 1 file changed, 1 insertion(+) diff --git a/e2fsck/jfs_user.h b/e2fsck/jfs_user.h index 828979514..a1c6951cb 100644 --- a/e2fsck/jfs_user.h +++ b/e2fsck/jfs_user.h @@ -27,6 +27,7 @@ /* * Pull in the definition of the e2fsck context structure */ +#include "config.h" #include "e2fsck.h" #endif