qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 1/5] ide: Split atapi.c out


From: Amit Shah
Subject: Re: [Qemu-devel] [PATCH v2 1/5] ide: Split atapi.c out
Date: Mon, 25 Apr 2011 15:39:14 +0530
User-agent: Mutt/1.5.21 (2010-09-15)

On (Wed) 20 Apr 2011 [13:30:11], Kevin Wolf wrote:
> Besides moving code, this patch only fixes some whitespace issues in the moved
> code and makes all functions in atapi.c static which can be static.
> 
> Signed-off-by: Kevin Wolf <address@hidden>
> ---
>  Makefile.objs     |    2 +-
>  hw/ide/atapi.c    | 1083 
> +++++++++++++++++++++++++++++++++++++++++++++++++++++
>  hw/ide/core.c     | 1065 +---------------------------------------------------
>  hw/ide/internal.h |   14 +-
>  4 files changed, 1098 insertions(+), 1066 deletions(-)
>  create mode 100644 hw/ide/atapi.c

<snip>

> --- /dev/null
> +++ b/hw/ide/atapi.c
> @@ -0,0 +1,1083 @@
> +/*
> + * QEMU ATAPI Emulatoin

typo here.

> + * Copyright (c) 2003 Fabrice Bellard
> + * Copyright (c) 2006 Openedhand Ltd.

Could you also add

Copyright (C) 2011 Red Hat Inc.
Copyright (C) 2011 Amit Shah <address@hidden>

<snip>

> +
> +static void lba_to_msf(uint8_t *buf, int lba)
> +{
> +    lba += 150;
> +    buf[0] = (lba / 75) / 60;
> +    buf[1] = (lba / 75) % 60;
> +    buf[2] = lba % 75;
> +}
> +
> +/* XXX: DVDs that could fit on a CD will be reported as a CD */

This comment belongs to the function below.

> +static inline int media_present(IDEState *s)
> +{
> +    return (s->nb_sectors > 0);
> +}
> +
> +static inline int media_is_dvd(IDEState *s)
> +{
> +    return (media_present(s) && s->nb_sectors > CD_MAX_SECTORS);
> +}
> +

                Amit



reply via email to

[Prev in Thread] Current Thread [Next in Thread]