text-patching.h 301 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_S390_TEXT_PATCHING_H
  3. #define _ASM_S390_TEXT_PATCHING_H
  4. #include <asm/barrier.h>
  5. static __always_inline void sync_core(void)
  6. {
  7. bcr_serialize();
  8. }
  9. void text_poke_sync(void);
  10. void text_poke_sync_lock(void);
  11. #endif /* _ASM_S390_TEXT_PATCHING_H */