On Mon, Oct 18, 2010 at 11:17 PM, Ryan Harper <ry...@us.ibm.com> wrote:
> Add a function to find a drive by id string.
>
> Signed-off-by: Ryan Harper <ry...@us.ibm.com>
> ---
>  blockdev.c |   12 ++++++++++++
>  blockdev.h |    1 +
>  2 files changed, 13 insertions(+), 0 deletions(-)
>
> diff --git a/blockdev.c b/blockdev.c
> index ff7602b..a00b3fa 100644
> --- a/blockdev.c
> +++ b/blockdev.c
> @@ -75,6 +75,18 @@ DriveInfo *drive_get(BlockInterfaceType type, int bus, int 
> unit)
>     return NULL;
>  }
>
> +DriveInfo *drive_get_by_id(const char *id)
> +{
> +    DriveInfo *dinfo;
> +
> +    QTAILQ_FOREACH(dinfo, &drives, next) {
> +        if (strcmp(id, dinfo->id))
> +            continue;

QEMU coding style uses curly braces even for 1-line if statements:
if (strcmp(id, dinfo->id)) {
    continue;
}

Stefan

Reply via email to