From patchwork Wed Apr 6 02:02:08 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Blake X-Patchwork-Id: 606802 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3qfprr6jJHz9t5g for ; Wed, 6 Apr 2016 12:02:36 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=comcast.net header.i=@comcast.net header.b=lyCFPXqD; dkim-atps=neutral Received: from localhost ([::1]:40224 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ancnj-0007sY-5o for incoming@patchwork.ozlabs.org; Tue, 05 Apr 2016 22:02:35 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34986) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ancnV-0007bA-DH for qemu-devel@nongnu.org; Tue, 05 Apr 2016 22:02:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ancnS-0007PI-7k for qemu-devel@nongnu.org; Tue, 05 Apr 2016 22:02:21 -0400 Received: from resqmta-po-06v.sys.comcast.net ([2001:558:fe16:19:96:114:154:165]:46123) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ancnR-0007O6-Vm for qemu-devel@nongnu.org; Tue, 05 Apr 2016 22:02:18 -0400 Received: from resomta-po-13v.sys.comcast.net ([96.114.154.237]) by comcast with SMTP id ncnEazl5L9sFTncnRa6aV0; Wed, 06 Apr 2016 02:02:17 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20140121; t=1459908137; bh=epmqE7TyXfNXEh3wFaPm5VDM7sJsmWM7uKm4RNmRDQk=; h=Received:Received:From:To:Subject:Date:Message-Id; b=lyCFPXqDE8++s0MQGELbsE/TzOejSzcEhVJNbuD9Pr+IhmoN3aGSb850XJOeOctWr 2EQL/O39m7tJLX88vUMeF5KIE4moOoBng40y8TBNva+3rZFgSRblxeMytZdfroEo6P ycR82at6q9HKRcb+LJMWrYdeZoTr/+LwaPnv5G0n2zu0RQSsel/ftrVx47+KNA34gy o8olfMgi1PgCMU/Vj0eea0ZsemMkiaJyKR9c9OnsGOWn9PZRq8Vs5XGF+o+9G082WO B/5QOKPZYIrFqpa0xKmUu3dYawaJMokU+Bgn0KGmhwjfAUpIz2wlj/hZSUaCK9ffsT n9Yhf+BTDU+hg== Received: from red.redhat.com ([24.10.254.122]) by resomta-po-13v.sys.comcast.net with comcast id eq2D1s0072fD5rL01q2GX7; Wed, 06 Apr 2016 02:02:16 +0000 From: Eric Blake To: qemu-devel@nongnu.org Date: Tue, 5 Apr 2016 20:02:08 -0600 Message-Id: <1459908128-11925-1-git-send-email-eblake@redhat.com> X-Mailer: git-send-email 2.5.5 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2001:558:fe16:19:96:114:154:165 Cc: pbonzini@redhat.com Subject: [Qemu-devel] [PATCH for-2.6] qemu-nbd: Document -x option 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 Commit 3d4b2f9c added -x to force qemu-nbd to use new-style negotiation, but while it documented it in the man page, it omitted docs in the --help output. Signed-off-by: Eric Blake --- qemu-nbd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/qemu-nbd.c b/qemu-nbd.c index ca4a724..c2e4d3f 100644 --- a/qemu-nbd.c +++ b/qemu-nbd.c @@ -75,6 +75,7 @@ static void usage(const char *name) " -e, --shared=NUM device can be shared by NUM clients (default '1')\n" " -t, --persistent don't exit on the last connection\n" " -v, --verbose display extra debugging information\n" +" -x, --export-name=NAME expose export by name\n" "\n" "Exposing part of the image:\n" " -o, --offset=OFFSET offset into the image\n"