Received: by 2002:a05:6a10:f3d0:0:0:0:0 with SMTP id a16csp5184498pxv; Tue, 6 Jul 2021 20:15:07 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwkY5KNAMvg6MsBUOCVOiN+TrLfMeTt6v4rEQBFsRLGm9q7yGePk54K1O18CW18YQoPQYcU X-Received: by 2002:a17:907:60cd:: with SMTP id hv13mr21686605ejc.421.1625627707217; Tue, 06 Jul 2021 20:15:07 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1625627707; cv=none; d=google.com; s=arc-20160816; b=ojBAQCP2sW69bUE2LAAB0Q3BAFB8QZgZoQcTLwo94uD6fZlULkdLFuOuS30j2H+OI4 E7+WPMp2SiCOW6E3ZROi5dgVCOX5AWo22YrjpvyRUpn7xUcLgYQqzCWd/wyHTvd5QLzn Dy7WGdBWDMCdnfV/kylXk1gPR+hN5yfVKMx7XWTSDqwBngjzcLST4RClfgC0Adc06HZv f1z8aIWnTec+1xVKta0BcNtKyByx2cf3RMevLvBa/SqEdVv4Ec8IlvYkxqajO1upmhHA l1BzHD4bP9TBU6eqx6GVEZaDgkwNPNMVcLFQNvZxJSte1aZgr6hSzZBRM18fq0JrMVpK Epjg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=eNoPMNkpJYrt7mkeI1SPwvBe0dNY9pqCRP4eNgnJ5IM=; b=eOqmFPRV0ERgOivClVQW1W7T5DGhOGxwHVzEwU6bNyMiJ9hx4GdyEevz9h1i0siGaP j8a7Zq5p9tY4oe+y5F7M6YvG5oiizhs2i0ZWFWnAgTJYczvp3NJk8oF6TM2qQ+566Pht 7TV57laVLp7gzRATxUDwayQd+ZG5bMbuoyF89Tr1jIm9qhDf31E4kHFTCyfGh8xVa6Vo 4UED63HEBHmlL8p7Hc3nDcyNlPoHSv9oCERU9CXYwakYC5G5AXJu9kOOP7GOKSs3mRXG eujo4IOvr/9iopSQk+VkprCFSHMgxpU6a4cx9D9eJINe4SmnGQu3/a6f3vaUuVfhZDxv B6sA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id b15si17578467edd.227.2021.07.06.20.14.36; Tue, 06 Jul 2021 20:15:07 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229992AbhGGDQS (ORCPT + 99 others); Tue, 6 Jul 2021 23:16:18 -0400 Received: from outgoing-auth-1.mit.edu ([18.9.28.11]:49053 "EHLO outgoing.mit.edu" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S229989AbhGGDQR (ORCPT ); Tue, 6 Jul 2021 23:16:17 -0400 Received: from cwcc.thunk.org (pool-72-74-133-215.bstnma.fios.verizon.net [72.74.133.215]) (authenticated bits=0) (User authenticated as tytso@ATHENA.MIT.EDU) by outgoing.mit.edu (8.14.7/8.12.4) with ESMTP id 1673DYqi004988 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 6 Jul 2021 23:13:34 -0400 Received: by cwcc.thunk.org (Postfix, from userid 15806) id 1D10615C3CC6; Tue, 6 Jul 2021 23:13:34 -0400 (EDT) Date: Tue, 6 Jul 2021 23:13:34 -0400 From: "Theodore Ts'o" To: Eric Biggers Cc: linux-ext4@vger.kernel.org Subject: Re: [PATCH 5/6] Fix -Wunused-variable warnings Message-ID: References: <20210616045334.1655288-1-ebiggers@kernel.org> <20210616045334.1655288-6-ebiggers@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210616045334.1655288-6-ebiggers@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Tue, Jun 15, 2021 at 09:53:33PM -0700, Eric Biggers wrote: > From: Eric Biggers > > Fix all warnings about unused variables that were introduced since > e2fsprogs v1.45.4. > > Signed-off-by: Eric Biggers Fixed, although I had to drop a hunk which was already fixed by the commit: 1e0c8ca7 e2fsck: fix portability problems caused by unaligned accesses - Ted