summaryrefslogtreecommitdiffstats
path: root/include/asm-s390x/misc390.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-s390x/misc390.h')
-rw-r--r--include/asm-s390x/misc390.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/asm-s390x/misc390.h b/include/asm-s390x/misc390.h
new file mode 100644
index 000000000..3a48a7385
--- /dev/null
+++ b/include/asm-s390x/misc390.h
@@ -0,0 +1,15 @@
+/*
+ * include/asm-s390/misc390.h
+ *
+ * S390 version
+ * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
+ * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
+ */
+
+#define allocaligned2(type,name,number,align) \
+ __u8 name##buff[(sizeof(type)*(number+1))-1]; \
+ type *name=(type *)(((__u32)(&name##buff[align-1]))&(-align))
+
+#define allocaligned(type,name,number) allocaligned2(type,name,number,__alignof__(type))
+
+extern void s390_daemonize(char *name,unsigned long mask,int use_init_fs);