Tom Lane wrote:
> I probably should have broken down the spindelay patch into multiple
> components. But it's only a small change --- could you try simplifying
> the patched line
>
> if ((--spins % MAX_SPINS_PER_DELAY) == 0)
>
> to
>
> if (--spins == 0)
>
> and see how the patch does that way?
I'll do tomorrow morning (CEST, i.e. in about 11 hours).
Best Regards,
Michael Paesold