CPUState *cs = CPU(cpu);
/* info->smp_bootreg_addr */
- address_space_stl_notdirty(as, AST_SMP_MBOX_FIELD_GOSIGN, 0,
- MEMTXATTRS_UNSPECIFIED, NULL);
+ address_space_stl(as, AST_SMP_MBOX_FIELD_GOSIGN, 0,
+ MEMTXATTRS_UNSPECIFIED, NULL);
cpu_set_pc(cs, info->smp_loader_start);
}
AddressSpace *as = arm_boot_address_space(cpu, info);
CPUState *cs = CPU(cpu);
- address_space_stl_notdirty(as, info->smp_bootreg_addr,
- 0, MEMTXATTRS_UNSPECIFIED, NULL);
+ address_space_stl(as, info->smp_bootreg_addr,
+ 0, MEMTXATTRS_UNSPECIFIED, NULL);
cpu_set_pc(cs, info->smp_loader_start);
}
}
#define WRITE_WORD(p, value) do { \
- address_space_stl_notdirty(as, p, value, \
- MEMTXATTRS_UNSPECIFIED, NULL); \
+ address_space_stl(as, p, value, \
+ MEMTXATTRS_UNSPECIFIED, NULL); \
p += 4; \
} while (0)