All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] h8300 build error fix
@ 2005-06-03 19:22 Yoshinori Sato
  0 siblings, 0 replies; only message in thread
From: Yoshinori Sato @ 2005-06-03 19:22 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Because definitions was insufficient, I added it.

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>

--- linux-2.6.12-rc5/include/asm-h8300/kmap_types.h	2005-05-25 12:31:20.000000000 +0900
+++ linux-2.6.12-rc5-ysato/include/asm-h8300/kmap_types.h	2005-06-03 21:24:10.000000000 +0900
@@ -1,5 +1,5 @@
-#ifndef _ASM_KMAP_TYPES_H
-#define _ASM_KMAP_TYPES_H
+#ifndef _ASM_H8300_KMAP_TYPES_H
+#define _ASM_H8300_KMAP_TYPES_H
 
 enum km_type {
 	KM_BOUNCE_READ,
@@ -13,6 +13,8 @@
 	KM_PTE1,
 	KM_IRQ0,
 	KM_IRQ1,
+	KM_SOFTIRQ0,
+	KM_SOFTIRQ1,
 	KM_TYPE_NR
 };
 
diff -ru linux-2.6.12-rc5/include/asm-h8300/mman.h linux-2.6.12-rc5-ysato/include/asm-h8300/mman.h
--- linux-2.6.12-rc5/include/asm-h8300/mman.h	2005-05-25 12:31:20.000000000 +0900
+++ linux-2.6.12-rc5-ysato/include/asm-h8300/mman.h	2005-06-04 00:45:33.000000000 +0900
@@ -4,6 +4,7 @@
 #define PROT_READ	0x1		/* page can be read */
 #define PROT_WRITE	0x2		/* page can be written */
 #define PROT_EXEC	0x4		/* page can be executed */
+#define PROT_SEM	0x8		/* page may be used for atomic ops */
 #define PROT_NONE	0x0		/* page can not be accessed */
 #define PROT_GROWSDOWN	0x01000000	/* mprotect flag: extend change to start of growsdown vma */
 #define PROT_GROWSUP	0x02000000	/* mprotect flag: extend change to end of growsup vma */
@@ -19,6 +20,8 @@
 #define MAP_EXECUTABLE	0x1000		/* mark it as an executable */
 #define MAP_LOCKED	0x2000		/* pages are locked */
 #define MAP_NORESERVE	0x4000		/* don't check for reservations */
+#define MAP_POPULATE	0x8000		/* populate (prefault) pagetables */
+#define MAP_NONBLOCK	0x10000		/* do not block on IO */
 
 #define MS_ASYNC	1		/* sync memory asynchronously */
 #define MS_INVALIDATE	2		/* invalidate the caches */

-- 
Yoshinori Sato at CodeFest Japan 2005
<ysato@users.sourceforge.jp>

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-06-03 19:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-03 19:22 [PATCH] h8300 build error fix Yoshinori Sato

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.