]> git.baikalelectronics.ru Git - kernel.git/commit
Input: input_event - provide override for sparc64
authorDeepa Dinamani <deepa.kernel@gmail.com>
Mon, 14 Jan 2019 06:28:05 +0000 (22:28 -0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 14 Jan 2019 06:51:03 +0000 (22:51 -0800)
commit596612904f9b3a7711f39ae70a102829b25f57e2
treeabb3e3f22b604b928daeb971b095d60a7a62cb89
parent0b6064e8cd2cd7b6ef75637f7e9688cbf5d05bde
Input: input_event - provide override for sparc64

The usec part of the timeval is defined as
__kernel_suseconds_t tv_usec; /* microseconds */

Arnd noticed that sparc64 is the only architecture that defines
__kernel_suseconds_t as int rather than long.

This breaks the current y2038 fix for kernel as we only access and define
the timeval struct for non-kernel use cases.  But, this was hidden by an
another typo in the use of __KERNEL__ qualifier.

Fix the typo, and provide an override for sparc64.

Fixes: 783d9ff5eb65 ("Input: extend usable life of event timestamps to 2106 on 32 bit systems")
Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
include/uapi/linux/input.h