Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp714541imm; Thu, 13 Sep 2018 06:43:21 -0700 (PDT) X-Google-Smtp-Source: ANB0VdaCLL4zRdX7pmsnbFeXvUEz+QV5xYy3AmAiTqpDtygXBWuE1kM+0ZYNejyUh5z3r/Key1pd X-Received: by 2002:a63:ff1f:: with SMTP id k31-v6mr7128259pgi.20.1536846201369; Thu, 13 Sep 2018 06:43:21 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1536846201; cv=none; d=google.com; s=arc-20160816; b=H6K3XbqBamY+Rujf14tu5vPSB51uCNQReUOR0IF7i1FaC8SdnyoGm201MrZIGuzshk eS8VzieefXToGYuPZrSsQs+BNkJ4GSL7horRptxFn0dpcFwz4CwHU8x2Y+slI9skWzoW zkN8z0+jxBOBFIkdO0FTz7dFdjcZ+GyKfxAUWV0/PV7FXz5aRQs/fZaIJgCWxUb9Fh+v nv+bCVpE0pnfq/hZV7+PLusy2+5f7IMC6eog7lIyS9fWLws1t39lMp9EBmsvQrKghBGe AVdDQIye/AHEXzDlKODLQj4gjDfs4+3wlYxhRk1pTbrOkL+zmIxfiW2AV61YcwnTXw/z 47aw== 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=hao32HIzZ988mWPY/CioHEPZHq/V4bkcecjMFmjj3sY=; b=i7ODTs5E2Crss/LjbLkhwgReq7YMSV9eq2F2noxZWKuVS/roJ2uuMHiHYMoRwqCbWF gqOGON7WsbC+7ghVHuWH/d8coJFcGeVt7WLg+HG229ymTzfs+XfV5//T65YDxsjyfF1D aDidWBbsyhQI2u/6M/NfmhFx6PLS4+TqmCFIHi7HJ+SqWxrMWaqxnDfu9UjzR46V9bLq iC7rJVkSTmLDjYr4vrd/Tuz9RWVyHTPGg82uYHfmdwoJTIXksM+HAUZeZQPl60rl/i5H vkFQSSout6733+jJ1BFXUvsLMhg5W7x33VS+1GJf2dJoh0hjFx9H6SLTlO+IzXd5js13 bn/Q== 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 k1-v6si4264221pgj.522.2018.09.13.06.43.06; Thu, 13 Sep 2018 06:43:21 -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 S1729786AbeIMSwO (ORCPT + 99 others); Thu, 13 Sep 2018 14:52:14 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:60226 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727644AbeIMSwN (ORCPT ); Thu, 13 Sep 2018 14:52:13 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 30E8CD1A; Thu, 13 Sep 2018 13:42:41 +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.14 026/115] reiserfs: change j_timestamp type to time64_t Date: Thu, 13 Sep 2018 15:30:46 +0200 Message-Id: <20180913131825.223205731@linuxfoundation.org> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20180913131823.327472833@linuxfoundation.org> References: <20180913131823.327472833@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.14-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;