static inline void __unlock_kernel(void) { /* * the BKL is not covered by lockdep, so we open-code the * unlocking sequence (and thus avoid the dep-chain ops): */ do_raw_spin_unlock(&kernel_flag); preempt_enable();
}