All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] xen/arm: add lower-bound check in mfn_valid
@ 2013-08-23  9:08 Jaeyong Yoo
  2013-08-23  9:17 ` Ian Campbell
  2013-08-26 14:45 ` Julien Grall
  0 siblings, 2 replies; 4+ messages in thread
From: Jaeyong Yoo @ 2013-08-23  9:08 UTC (permalink / raw)
  To: xen-devel; +Cc: Jaeyong Yoo

mfn_valid only checks the upper-bound of mfn (max_page).
Add the lower-bound check of mfn (frametable_base_mfn).

Signed-off-by: Jaeyong Yoo <jaeyong.yoo@samsung.com>
---
 xen/include/asm-arm/mm.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xen/include/asm-arm/mm.h b/xen/include/asm-arm/mm.h
index 27284d0..97c2ee0 100644
--- a/xen/include/asm-arm/mm.h
+++ b/xen/include/asm-arm/mm.h
@@ -190,7 +190,7 @@ static inline void __iomem *ioremap_wc(paddr_t start, size_t len)
 
 #define mfn_valid(mfn)        ({                                              \
     unsigned long __m_f_n = (mfn);                                            \
-    likely(__m_f_n < max_page);                                               \
+    likely(__m_f_n >= frametable_base_mfn && __m_f_n < max_page);             \
 })
 
 #define max_pdx                 max_page
-- 
1.8.1.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-08-27 13:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-23  9:08 [PATCH v2] xen/arm: add lower-bound check in mfn_valid Jaeyong Yoo
2013-08-23  9:17 ` Ian Campbell
2013-08-26 14:45 ` Julien Grall
2013-08-27 13:46   ` Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.