kern/subr_pctrie: Convert old-style boolean_t to plain "bool"

No functional change.
This commit is contained in:
Conrad Meyer 2019-04-06 20:38:44 +00:00
parent 2c338af141
commit 04f9afae18
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=345991
2 changed files with 4 additions and 4 deletions

View File

@ -166,7 +166,7 @@ pctrie_setroot(struct pctrie *ptree, struct pctrie_node *node)
/*
* Returns TRUE if the specified node is a leaf and FALSE otherwise.
*/
static __inline boolean_t
static __inline bool
pctrie_isleaf(struct pctrie_node *node)
{
@ -218,7 +218,7 @@ pctrie_keydiff(uint64_t index1, uint64_t index2)
* Returns TRUE if it can be determined that key does not belong to the
* specified node. Otherwise, returns FALSE.
*/
static __inline boolean_t
static __inline bool
pctrie_keybarr(struct pctrie_node *node, uint64_t idx)
{
@ -226,7 +226,7 @@ pctrie_keybarr(struct pctrie_node *node, uint64_t idx)
idx = pctrie_trimkey(idx, node->pn_clev + 1);
return (idx != node->pn_owner);
}
return (FALSE);
return (false);
}
/*

View File

@ -128,7 +128,7 @@ pctrie_init(struct pctrie *ptree)
ptree->pt_root = 0;
}
static __inline boolean_t
static __inline bool
pctrie_is_empty(struct pctrie *ptree)
{