From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgwkm01.jp.fujitsu.com ([202.219.69.168]:48562 "EHLO mgwkm01.jp.fujitsu.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754636AbcCPCPu (ORCPT ); Tue, 15 Mar 2016 22:15:50 -0400 Received: from m3051.s.css.fujitsu.com (m3051.s.css.fujitsu.com [10.134.21.209]) by kw-mxoi2.gw.nic.fujitsu.com (Postfix) with ESMTP id C10D6AC0136 for ; Wed, 16 Mar 2016 11:15:46 +0900 (JST) Subject: [PATCH 2/2 v2] btrfs-progs: Fix a regression that "property" with -t option doesn't work To: "linux-btrfs@vger.kernel.org" References: <56E8BE67.6030802@jp.fujitsu.com> <56E8C0BB.1050307@jp.fujitsu.com> From: Satoru Takeuchi Message-ID: <56E8C1CE.7060806@jp.fujitsu.com> Date: Wed, 16 Mar 2016 11:15:42 +0900 MIME-Version: 1.0 In-Reply-To: <56E8C0BB.1050307@jp.fujitsu.com> Content-Type: text/plain; charset=iso-2022-jp Sender: linux-btrfs-owner@vger.kernel.org List-ID: Sorry, I forgot to add "btrfs-progs: " in the subject line. --- "property" is considered as working without any options from the following commit. commit 176aeca9a148 ("btrfs-progs: add getopt stubs where needed") However, we can pass -t option to this command. * actual result ================================================== $ ./btrfs prop list -t f /btrfs btrfs property list: invalid option -- 't' usage: btrfs property list [-t ] Lists available properties with their descriptions for the given object. Please see the help of 'btrfs property get' for a description of objects and object types. ================================================== * expected result ================================================== $ ./btrfs prop list -t f /btrfs label Set/get label of device. ================================================== Signed-off-by: Satoru Takeuchi