summaryrefslogtreecommitdiffstats
path: root/include/linux/highmem.h
diff options
context:
space:
mode:
authorUlf Carlsson <md1ulfc@mdstud.chalmers.se>2000-07-04 05:50:21 +0000
committerUlf Carlsson <md1ulfc@mdstud.chalmers.se>2000-07-04 05:50:21 +0000
commit6400754b0366904624afafbd10306198ff0c3836 (patch)
tree0d9498d6d8443fd38c802c7b04fdf6a593eed6cf /include/linux/highmem.h
parent3e414096429d55fbc8116171bba3487647bbe638 (diff)
kmap() has to be a function since page_address(page) may do nothing
else than return the page->virtual.
Diffstat (limited to 'include/linux/highmem.h')
-rw-r--r--include/linux/highmem.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/highmem.h b/include/linux/highmem.h
index 3049ad259..1f59c2926 100644
--- a/include/linux/highmem.h
+++ b/include/linux/highmem.h
@@ -23,7 +23,11 @@ extern struct buffer_head * create_bounce(int rw, struct buffer_head * bh_orig);
extern inline unsigned int nr_free_highpages(void) { return 0; }
#define prepare_highmem_swapout(page) page
#define replace_with_highmem(page) page
-#define kmap(page) page_address(page)
+
+static __inline__ unsigned long kmap(struct page * page) {
+ return page_address(page);
+}
+
#define kunmap(page) do { } while (0)
#endif /* CONFIG_HIGHMEM */