Linux kernel source tree
Find a file
Arnd Bergmann 294ec5b87a sunrpc: convert to time64_t for expiry
Using signed 32-bit types for UTC time leads to the y2038 overflow,
which is what happens in the sunrpc code at the moment.

This changes the sunrpc code over to use time64_t where possible.
The one exception is the gss_import_v{1,2}_context() function for
kerberos5, which uses 32-bit timestamps in the protocol. Here,
we can at least treat the numbers as 'unsigned', which extends the
range from 2038 to 2106.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
2019-12-18 18:07:32 +01:00
arch um: ubd: use 64-bit time_t where possible 2019-12-18 18:07:31 +01:00
block
certs
crypto
Documentation
drivers drm/etnaviv: avoid deprecated timespec 2019-12-18 18:07:32 +01:00
fs hfs/hfsplus: use 64-bit inode timestamps 2019-12-18 18:07:32 +01:00
include sunrpc: convert to time64_t for expiry 2019-12-18 18:07:32 +01:00
init
ipc
kernel tsacct: add 64-bit btime field 2019-12-18 18:07:31 +01:00
lib
LICENSES
mm
net sunrpc: convert to time64_t for expiry 2019-12-18 18:07:32 +01:00
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README

Linux kernel
============

There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.  The formatted documentation can also be read online at:

    https://www.kernel.org/doc/html/latest/

There are various text files in the Documentation/ subdirectory,
several of them using the Restructured Text markup notation.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.