From: Martin Mares Date: Thu, 30 Oct 2008 19:20:55 +0000 (+0100) Subject: Two more references to CONFIG_PARTMAP_IS_MMAP. X-Git-Tag: holmes-import~227^2~5^2~12 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=9ea5fd42b9c3f3ca6dade01d3b4b5e2571e843ec;p=libucw.git Two more references to CONFIG_PARTMAP_IS_MMAP. --- diff --git a/ucw/partmap.h b/ucw/partmap.h index 1e5d1d5f..6831973a 100644 --- a/ucw/partmap.h +++ b/ucw/partmap.h @@ -27,7 +27,7 @@ void partmap_load(struct partmap *p, ucw_off_t start, uns size); static inline void * partmap_map(struct partmap *p, ucw_off_t start, uns size UNUSED) { -#ifndef CONFIG_PARTMAP_IS_MMAP +#ifndef CONFIG_UCW_PARTMAP_IS_MMAP if (unlikely(!p->start_map || start < p->start_off || (ucw_off_t) (start+size) > p->end_off)) partmap_load(p, start, size); #endif @@ -37,7 +37,7 @@ partmap_map(struct partmap *p, ucw_off_t start, uns size UNUSED) static inline void * partmap_map_forward(struct partmap *p, ucw_off_t start, uns size UNUSED) { -#ifndef CONFIG_PARTMAP_IS_MMAP +#ifndef CONFIG_UCW_PARTMAP_IS_MMAP if (unlikely((ucw_off_t) (start+size) > p->end_off)) partmap_load(p, start, size); #endif