aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavem <davem>2001-11-30 01:00:30 +0000
committerdavem <davem>2001-11-30 01:00:30 +0000
commit084e7204f3170e5f434c3b8129c4deec934e9ba4 (patch)
treeaf4707b5b621925b752c753e6ab29f4276d8b0d2
parent8773e31ae1c918948bc928599c0884dd23f95feb (diff)
downloadnetdev-vger-cvs-084e7204f3170e5f434c3b8129c4deec934e9ba4.tar.gz
copy_highpage can now die, no more references exist
-rw-r--r--include/linux/highmem.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/highmem.h b/include/linux/highmem.h
index 1e2b8b1f4..b850d9b00 100644
--- a/include/linux/highmem.h
+++ b/include/linux/highmem.h
@@ -93,15 +93,4 @@ static inline void copy_user_highpage(struct page *to, struct page *from, unsign
kunmap_atomic(vto, KM_USER1);
}
-static inline void copy_highpage(struct page *to, struct page *from)
-{
- char *vfrom, *vto;
-
- vfrom = kmap(from);
- vto = kmap(to);
- copy_page(vto, vfrom);
- kunmap(from);
- kunmap(to);
-}
-
#endif /* _LINUX_HIGHMEM_H */