From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36073) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g83HA-0002Re-Ud for qemu-devel@nongnu.org; Thu, 04 Oct 2018 09:02:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g83H5-00068N-E6 for qemu-devel@nongnu.org; Thu, 04 Oct 2018 09:02:44 -0400 Date: Thu, 4 Oct 2018 15:02:25 +0200 From: Kevin Wolf Message-ID: <20181004130225.GE6009@localhost.localdomain> References: <20181003144738.70670-1-vsementsov@virtuozzo.com> <121a81ed-7932-b96c-cc84-60b82725d8e1@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] [Qemu-block] [PATCH] nbd/server: fix NBD_CMD_CACHE List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Vladimir Sementsov-Ogievskiy Cc: Eric Blake , "qemu-devel@nongnu.org" , "qemu-block@nongnu.org" , "pbonzini@redhat.com" , Denis Lunev , qemu-stable Am 03.10.2018 um 17:10 hat Vladimir Sementsov-Ogievskiy geschrieben: > 03.10.2018 17:57, Eric Blake wrote: > > On 10/3/18 9:47 AM, Vladimir Sementsov-Ogievskiy wrote: > >> We should not go to structured-read branch on CACHE command, fix that. > >> > >> Bug intoroduced in bc37b06a5cde24 "nbd/server: introduce NBD_CMD_CACHE" > > > > s/intoroduced/introduced/ > > > >> with the whole feature and affects 3.0.0 release. > > > > Ouch. It's because I don't have an NBD client that can issue the > > command, so the server side got released without sufficient testing. > > Is there some way we could enhance qemu-io as NBD client to issue such > > a command? > > may be, just add qemu-io command, like x-debug-nbd-cmd, which will just > send any nbd command? and prints all server replies? Then we'll be able > to write any unit tests on nbd-server. It's not the first time the > problem arise.. Shouldn't it be easy to write a simple NBD client in Python and then use that for test cases? I don't see why this needs to be in qemu-io, and testing illegal requests is certainly easier with a custom client. Kevin