|
|
|
|
|
|
|
|
|
|
xen-ia64-devel
Re: [Xen-ia64-devel] [Patch] [1/2] fix wrong emulation: move to psr
Quoting Akio Takebe <takebe_akio@xxxxxxxxxxxxxx>:
> Hi,
>
> I updated it.
Haven't you changed the behaviour of dfh:
From
- if (newpsr.dfh) {
- ipsr->dfh = 1;
- PSCB(vcpu, vpsr_dfh) = 1;
- } else {
- ipsr->dfh = PSCB(vcpu, hpsr_dfh);
- PSCB(vcpu, vpsr_dfh) = 0;
- }
to
+ ipsr->dfh = newpsr.dfh;
+ PSCB(vcpu, vpsr_dfh) = newpsr.dfh;
vpsr_dfh is correct, but ipsr->dfh has changed.
Tristan.
_______________________________________________
Xen-ia64-devel mailing list
Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ia64-devel
|
|
|
|
|