mac80211: use ktime_get_seconds
authorArnd Bergmann <arnd@arndb.de>
Wed, 30 Sep 2015 11:26:36 +0000 (13:26 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 5 Oct 2015 10:16:45 +0000 (03:16 -0700)
commit84b00607aeb8f139a11c93036e1c0ee03dde5634
tree4ae140cdf9cbc9026e9cd2987dea1bf29c3c57be
parent52f4f91893955c359885d022b2142e2326f020a1
mac80211: use ktime_get_seconds

The mac80211 code uses ktime_get_ts to measure the connected time.
As this uses monotonic time, it is y2038 safe on 32-bit systems,
but we still want to deprecate the use of 'timespec' because most
other users are broken.

This changes the code to use ktime_get_seconds() instead, which
avoids the timespec structure and is slightly more efficient.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Johannes Berg <johannes@sipsolutions.net>
Cc: linux-wireless@vger.kernel.org
Signed-off-by: David S. Miller <davem@davemloft.net>
net/mac80211/sta_info.c