From patchwork Wed Oct 2 10:23:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Ottlik X-Patchwork-Id: 279680 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6EFF02C0094 for ; Wed, 2 Oct 2013 20:24:46 +1000 (EST) Received: from localhost ([::1]:35173 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRJbo-0002VM-G6 for incoming@patchwork.ozlabs.org; Wed, 02 Oct 2013 06:24:44 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRJbE-0002Jq-8y for qemu-devel@nongnu.org; Wed, 02 Oct 2013 06:24:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VRJb2-0005iy-Mu for qemu-devel@nongnu.org; Wed, 02 Oct 2013 06:24:08 -0400 Received: from ex-e-2.perimeter.fzi.de ([141.21.8.251]:58110) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRJb2-0005ij-Gl for qemu-devel@nongnu.org; Wed, 02 Oct 2013 06:23:56 -0400 Received: from ex-ca-ht-1.fzi.de (141.21.32.98) by ex-e-2.perimeter.fzi.de (141.21.8.251) with Microsoft SMTP Server (TLS) id 14.3.158.1; Wed, 2 Oct 2013 12:23:52 +0200 Received: from orcrist.fzi.de (141.21.45.20) by ex-ca-ht-1.fzi.de (141.21.32.98) with Microsoft SMTP Server id 14.3.158.1; Wed, 2 Oct 2013 12:23:55 +0200 Received: by orcrist.fzi.de (Postfix, from userid 330838105) id 5AAE21C072C; Wed, 2 Oct 2013 12:23:55 +0200 (CEST) From: Sebastian Ottlik To: Date: Wed, 2 Oct 2013 12:23:13 +0200 Message-ID: <1380709396-6063-3-git-send-email-ottlik@fzi.de> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1380709396-6063-1-git-send-email-ottlik@fzi.de> References: <1380709396-6063-1-git-send-email-ottlik@fzi.de> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Windows 7 or 8 [fuzzy] X-Received-From: 141.21.8.251 Cc: aliguori@us.ibm.com, jan.kiszka@siemens.com, ottlik@fzi.de, stefanha@redhat.com, sw@weilnetz.de Subject: [Qemu-devel] [PATCH v6 2/5] gdbstub: call socket_set_fast_reuse instead of setting SO_REUSEADDR X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org SO_REUSEADDR should be avoided on Windows but is desired on other operating systems. So instead of setting it we call socket_set_fast_reuse that will result in the appropriate behaviour on all operating systems. Signed-off-by: Sebastian Ottlik --- gdbstub.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gdbstub.c b/gdbstub.c index 2b7f22b..0e5a3f5 100644 --- a/gdbstub.c +++ b/gdbstub.c @@ -1553,7 +1553,7 @@ static void gdb_accept(void) static int gdbserver_open(int port) { struct sockaddr_in sockaddr; - int fd, val, ret; + int fd, ret; fd = socket(PF_INET, SOCK_STREAM, 0); if (fd < 0) { @@ -1564,9 +1564,7 @@ static int gdbserver_open(int port) fcntl(fd, F_SETFD, FD_CLOEXEC); #endif - /* allow fast reuse */ - val = 1; - qemu_setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val)); + socket_set_fast_reuse(fd); sockaddr.sin_family = AF_INET; sockaddr.sin_port = htons(port);