]> asedeno.scripts.mit.edu Git - linux.git/commit
xfs: quota: move to time64_t interfaces
authorArnd Bergmann <arnd@arndb.de>
Thu, 2 Jan 2020 21:27:45 +0000 (13:27 -0800)
committerDarrick J. Wong <darrick.wong@oracle.com>
Mon, 6 Jan 2020 16:57:37 +0000 (08:57 -0800)
commitb8a0880a37e2f43aa3bcd147182e95a4ebd82279
treea8458004ff09a1d82f310eb3e38d470b4faf9ab6
parent3b62f000c86ac7139f79912136b85eacf233b173
xfs: quota: move to time64_t interfaces

As a preparation for removing the 32-bit time_t type and
all associated interfaces, change xfs to use time64_t and
ktime_get_real_seconds() for the quota housekeeping.

This avoids one difference between 32-bit and 64-bit kernels,
raising the theoretical limit for the quota grace period
to year 2106 on 32-bit instead of year 2038.

Note that common user space tools using the XFS quotactl
interface instead of the generic one still use the y2038
dates.

To fix quotas properly, both the on-disk format and user
space still need to be changed.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
fs/xfs/xfs_dquot.c
fs/xfs/xfs_qm.h
fs/xfs/xfs_quotaops.c
fs/xfs/xfs_trans_dquot.c