internal.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * internal.h - printk internal definitions
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version 2
  7. * of the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <linux/percpu.h>
  18. #ifdef CONFIG_PRINTK
  19. #define PRINTK_SAFE_CONTEXT_MASK 0x3fffffff
  20. #define PRINTK_NMI_DIRECT_CONTEXT_MASK 0x40000000
  21. #define PRINTK_NMI_CONTEXT_MASK 0x80000000
  22. extern raw_spinlock_t logbuf_lock;
  23. __printf(5, 0)
  24. int vprintk_store(int facility, int level,
  25. const char *dict, size_t dictlen,
  26. const char *fmt, va_list args);
  27. __printf(1, 0) int vprintk_default(const char *fmt, va_list args);
  28. __printf(1, 0) int vprintk_deferred(const char *fmt, va_list args);
  29. __printf(1, 0) int vprintk_func(const char *fmt, va_list args);
  30. void __printk_safe_enter(void);
  31. void __printk_safe_exit(void);
  32. #define printk_safe_enter_irqsave(flags) \
  33. do { \
  34. local_irq_save(flags); \
  35. __printk_safe_enter(); \
  36. } while (0)
  37. #define printk_safe_exit_irqrestore(flags) \
  38. do { \
  39. __printk_safe_exit(); \
  40. local_irq_restore(flags); \
  41. } while (0)
  42. #define printk_safe_enter_irq() \
  43. do { \
  44. local_irq_disable(); \
  45. __printk_safe_enter(); \
  46. } while (0)
  47. #define printk_safe_exit_irq() \
  48. do { \
  49. __printk_safe_exit(); \
  50. local_irq_enable(); \
  51. } while (0)
  52. void defer_console_output(void);
  53. #else
  54. __printf(1, 0) int vprintk_func(const char *fmt, va_list args) { return 0; }
  55. /*
  56. * In !PRINTK builds we still export logbuf_lock spin_lock, console_sem
  57. * semaphore and some of console functions (console_unlock()/etc.), so
  58. * printk-safe must preserve the existing local IRQ guarantees.
  59. */
  60. #define printk_safe_enter_irqsave(flags) local_irq_save(flags)
  61. #define printk_safe_exit_irqrestore(flags) local_irq_restore(flags)
  62. #define printk_safe_enter_irq() local_irq_disable()
  63. #define printk_safe_exit_irq() local_irq_enable()
  64. #endif /* CONFIG_PRINTK */