qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Jun Peng" <jun7903cn@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] define sock_type (patch for HOST_MIPS)
Date: Sat, 23 Jun 2007 22:37:07 +0800	[thread overview]
Message-ID: <ab4614040706230737l5b6f60fbj44dd42d15dc58bcb@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 68 bytes --]

Hello.

This patch is made for HOST_MIPS, to fix a sock_type error.

[-- Attachment #2: qemu-20070623-socket.patch --]
[-- Type: text/plain, Size: 1049 bytes --]

diff -Nurb qemu-20070623/linux-user/socket.h qemu-loongson/linux-user/socket.h
--- qemu-20070623/linux-user/socket.h	2006-06-24 23:06:03.000000000 +0800
+++ qemu-loongson/linux-user/socket.h	2007-06-23 21:44:48.000000000 +0800
@@ -135,4 +135,14 @@
 
 	#define TARGET_SO_PEERSEC              31
 
+	enum sock_type {
+	       TARGET_SOCK_STREAM      = 1,
+	       TARGET_SOCK_DGRAM       = 2,
+	       TARGET_SOCK_RAW = 3,
+	       TARGET_SOCK_RDM = 4,
+	       TARGET_SOCK_SEQPACKET   = 5,
+	       //TARGET_SOCK_DCCP        = 6,
+	       TARGET_SOCK_PACKET      = 10,
+	};
+
 #endif
diff -Nurb qemu-20070623/linux-user/syscall.c qemu-loongson/linux-user/syscall.c
--- qemu-20070623/linux-user/syscall.c	2007-06-23 16:39:14.000000000 +0800
+++ qemu-loongson/linux-user/syscall.c	2007-06-23 21:44:48.000000000 +0800
@@ -869,7 +869,7 @@
 
 static long do_socket(int domain, int type, int protocol)
 {
-#if defined(TARGET_MIPS)
+#if defined(TARGET_MIPS) || defined(HOST_MIPS)
     switch(type) {
     case TARGET_SOCK_DGRAM:
         type = SOCK_DGRAM;

                 reply	other threads:[~2007-06-23 14:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ab4614040706230737l5b6f60fbj44dd42d15dc58bcb@mail.gmail.com \
    --to=jun7903cn@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).