tlbbatch.h 332 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ARCH_X86_TLBBATCH_H
  3. #define _ARCH_X86_TLBBATCH_H
  4. #include <linux/cpumask.h>
  5. struct arch_tlbflush_unmap_batch {
  6. /*
  7. * Each bit set is a CPU that potentially has a TLB entry for one of
  8. * the PFNs being flushed..
  9. */
  10. struct cpumask cpumask;
  11. };
  12. #endif /* _ARCH_X86_TLBBATCH_H */