hc
2024-11-01 7e970c18f85f99acc678d90128b6e01dce1bf273
kernel/arch/arm/include/asm/outercache.h
....@@ -78,8 +78,13 @@
7878 */
7979 static inline void outer_flush_all(void)
8080 {
81
- if (outer_cache.flush_all)
81
+ unsigned long flags;
82
+
83
+ if (outer_cache.flush_all) {
84
+ flags = hard_cond_local_irq_save();
8285 outer_cache.flush_all();
86
+ hard_cond_local_irq_restore(flags);
87
+ }
8388 }
8489
8590 /**