Comment 18 for bug 266956

Revision history for this message
Jean-Louis Dupond (dupondje) wrote :

#if defined(__x86_64__) && defined(__SMP__) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27))
    on_each_cpu(KCL_flush_tlb_one, &va, 1);
#elif defined(__x86_64__) && defined(__SMP__) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25))
    on_each_cpu(KCL_flush_tlb_one, &va, 1, 1);
#else
    flush_tlb_page(vma, va);
#endif

is more correct :)