mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 13:41:30 +00:00
net/netlink: lockdep_genl_is_held can be boolean
This patch makes lockdep_genl_is_held return bool to improve readability due to this particular function only using either one or zero as its return value. No functional change. Signed-off-by: Yaowei Bai <bywxiaobai@163.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8cec75bd85
commit
61d03535e4
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ void genl_unlock(void)
|
|||
EXPORT_SYMBOL(genl_unlock);
|
||||
|
||||
#ifdef CONFIG_LOCKDEP
|
||||
int lockdep_genl_is_held(void)
|
||||
bool lockdep_genl_is_held(void)
|
||||
{
|
||||
return lockdep_is_held(&genl_mutex);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue