login
Header Space

 
 

[PATCH 1/22] Introducing asm/syscalls.h

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: LKML <linux-kernel@...>, Ingo Molnar <mingo@...>, kernelnewbies <kernelnewbies@...>, David Woodhouse <dwmw2@...>, <rth@...>, <rmk@...>, <hskinnemoen@...>, <cooloney@...>, <starvik@...>, <dhowells@...>, <ysato@...>, <tony.luck@...>, <takata@...>, <geert@...>, <ralf@...>, <matthew@...>, <schwidefsky@...>, <lethal@...>, <chris@...>
Date: Sunday, July 20, 2008 - 6:26 pm

Forward declartion of struct {old,}old_utsname in linux/syscalls.h
for system calls like sys_uname, sys_olduname

Signed-off-by: Jaswinder Singh <jaswinder@infradead.org>
---
 include/linux/syscalls.h         |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)
 create mode 100644 include/asm-alpha/syscalls.h
 create mode 100644 include/asm-arm/syscalls.h
 create mode 100644 include/asm-avr32/syscalls.h
 create mode 100644 include/asm-blackfin/syscalls.h
 create mode 100644 include/asm-cris/syscalls.h
 create mode 100644 include/asm-frv/syscalls.h
 create mode 100644 include/asm-h8300/syscalls.h
 create mode 100644 include/asm-ia64/syscalls.h
 create mode 100644 include/asm-m32r/syscalls.h
 create mode 100644 include/asm-m68k/syscalls.h
 create mode 100644 include/asm-m68knommu/syscalls.h
 create mode 100644 include/asm-mips/syscalls.h
 create mode 100644 include/asm-mn10300/syscalls.h
 create mode 100644 include/asm-parisc/syscalls.h
 create mode 100644 include/asm-s390/syscalls.h
 create mode 100644 include/asm-sh/syscalls.h
 create mode 100644 include/asm-sparc/syscalls.h
 create mode 100644 include/asm-um/syscalls.h
 create mode 100644 include/asm-v850/syscalls.h
 create mode 100644 include/asm-x86/syscalls.h
 create mode 100644 include/asm-xtensa/syscalls.h

diff --git a/include/asm-alpha/syscalls.h b/include/asm-alpha/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-arm/syscalls.h b/include/asm-arm/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-avr32/syscalls.h b/include/asm-avr32/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-blackfin/syscalls.h b/include/asm-blackfin/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-cris/syscalls.h b/include/asm-cris/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-frv/syscalls.h b/include/asm-frv/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-h8300/syscalls.h b/include/asm-h8300/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-ia64/syscalls.h b/include/asm-ia64/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-m32r/syscalls.h b/include/asm-m32r/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-m68k/syscalls.h b/include/asm-m68k/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-m68knommu/syscalls.h b/include/asm-m68knommu/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-mips/syscalls.h b/include/asm-mips/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-mn10300/syscalls.h b/include/asm-mn10300/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-parisc/syscalls.h b/include/asm-parisc/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-s390/syscalls.h b/include/asm-s390/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-sh/syscalls.h b/include/asm-sh/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-sparc/syscalls.h b/include/asm-sparc/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-um/syscalls.h b/include/asm-um/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-v850/syscalls.h b/include/asm-v850/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-x86/syscalls.h b/include/asm-x86/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/asm-xtensa/syscalls.h b/include/asm-xtensa/syscalls.h
new file mode 100644
index 0000000..e69de29
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
index 0522f36..829556e 100644
--- a/include/linux/syscalls.h
+++ b/include/linux/syscalls.h
@@ -54,6 +54,8 @@ struct compat_stat;
 struct compat_timeval;
 struct robust_list_head;
 struct getcpu_cache;
+struct oldold_utsname;
+struct old_utsname;
 
 #include <linux/types.h>
 #include <linux/aio_abi.h>
@@ -65,6 +67,8 @@ struct getcpu_cache;
 #include <linux/quota.h>
 #include <linux/key.h>
 
+#include <asm/syscalls.h>
+
 asmlinkage long sys_time(time_t __user *tloc);
 asmlinkage long sys_stime(time_t __user *tptr);
 asmlinkage long sys_gettimeofday(struct timeval __user *tv,
-- 
1.5.5.1



--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 0/22] Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 6:21 pm)
Re: [PATCH 0/22] Introducing asm/syscalls.h, Alexey Dobriyan, (Sun Jul 20, 8:28 pm)
Re: [PATCH 0/22] Introducing asm/syscalls.h, Jaswinder Singh, (Mon Jul 21, 1:45 am)
Re: [PATCH 0/22] Introducing asm/syscalls.h, Matthew Wilcox, (Mon Jul 21, 1:55 am)
Re: [PATCH 0/22] Introducing asm/syscalls.h, Jaswinder Singh, (Mon Jul 21, 2:07 am)
Re: [PATCH 0/22] Introducing asm/syscalls.h, Matthew Wilcox, (Mon Jul 21, 2:16 am)
Re: [PATCH 0/22] Introducing asm/syscalls.h, Jaswinder Singh, (Mon Jul 21, 2:59 am)
[PATCH 1/22] Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 6:26 pm)
[PATCH 2/22] alpha: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 6:27 pm)
[PATCH 3/22] arm: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 6:30 pm)
[PATCH 4/22] avr32: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:20 pm)
Re: [PATCH 4/22] avr32: Introducing asm/syscalls.h, Haavard Skinnemoen, (Thu Jul 24, 9:09 am)
Re: [PATCH 4/22] avr32: Introducing asm/syscalls.h, Jaswinder Singh, (Thu Jul 24, 11:07 am)
Re: [PATCH 4/22] avr32: Introducing asm/syscalls.h, Haavard Skinnemoen, (Thu Jul 24, 12:49 pm)
[PATCH 5/22] blackfin: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:21 pm)
[PATCH 6/22] cris: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:25 pm)
[PATCH 7/22] frv: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:31 pm)
[PATCH 8/22] h8300: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:32 pm)
[PATCH 9/22] ia64: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:33 pm)
Re: [PATCH 9/22] ia64: Introducing asm/syscalls.h, Matthew Wilcox, (Sun Jul 20, 8:19 pm)
Re: [PATCH 9/22] ia64: Introducing asm/syscalls.h, Jaswinder Singh, (Mon Jul 21, 1:19 am)
[PATCH 10/22] m32r: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:35 pm)
[PATCH 11/22] m68k: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:37 pm)
[PATCH 12/22] m68knommu: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:39 pm)
[PATCH 13/22] mips: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:40 pm)
[PATCH 14/22] mn10300: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:42 pm)
[PATCH 15/22] parisc: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:46 pm)
[PATCH 16/22] s390: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:50 pm)
[PATCH 17/22] sh: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:52 pm)
[PATCH 18/22] sparc: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:53 pm)
[PATCH 19/22] um: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:54 pm)
[PATCH 20/22] v850: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:55 pm)
[PATCH 21/22] x86: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 7:58 pm)
[PATCH 22/22] xtensa: Introducing asm/syscalls.h, Jaswinder Singh, (Sun Jul 20, 8:00 pm)
speck-geostationary