[PATCH v2 3/5] ARM: add support for kernel mode NEON
Jean-Christophe PLAGNIOL-VILLARD
plagnioj at jcrosoft.com
Fri Jun 28 09:46:00 EDT 2013
On 12:55 Wed 26 Jun , Ard Biesheuvel wrote:
> Replying to self:
>
> On 25 June 2013 22:24, Ard Biesheuvel <ard.biesheuvel at linaro.org> wrote:
> > +void kernel_neon_end(void)
> > +{
> > + /* Disable the NEON/VFP unit. */
> > + fmxr(FPEXC, fmrx(FPEXC) & ~FPEXC_EN);
> > + barrier();
> > + dec_preempt_count();
> > +}
> > +EXPORT_SYMBOL(kernel_neon_end);
>
> Meh. This is not going to please the RT crowd, as preempt_schedule()
> will not be called on PREEMPT builds in this case.
>
> Propose to replace it with
>
> preempt_enable();
> #ifndef CONFIG_PREEMPT_COUNT
if (IS_ENABLED(CONFIG_xxx)) at least
> /* in this case, the preempt_enable() right above is just a barrier() */
> dec_preempt_count();
> #endif
but why do you need to call inc_preempt and dec directly?
Best Regards,
J.
More information about the linux-arm-kernel
mailing list