Remove mf.a from sapic_read() and sapic_write(). We only care
about ordering and not acceptance. The removal of mf.a leaves behind the mf that accompanied it.
This commit is contained in:
parent
8497092d00
commit
d506d5dc0e
@ -61,7 +61,6 @@ sapic_read(struct sapic *sa, int which)
|
||||
|
||||
*(volatile u_int32_t *) (reg + SAPIC_IO_SELECT) = which;
|
||||
ia64_mf();
|
||||
ia64_mf_a();
|
||||
return *(volatile u_int32_t *) (reg + SAPIC_IO_WINDOW);
|
||||
}
|
||||
|
||||
@ -72,10 +71,8 @@ sapic_write(struct sapic *sa, int which, u_int32_t value)
|
||||
|
||||
*(volatile u_int32_t *) (reg + SAPIC_IO_SELECT) = which;
|
||||
ia64_mf();
|
||||
ia64_mf_a();
|
||||
*(volatile u_int32_t *) (reg + SAPIC_IO_WINDOW) = value;
|
||||
ia64_mf();
|
||||
ia64_mf_a();
|
||||
}
|
||||
|
||||
#ifdef DDB
|
||||
|
Loading…
x
Reference in New Issue
Block a user