From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46791) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Stg5q-0007n2-UN for qemu-devel@nongnu.org; Tue, 24 Jul 2012 10:28:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Stg5k-00019N-RD for qemu-devel@nongnu.org; Tue, 24 Jul 2012 10:28:10 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:57993) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Stg5k-00019H-Kk for qemu-devel@nongnu.org; Tue, 24 Jul 2012 10:28:04 -0400 Received: by pbbro12 with SMTP id ro12so12570994pbb.4 for ; Tue, 24 Jul 2012 07:28:04 -0700 (PDT) From: Jing Huang Date: Tue, 24 Jul 2012 22:28:58 +0000 Message-Id: <1343168938-9527-1-git-send-email-jing.huang.pku@gmail.com> In-Reply-To: References: Subject: [Qemu-devel] [PATCH V5 0/3] Fix ping issues in linux-user guest List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, riku.voipio@iki.fi The following changes since commit a21143486b9c6d7a50b7b62877c02b3c686943cb: Merge remote-tracking branch 'stefanha/net' into staging These patches fix ping issues in linux-user guest: - do_sebdrecv() could not pass sockaddr to target after executing recvmsg(). Therefore, ping will shows: "64 bytes from 0.0.0.0: icmp_req=1 ttl=64 time=1.16 ms" for example. - do_setsockopt() do not support SOL_RAW option which which is used in ping program. - host_to_target_cmsg() report unsupported ancillary data qemu-log message when cmsg_type equals SO_TIMESTAMP. Jing. Reviewed-by: Peter Maydell *** BLURB HERE *** Jing Huang (3): linux-user: pass sockaddr from host to target linux-user: make do_setsockopt support SOL_RAW ICMP_FILTER socket option linux-user: make host_to_target_cmsg support SO_TIMESTAMP cmsg_type linux-user/syscall.c | 55 +++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 48 insertions(+), 7 deletions(-) -- 1.7.8.6