Update of /cvsroot/linux-mips/linux/include/asm-mips64
In directory usw-pr-cvs1:/tmp/cvs-serv13849/include/asm-mips64
Modified Files:
pgtable.h processor.h spinlock.h
Removed Files:
ioctls.h
Log Message:
Synced to 2.4.10.
Index: pgtable.h
===================================================================
RCS file: /cvsroot/linux-mips/linux/include/asm-mips64/pgtable.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- pgtable.h 2001/09/06 16:54:14 1.4
+++ pgtable.h 2001/10/19 21:19:40 1.5
@@ -816,4 +816,9 @@
#endif /* !defined (_LANGUAGE_ASSEMBLY) */
+/*
+ * No page table caches to initialise
+ */
+#define pgtable_cache_init() do { } while (0)
+
#endif /* _ASM_PGTABLE_H */
Index: processor.h
===================================================================
RCS file: /cvsroot/linux-mips/linux/include/asm-mips64/processor.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- processor.h 2001/10/09 21:54:37 1.3
+++ processor.h 2001/10/19 21:19:40 1.4
@@ -207,9 +207,6 @@
#endif /* !defined (_LANGUAGE_ASSEMBLY) */
-#define INIT_MMAP { &init_mm, KSEG0, KSEG1, NULL, PAGE_SHARED, \
- VM_READ | VM_WRITE | VM_EXEC, 1, NULL, NULL }
-
#define INIT_THREAD { \
/* \
* saved main processor registers \
Index: spinlock.h
===================================================================
RCS file: /cvsroot/linux-mips/linux/include/asm-mips64/spinlock.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- spinlock.h 2001/10/17 17:17:54 1.1
+++ spinlock.h 2001/10/19 21:19:40 1.2
@@ -95,6 +95,8 @@
#define RW_LOCK_UNLOCKED (rwlock_t) { 0 }
+#define rwlock_init(x) do { *(x) = RW_LOCK_UNLOCKED; } while(0)
+
static inline void read_lock(rwlock_t *rw)
{
unsigned int tmp;
--- ioctls.h DELETED ---
|