Prev: [PATCH 23/37] x86, lmb: Use lmb_memory_size()/lmb_free_memory_size() to get correct dma_reserve
Next: [PATCH 02/37] lmb: Prepare x86 to use lmb to replace early_res
From: Yinghai Lu on 14 May 2010 16:00 will used by x86 lmb_find_area_node and nobootmem replacement Signed-off-by: Yinghai Lu <yinghai(a)kernel.org> --- include/linux/lmb.h | 1 + lib/lmb.c | 2 -- 2 files changed, 1 insertions(+), 2 deletions(-) diff --git a/include/linux/lmb.h b/include/linux/lmb.h index d88c92d..d959d23 100644 --- a/include/linux/lmb.h +++ b/include/linux/lmb.h @@ -19,6 +19,7 @@ #include <asm/lmb.h> #define INIT_LMB_REGIONS 128 +#define LMB_ERROR (~(phys_addr_t)0) struct lmb_region { phys_addr_t base; diff --git a/lib/lmb.c b/lib/lmb.c index 2bdbe87..3caf58c 100644 --- a/lib/lmb.c +++ b/lib/lmb.c @@ -26,8 +26,6 @@ int lmb_debug; static struct lmb_region lmb_memory_init_regions[INIT_LMB_REGIONS + 1]; struct lmb_region lmb_reserved_init_regions[INIT_LMB_REGIONS + 1]; -#define LMB_ERROR (~(phys_addr_t)0) - /* inline so we don't get a warning when pr_debug is compiled out */ static inline const char *lmb_type_name(struct lmb_type *type) { -- 1.6.4.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |