> Module Name: src
> Committed By: martin
> Date: Thu Sep 1 08:47:56 UTC 2011
>
> Modified Files:
> src/sys/arch/sparc/sparc: pmap.c
>
> Log Message:
> In pmap_unwire() fix an obvious editor mishap - enable kernel preemption
> before returning, not the other way around.
> Might fix PR kern/45137.
>
>
> To generate a diff of this commit:
> cvs rdiff -u -r1.345 -r1.346 src/sys/arch/sparc/sparc/pmap.c
thanks for fixing this.
hmm... code was like:
{
return;
foo();
}
it would be nice if we got warnings about this.
.mrg.