From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43632) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKnWn-0001db-PJ for qemu-devel@nongnu.org; Mon, 09 Feb 2015 07:33:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YKnWk-0000OG-IW for qemu-devel@nongnu.org; Mon, 09 Feb 2015 07:33:25 -0500 Received: from mx1.redhat.com ([209.132.183.28]:41993) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKnWk-0000OA-BE for qemu-devel@nongnu.org; Mon, 09 Feb 2015 07:33:22 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t19CXL7C020995 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Mon, 9 Feb 2015 07:33:21 -0500 Message-ID: <54D8A90C.10400@redhat.com> Date: Mon, 09 Feb 2015 13:33:16 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1423256778-3340-1-git-send-email-mreitz@redhat.com> <1423256778-3340-2-git-send-email-mreitz@redhat.com> In-Reply-To: <1423256778-3340-2-git-send-email-mreitz@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 1/3] nbd: Drop BDS backpointer List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Max Reitz , qemu-devel@nongnu.org Cc: Kevin Wolf , Stefan Hajnoczi On 06/02/2015 22:06, Max Reitz wrote: > @@ -889,7 +889,7 @@ void nbd_client_put(NBDClient *client) > } > } > > -void nbd_client_close(NBDClient *client) > +static void client_close(NBDClient *client) > { > if (client->closing) { > return; Probably NBDClient should be renamed to NBDServerSession. Can be done on top. Reviewed-by: Paolo Bonzini Paolo