]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'timer-add-fsleep-for-flexible-sleeping'
authorDavid S. Miller <davem@davemloft.net>
Thu, 7 May 2020 00:03:34 +0000 (17:03 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 7 May 2020 00:03:34 +0000 (17:03 -0700)
commit9cdf2fdab0cbd54a2f0e694ac1e0a1d54ad1b907
tree6cf1bc43c66f49a9c343b3c5bce74fe124744669
parent35faa17e5c8fd97567b80fd7dba448c79982e7c9
parent29017eb7b20c24b169fdbca5e4c9e2467dddf9e9
Merge branch 'timer-add-fsleep-for-flexible-sleeping'
Heiner Kallweit says:

====================
timer: add fsleep for flexible sleeping

Sleeping for a certain amount of time requires use of different
functions, depending on the time period.
Documentation/timers/timers-howto.rst explains when to use which
function, and also checkpatch checks for some potentially
problematic cases.

So let's create a helper that automatically chooses the appropriate
sleep function -> fsleep(), for flexible sleeping
Not sure why such a helper doesn't exist yet, or where the pitfall is,
because it's a quite obvious idea.

If the delay is a constant, then the compiler should be able to ensure
that the new helper doesn't create overhead. If the delay is not
constant, then the new helper can save some code.

First user is the r8169 network driver. If nothing speaks against it,
then this series could go through the netdev tree.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>