Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932456AbXBSSbi (ORCPT ); Mon, 19 Feb 2007 13:31:38 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932459AbXBSSbi (ORCPT ); Mon, 19 Feb 2007 13:31:38 -0500 Received: from e1.ny.us.ibm.com ([32.97.182.141]:52374 "EHLO e1.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932456AbXBSSbh (ORCPT ); Mon, 19 Feb 2007 13:31:37 -0500 From: Adam Litke Subject: [PATCH 1/7] Introduce the pagetable_operations and associated helper macros. Date: Mon, 19 Feb 2007 10:31:34 -0800 To: linux-mm@kvack.org Cc: linux-kernel@vger.kernel.org, agl@us.ibm.com Message-Id: <20070219183133.27318.92920.stgit@localhost.localdomain> In-Reply-To: <20070219183123.27318.27319.stgit@localhost.localdomain> References: <20070219183123.27318.27319.stgit@localhost.localdomain> Content-Type: text/plain; charset=utf-8; format=fixed Content-Transfer-Encoding: 8bit User-Agent: StGIT/0.11 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1937 Lines: 55 Signed-off-by: Adam Litke --- include/linux/mm.h | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/include/linux/mm.h b/include/linux/mm.h index 2d2c08d..a2fa66d 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -98,6 +98,7 @@ struct vm_area_struct { /* Function pointers to deal with this struct. */ struct vm_operations_struct * vm_ops; + struct pagetable_operations_struct * pagetable_ops; /* Information about our backing store: */ unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE @@ -218,6 +219,30 @@ struct vm_operations_struct { }; struct mmu_gather; + +struct pagetable_operations_struct { + int (*fault)(struct mm_struct *mm, + struct vm_area_struct *vma, + unsigned long address, int write_access); + int (*copy_vma)(struct mm_struct *dst, struct mm_struct *src, + struct vm_area_struct *vma); + int (*pin_pages)(struct mm_struct *mm, struct vm_area_struct *vma, + struct page **pages, struct vm_area_struct **vmas, + unsigned long *position, int *length, int i); + void (*change_protection)(struct vm_area_struct *vma, + unsigned long address, unsigned long end, pgprot_t newprot); + unsigned long (*unmap_page_range)(struct vm_area_struct *vma, + unsigned long address, unsigned long end, long *zap_work); + void (*free_pgtable_range)(struct mmu_gather **tlb, + unsigned long addr, unsigned long end, + unsigned long floor, unsigned long ceiling); +}; + +#define has_pt_op(vma, op) \ + ((vma)->pagetable_ops && (vma)->pagetable_ops->op) +#define pt_op(vma, call) \ + ((vma)->pagetable_ops->call) + struct inode; #define page_private(page) ((page)->private) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/