Re: [PATCH] ktime: minor: ktime_to_timespec_cond: add __must_check prefix

2013-05-28 Thread John Stultz
On 05/16/2013 06:47 AM, Daniel Borkmann wrote: The function is currently mainly used in the networking code and if others start using it, they must check the result, otherwise it cannot be determined if the timespec conversion suceeded. Currently no user lacks this check, but make future users aw

[PATCH] ktime: minor: ktime_to_timespec_cond: add __must_check prefix

2013-05-16 Thread Daniel Borkmann
The function is currently mainly used in the networking code and if others start using it, they must check the result, otherwise it cannot be determined if the timespec conversion suceeded. Currently no user lacks this check, but make future users aware of a possible misusage. Signed-off-by: Danie