internal.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. typedef __printf(2, 0) int (*printk_func_t)(int level, const char *fmt,
  19. va_list args);
  20. __printf(2, 0)
  21. int vprintk_default(int level, const char *fmt, va_list args);
  22. #ifdef CONFIG_PRINTK_NMI
  23. extern raw_spinlock_t logbuf_lock;
  24. /*
  25. * printk() could not take logbuf_lock in NMI context. Instead,
  26. * it temporary stores the strings into a per-CPU buffer.
  27. * The alternative implementation is chosen transparently
  28. * via per-CPU variable.
  29. */
  30. DECLARE_PER_CPU(printk_func_t, printk_func);
  31. __printf(2, 0)
  32. static inline int vprintk_func(int level, const char *fmt, va_list args)
  33. {
  34. return this_cpu_read(printk_func)(level, fmt, args);
  35. }
  36. extern atomic_t nmi_message_lost;
  37. static inline int get_nmi_message_lost(void)
  38. {
  39. return atomic_xchg(&nmi_message_lost, 0);
  40. }
  41. #else /* CONFIG_PRINTK_NMI */
  42. __printf(2, 0)
  43. static inline int vprintk_func(int level, const char *fmt, va_list args)
  44. {
  45. return vprintk_default(level, fmt, args);
  46. }
  47. static inline int get_nmi_message_lost(void)
  48. {
  49. return 0;
  50. }
  51. #endif /* CONFIG_PRINTK_NMI */