summaryrefslogtreecommitdiff
path: root/include/linux/vcache.h
diff options
context:
space:
mode:
authorPatrick Mochel <mochel@osdl.org>2003-09-05 00:52:09 -0700
committerPatrick Mochel <mochel@osdl.org>2003-09-05 00:52:09 -0700
commita01cb2dfa8e91cb773483b2d83c778407515c876 (patch)
tree638647b50108536fef8d62a271b4d8096e33c1d7 /include/linux/vcache.h
parentf5b61a1fb00721206413b25f64e78edfb6b87777 (diff)
parent7c2dd86b82e5d4e44a41c871b9d8cdad5317645f (diff)
Merge
Diffstat (limited to 'include/linux/vcache.h')
-rw-r--r--include/linux/vcache.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/linux/vcache.h b/include/linux/vcache.h
deleted file mode 100644
index 5708fe6a908a..000000000000
--- a/include/linux/vcache.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * virtual => physical mapping cache support.
- */
-#ifndef _LINUX_VCACHE_H
-#define _LINUX_VCACHE_H
-
-typedef struct vcache_s {
- unsigned long address;
- struct mm_struct *mm;
- struct list_head hash_entry;
- void (*callback)(struct vcache_s *data, struct page *new_page);
-} vcache_t;
-
-extern spinlock_t vcache_lock;
-
-extern void __attach_vcache(vcache_t *vcache,
- unsigned long address,
- struct mm_struct *mm,
- void (*callback)(struct vcache_s *data, struct page *new_page));
-
-extern void __detach_vcache(vcache_t *vcache);
-
-extern void invalidate_vcache(unsigned long address, struct mm_struct *mm,
- struct page *new_page);
-
-#endif