* Handle a memory store performed by inline assembly. KMSAN conservatively
  * attempts to unpoison the outputs of asm() directives to prevent false
  * positives caused by missed stores.
+ *
+ * __msan_instrument_asm_store() may be called for inline assembly code when
+ * entering or leaving IRQ. We omit the check for kmsan_in_runtime() to ensure
+ * the memory written to in these cases is also marked as initialized.
  */
 void __msan_instrument_asm_store(void *addr, uintptr_t size)
 {
        unsigned long ua_flags;
 
-       if (!kmsan_enabled || kmsan_in_runtime())
+       if (!kmsan_enabled)
                return;
 
        ua_flags = user_access_save();
                user_access_restore(ua_flags);
                return;
        }
-       kmsan_enter_runtime();
        /* Unpoisoning the memory on best effort. */
        kmsan_internal_unpoison_memory(addr, size, /*checked*/ false);
-       kmsan_leave_runtime();
        user_access_restore(ua_flags);
 }
 EXPORT_SYMBOL(__msan_instrument_asm_store);