Skip to content

Commit

Permalink
[PATCH] v850: Define pfn_valid
Browse files Browse the repository at this point in the history
Signed-off-by: Miles Bader <miles@gnu.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Miles Bader authored and Linus Torvalds committed Jul 27, 2005
1 parent e63b68d commit e9c3d6b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/asm-v850/page.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* include/asm-v850/page.h -- VM ops
*
* Copyright (C) 2001,02,03 NEC Electronics Corporation
* Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
* Copyright (C) 2001,02,03,05 NEC Electronics Corporation
* Copyright (C) 2001,02,03,05 Miles Bader <miles@gnu.org>
*
* This file is subject to the terms and conditions of the GNU General
* Public License. See the file COPYING in the main directory of this
Expand Down Expand Up @@ -132,6 +132,7 @@ extern __inline__ int get_order (unsigned long size)

#define pfn_to_page(pfn) virt_to_page (pfn_to_virt (pfn))
#define page_to_pfn(page) virt_to_pfn (page_to_virt (page))
#define pfn_valid(pfn) ((pfn) < max_mapnr)

#define virt_addr_valid(kaddr) \
(((void *)(kaddr) >= (void *)PAGE_OFFSET) && MAP_NR (kaddr) < max_mapnr)
Expand Down

0 comments on commit e9c3d6b

Please sign in to comment.