Kernel utility functions

upper_32_bits — return bits 32-63 of a number
lower_32_bits — return bits 0-31 of a number
might_sleep — annotation for functions that can sleep
kstrtoul — convert a string to an unsigned long
kstrtol — convert a string to a long
trace_printk — printf formatting in the ftrace buffer
trace_puts — write a string into the ftrace buffer
min_not_zero — return the minimum that is _not_ zero, unless both are zero
clamp — return a value clamped to a given range with strict typechecking
clamp_t — return a value clamped to a given range using a given type
clamp_val — return a value clamped to a given range using val's type
container_of — cast a member of a structure out to the containing structure
printk — print a kernel message
console_lock — lock the console system for exclusive use.
console_trylock — try to lock the console system for exclusive use.
console_unlock — unlock the console system
console_conditional_schedule — yield the CPU if required
printk_timed_ratelimit — caller-controlled printk ratelimiting
kmsg_dump_register — register a kernel log dumper.
kmsg_dump_unregister — unregister a kmsg dumper.
kmsg_dump_get_line — retrieve one kmsg log line
kmsg_dump_get_buffer — copy kmsg log lines
kmsg_dump_rewind — reset the interator
panic — halt the system
add_taint
/builddir/build/BUILD/kernel-3.11.fc18/linux-3.11.10-100.fc18.noarch//kernel/sys.c — Document generation inconsistency
rcu_read_lock_bh_held — might we be in RCU-bh read-side critical section?
init_rcu_head_on_stack — initialize on-stack rcu_head for debugobjects
destroy_rcu_head_on_stack — destroy on-stack rcu_head for debugobjects