/* * Enumerate bits using enum autoincrement. Define the @name as the n-th bit.
*/ #define ENUM_BIT(name) \
__ ## name ## _BIT, \
name = (1U << __ ## name ## _BIT), \
__ ## name ## _SEQ = __ ## name ## _BIT
staticinlinevoid cond_wake_up(struct wait_queue_head *wq)
{ /* * This implies a full smp_mb barrier, see comments for * waitqueue_active why.
*/ if (wq_has_sleeper(wq))
wake_up(wq);
}
staticinlinevoid cond_wake_up_nomb(struct wait_queue_head *wq)
{ /* * Special case for conditional wakeup where the barrier required for * waitqueue_active is implied by some of the preceding code. Eg. one * of such atomic operations (atomic_dec_and_return, ...), or a * unlock/lock sequence, etc.
*/ if (waitqueue_active(wq))
wake_up(wq);
}
staticinline u64 mult_perc(u64 num, u32 percent)
{ return div_u64(num * percent, 100);
} /* Copy of is_power_of_two that is 64bit safe */ staticinlinebool is_power_of_two_u64(u64 n)
{ return n != 0 && (n & (n - 1)) == 0;
}
/* * Simple bytenr based rb_tree relate structures * * Any structure wants to use bytenr as single search index should have their * structure start with these members.
*/ struct rb_simple_node { struct rb_node rb_node;
u64 bytenr;
};
/* * Search @root from an entry that starts or comes after @bytenr. * * @root: the root to search. * @bytenr: bytenr to search from. * * Return the rb_node that start at or after @bytenr. If there is no entry at * or after @bytner return NULL.
*/ staticinlinestruct rb_node *rb_simple_search_first(conststruct rb_root *root,
u64 bytenr)
{ struct rb_node *node = root->rb_node, *ret = NULL; struct rb_simple_node *entry, *ret_entry = NULL;
while (node) {
entry = rb_entry(node, struct rb_simple_node, rb_node);
if (bytenr < entry->bytenr) { if (!ret || entry->bytenr < ret_entry->bytenr) {
ret = node;
ret_entry = entry;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.