From 7f91ddc13588a66d2268391cbbd73d8268f92ef1 Mon Sep 17 00:00:00 2001 From: Gary King Date: Tue, 12 Oct 2010 18:10:31 -0700 Subject: Revert "[ARM] mm: add page allocator for modifying cache attributes" This reverts commit 54d414570432ce07fa1a14b657f53bed752e3d7e. Change-Id: I8e5cf6ef3555129da9741ef52a1e6a3a772ad588 Signed-off-by: Gary King --- arch/arm/include/asm/attrib_alloc.h | 47 ------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 arch/arm/include/asm/attrib_alloc.h (limited to 'arch/arm/include') diff --git a/arch/arm/include/asm/attrib_alloc.h b/arch/arm/include/asm/attrib_alloc.h deleted file mode 100644 index bd21761810f5..000000000000 --- a/arch/arm/include/asm/attrib_alloc.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * arch/arm/include/asm/attrib_alloc.h - * - * Page allocator with custom cache attributes - * - * Copyright (c) 2010, NVIDIA Corporation. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ - -#ifndef __ARCH_ARM_ATTRIB_ALLOC_H -#define __ARCH_ARM_ATTRIB_ALLOC_H - -#include -#include - -struct page *arm_attrib_alloc_pages_exact_node(int nid, gfp_t gfp, - size_t size, pgprot_t prot); - -void arm_attrib_free_pages_exact(struct page *page, size_t size); - -static inline -struct page *arm_attrib_alloc_pages_exact(gfp_t gfp, size_t size, - pgprot_t prot) -{ - return arm_attrib_alloc_pages_exact_node(-1, gfp, size, prot); -} - -#define arm_attrib_alloc_page(gfp, prot) \ - arm_attrib_alloc_pages_exact((gfp), PAGE_SIZE, (prot)) - -#define arm_attrib_free_page(page) \ - arm_attrib_free_pages_exact((page), PAGE_SIZE) - -#endif /* __ARCH_ARM_ATTRIB_ALLOC_H */ -- cgit v1.2.3