#include <linux/highmem.h>
#include <linux/kernel.h>
#include <linux/mmdebug.h>
#include <linux/mm_types.h>
#include <linux/pagemap.h>
#include <linux/rcupdate.h>
#ifdef HAVE_GENERIC_MMU_GATHER
static bool tlb_next_batch(struct mmu_gather *tlb)
struct mmu_gather_batch *batch;
tlb->active = batch->next;
if (tlb->batch_count == MAX_GATHER_BATCH_COUNT)
batch = (void *)__get_free_pages(GFP_NOWAIT | __GFP_NOWARN, 0);
batch->max = MAX_GATHER_BATCH;
tlb->active->next = batch;
void arch_tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm,
unsigned long start, unsigned long end)
tlb->fullmm = !(start | (end+1));
tlb->local.max = ARRAY_SIZE(tlb->__pages);
tlb->active = &tlb->local;
#ifdef CONFIG_HAVE_RCU_TABLE_FREE