Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp729882imm; Thu, 13 Sep 2018 06:57:26 -0700 (PDT) X-Google-Smtp-Source: ANB0VdZks0k+vY9XhIXgLeJqqIUe6JUJ3YINdR+p4ouMY47iuUCG09byQDsub86DqQbbAcN5rDw1 X-Received: by 2002:a63:d74f:: with SMTP id w15-v6mr7373315pgi.306.1536847046371; Thu, 13 Sep 2018 06:57:26 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1536847046; cv=none; d=google.com; s=arc-20160816; b=wD1esSY5J+qKc/0HFH61hWl3i5SSfGjkhY13nGDNza8m+H/KI/3eJKe9G+QGHk/Z/0 kZiCMt3qwMC1z6b0QYff7EMnQk8+10DCcVOd6DHOn8oEo00IsXqQ+bfj8yaOoe2ZSfyv 0acPDaT89fyKAB+s2kMUJuwmfO5rEQCV0FfcmEDxgs/Cc0PxScVQqcPMH2THmSaqU5yv pNldUeQ4oBuSsPrVh+nQnZTv6MnTY552skIjf6NmbnT8XzHtS4XpOuquAKl8MQDb6e4b ParUAm+5abzkBULQ+s1kgMRhpC3FyPRz7yPzUqLe5TY8jYtp0+VXusK6OQat/TWjbosO zv/A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :user-agent:references:in-reply-to:message-id:date:subject:cc:to :from; bh=gLHZw3XCyk3ad4DJY1hMmXfTNc7qnG2MJbe6nnIQ6yE=; b=DFLy42I8bZhcz51LHzg+a90m9EXn/UHZHRrC4kjDfcP2Mz9Limlxr7MzC05y7hbpZI j7+DabFNnTTi5rQAnZi80Em4kgnRq1qFx6XtG6TMUtqznk607AFpMSUUI3q+6Fh7BUMe Q7fWDIsK07B4ThHAILk1tXxYnGQAaA9r7Q8B8pox8E0m1Hl+FvOmqY85E0OiH9lEnjSr 5F2Gxa3ncf4JRFa/Acyqw1lifHiejcs02p1igeRjHQoB6H/qbhiIFEs+5ke99P0MnS3C Jl7w8G3LtGJHr+krXPfe/GjJcNm8v/92SCdyMKYuCed7FbM6s9vtS6RbjR0zk+PnIna1 TQvQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 21-v6si4273650pgg.588.2018.09.13.06.57.11; Thu, 13 Sep 2018 06:57:26 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731285AbeIMTFY (ORCPT + 99 others); Thu, 13 Sep 2018 15:05:24 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:34054 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730911AbeIMTFX (ORCPT ); Thu, 13 Sep 2018 15:05:23 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 44B56D1A; Thu, 13 Sep 2018 13:55:47 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Arnd Bergmann , Jan Kara , Jeff Mahoney , Andrew Morton , Linus Torvalds , Sasha Levin Subject: [PATCH 4.18 043/197] reiserfs: change j_timestamp type to time64_t Date: Thu, 13 Sep 2018 15:29:52 +0200 Message-Id: <20180913131843.268817999@linuxfoundation.org> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20180913131841.568116777@linuxfoundation.org> References: <20180913131841.568116777@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Arnd Bergmann [ Upstream commit 8b73ce6a4bae4fe12bcb2c361c0da4183c2e1b6f ] This uses the deprecated time_t type but is write-only, and could be removed, but as Jeff explains, having a timestamp can be usefule for post-mortem analysis in crash dumps. In order to remove one of the last instances of time_t, this changes the type to time64_t, same as j_trans_start_time. Link: http://lkml.kernel.org/r/20180622133315.221210-1-arnd@arndb.de Signed-off-by: Arnd Bergmann Cc: Jan Kara Cc: Jeff Mahoney Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- fs/reiserfs/reiserfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/reiserfs/reiserfs.h +++ b/fs/reiserfs/reiserfs.h @@ -271,7 +271,7 @@ struct reiserfs_journal_list { struct mutex j_commit_mutex; unsigned int j_trans_id; - time_t j_timestamp; + time64_t j_timestamp; /* write-only but useful for crash dump analysis */ struct reiserfs_list_bitmap *j_list_bitmap; struct buffer_head *j_commit_bh; /* commit buffer head */ struct reiserfs_journal_cnode *j_realblock;