* [PATCH] [XenLinux]
@ 2007-11-27 16:41 Samuel Thibault
2007-11-27 16:49 ` Christoph Egger
0 siblings, 1 reply; 3+ messages in thread
From: Samuel Thibault @ 2007-11-27 16:41 UTC (permalink / raw)
To: xen-devel
Alpha and x86_64 architectures don't use socketcall.
Fixes bug 1046.
Signed-off-by: Samuel Thibault <samuel.thibault@citrix.com>
diff -r 51b2b0d0921c include/asm-alpha/unistd.h
--- a/include/asm-alpha/unistd.h Wed Nov 21 09:41:11 2007 +0000
+++ b/include/asm-alpha/unistd.h Tue Nov 27 16:40:02 2007 +0000
@@ -573,7 +573,6 @@ type name (type1 arg1,type2 arg2,type3 a
#define __ARCH_WANT_OLD_READDIR
#define __ARCH_WANT_STAT64
#define __ARCH_WANT_SYS_GETHOSTNAME
-#define __ARCH_WANT_SYS_SOCKETCALL
#define __ARCH_WANT_SYS_FADVISE64
#define __ARCH_WANT_SYS_GETPGRP
#define __ARCH_WANT_SYS_OLD_GETRLIMIT
diff -r 51b2b0d0921c include/asm-x86_64/unistd.h
--- a/include/asm-x86_64/unistd.h Wed Nov 21 09:41:11 2007 +0000
+++ b/include/asm-x86_64/unistd.h Tue Nov 27 16:40:02 2007 +0000
@@ -648,7 +648,6 @@ do { \
#define __ARCH_WANT_SYS_SIGNAL
#define __ARCH_WANT_SYS_UTIME
#define __ARCH_WANT_SYS_WAITPID
-#define __ARCH_WANT_SYS_SOCKETCALL
#define __ARCH_WANT_SYS_FADVISE64
#define __ARCH_WANT_SYS_GETPGRP
#define __ARCH_WANT_SYS_LLSEEK
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] [XenLinux]
2007-11-27 16:41 [PATCH] [XenLinux] Samuel Thibault
@ 2007-11-27 16:49 ` Christoph Egger
2007-11-27 17:01 ` Samuel Thibault
0 siblings, 1 reply; 3+ messages in thread
From: Christoph Egger @ 2007-11-27 16:49 UTC (permalink / raw)
To: xen-devel; +Cc: Samuel Thibault
On Tuesday 27 November 2007 17:41:20 Samuel Thibault wrote:
> Alpha and x86_64 architectures don't use socketcall.
> Fixes bug 1046.
Huh? I didn't know someone ported Xen to Alpha.
>
> Signed-off-by: Samuel Thibault <samuel.thibault@citrix.com>
>
> diff -r 51b2b0d0921c include/asm-alpha/unistd.h
> --- a/include/asm-alpha/unistd.h Wed Nov 21 09:41:11 2007 +0000
> +++ b/include/asm-alpha/unistd.h Tue Nov 27 16:40:02 2007 +0000
> @@ -573,7 +573,6 @@ type name (type1 arg1,type2 arg2,type3 a
> #define __ARCH_WANT_OLD_READDIR
> #define __ARCH_WANT_STAT64
> #define __ARCH_WANT_SYS_GETHOSTNAME
> -#define __ARCH_WANT_SYS_SOCKETCALL
> #define __ARCH_WANT_SYS_FADVISE64
> #define __ARCH_WANT_SYS_GETPGRP
> #define __ARCH_WANT_SYS_OLD_GETRLIMIT
> diff -r 51b2b0d0921c include/asm-x86_64/unistd.h
> --- a/include/asm-x86_64/unistd.h Wed Nov 21 09:41:11 2007 +0000
> +++ b/include/asm-x86_64/unistd.h Tue Nov 27 16:40:02 2007 +0000
> @@ -648,7 +648,6 @@ do { \
> #define __ARCH_WANT_SYS_SIGNAL
> #define __ARCH_WANT_SYS_UTIME
> #define __ARCH_WANT_SYS_WAITPID
> -#define __ARCH_WANT_SYS_SOCKETCALL
> #define __ARCH_WANT_SYS_FADVISE64
> #define __ARCH_WANT_SYS_GETPGRP
> #define __ARCH_WANT_SYS_LLSEEK
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
--
AMD Saxony, Dresden, Germany
Operating System Research Center
Legal Information:
AMD Saxony Limited Liability Company & Co. KG
Sitz (Geschäftsanschrift):
Wilschdorfer Landstr. 101, 01109 Dresden, Deutschland
Registergericht Dresden: HRA 4896
vertretungsberechtigter Komplementär:
AMD Saxony LLC (Sitz Wilmington, Delaware, USA)
Geschäftsführer der AMD Saxony LLC:
Dr. Hans-R. Deppe, Thomas McCoy
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] [XenLinux]
2007-11-27 16:49 ` Christoph Egger
@ 2007-11-27 17:01 ` Samuel Thibault
0 siblings, 0 replies; 3+ messages in thread
From: Samuel Thibault @ 2007-11-27 17:01 UTC (permalink / raw)
To: Christoph Egger; +Cc: xen-devel
Christoph Egger, le Tue 27 Nov 2007 17:49:05 +0100, a écrit :
> On Tuesday 27 November 2007 17:41:20 Samuel Thibault wrote:
> > Alpha and x86_64 architectures don't use socketcall.
> > Fixes bug 1046.
>
> Huh? I didn't know someone ported Xen to Alpha.
Oops, I thought __ARCH_WANT_SYS_SOCKETCALL was defined by Xen, but it is
actually provided from upstream, where it should probably be fixed too.
Samuel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-11-27 17:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-27 16:41 [PATCH] [XenLinux] Samuel Thibault
2007-11-27 16:49 ` Christoph Egger
2007-11-27 17:01 ` Samuel Thibault
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.