> > > > > > +void ptep_invalidate_range(struct mm_struct *mm, unsigned long start, > > > + unsigned long end, pte_t *ptep) > > > +{ > > > + unsigned long nr; > > > + > > > + if (!MACHINE_HAS_IPTE_RANGE || mm_has_pgste(mm)) > > > + return; > > > + preempt_disable(); > > > + nr = (end - start) >> PAGE_SHIFT; > > > + /* If the flush is likely to be local skip the ipte range */ > > > + if (nr && !cpumask_equal(mm_cpumask(mm), > > > + cpumask_of(smp_processor_id()))) > > > > s/smp/raw_smp/ to avoid adding schedule entry with page table > > lock held? > > There can not be a schedule entry with either the page table lock held > or the preempt_disable() a few lines above. > Yes, Sir. > > > + __ptep_ipte_range(start, nr - 1, ptep); > > > + preempt_enable(); Then would you please, Sir, take a look at another case where preempt is enabled? > > > +} > > > +EXPORT_SYMBOL(ptep_invalidate_range); > > > + > > thanks Hillf -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>