staging/lustre: use 'long' return type for cfs_duration_sec()
authorArnd Bergmann <arnd@arndb.de>
Sun, 27 Sep 2015 20:45:11 +0000 (16:45 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Sep 2015 02:03:35 +0000 (04:03 +0200)
commite8453c24d7f610ec67cc1bbbcf5c8b6880645672
treed6c926c891434ee2bb82bdb1e0209cce6e6031b9
parent5e50efea6a4fe6c92dce3022878f91cf17bdceb8
staging/lustre: use 'long' return type for cfs_duration_sec()

The cfs_duration_sec() converts a relative jiffies value into seconds,
and returns that number as a time_t. We know that a 32-bit type is
enough here, because the result is order of magnitudes smaller than
the difference in jiffies that is also expressed as a 'long', so
we can safely replace the time_t type with long as well.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h