From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:57406) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RW6nG-0000Jp-LD for qemu-devel@nongnu.org; Thu, 01 Dec 2011 08:35:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RW6nA-0000HG-7u for qemu-devel@nongnu.org; Thu, 01 Dec 2011 08:35:18 -0500 Received: from mail-gy0-f173.google.com ([209.85.160.173]:54774) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RW6n9-0000HB-S5 for qemu-devel@nongnu.org; Thu, 01 Dec 2011 08:35:12 -0500 Received: by ghbg19 with SMTP id g19so2341358ghb.4 for ; Thu, 01 Dec 2011 05:35:11 -0800 (PST) Message-ID: <4ED7828C.9090100@codemonkey.ws> Date: Thu, 01 Dec 2011 07:35:08 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1322687028-29714-1-git-send-email-aliguori@us.ibm.com> <1322687028-29714-11-git-send-email-aliguori@us.ibm.com> <20111201110436.GC31730@stefanha-thinkpad.localdomain> In-Reply-To: <20111201110436.GC31730@stefanha-thinkpad.localdomain> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 10/18] qom: qom_{get,set} monitor commands List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: Kevin Wolf , Peter Maydell , Anthony Liguori , Stefan Hajnoczi , Jan Kiszka , qemu-devel@nongnu.org, Markus Armbruster , Luiz Capitulino On 12/01/2011 05:04 AM, Stefan Hajnoczi wrote: > On Wed, Nov 30, 2011 at 03:03:40PM -0600, Anthony Liguori wrote: >> +## >> +# @qom-get: >> +# >> +# This command will get a property from a device model path and return the >> +# value. >> +# >> +# @path: The path within the device model. There are two forms of supported >> +# paths--absolute and partial paths. >> +# >> +# Absolute paths are derived from the root device and can follow child<> >> +# or link<> properties. Since they can follow link<> properties, they >> +# can be arbitrarily long. Absolute paths look like absolute filenames >> +# and are prefixed with a leading slash. >> +# >> +# Partial paths are look like relative filenames. They do not begin > > s/are// > >> +# with a prefix. The matching rules for partial paths are subtle but >> +# designed to make specifying devices easy. At each level of the >> +# composition tree, the partial path is matched as an absolute path. >> +# The first match is not returned. At least two matches are searched >> +# for. A successful result is only returned if only one match is >> +# founded. If more than one match is found, a flag is return to > > s/founded/found/ Ack. Regards, Anthony Liguori >