From: Paolo Bonzini <pbonzini@redhat.com>
To: Hannes Reinecke <hare@suse.de>
Cc: qemu-devel@nongnu.org, Gerd Hofmann <kraxel@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] megasas: Correct target/lun mapping
Date: Mon, 12 Nov 2012 16:43:50 +0100 [thread overview]
Message-ID: <50A11936.2030003@redhat.com> (raw)
In-Reply-To: <1352731362-19524-1-git-send-email-hare@suse.de>
Il 12/11/2012 15:42, Hannes Reinecke ha scritto:
> The structure to reference a logical drive has an unused field,
> which can be used to carry the lun ID. This enabled seabios to
> establish the proper target/LUN mapping.
>
> Signed-off-by: Hannes Reinecke <hare@suse.de>
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> Cc: Gerd Hofmann <kraxel@redhat.com>
Applied to scsi-next branch.
Paolo
>
> diff --git a/hw/megasas.c b/hw/megasas.c
> index 7a2036e..395feb3 100644
> --- a/hw/megasas.c
> +++ b/hw/megasas.c
> @@ -1080,6 +1080,7 @@ static int megasas_dcmd_ld_get_list(MegasasState *s, MegasasCmd *cmd)
> /* Logical device size is in blocks */
> bdrv_get_geometry(conf->bs, &ld_size);
> info.ld_list[num_ld_disks].ld.v.target_id = sdev->id;
> + info.ld_list[num_ld_disks].ld.v.lun_id = sdev->lun;
> info.ld_list[num_ld_disks].state = MFI_LD_STATE_OPTIMAL;
> info.ld_list[num_ld_disks].size = cpu_to_le64(ld_size);
> num_ld_disks++;
> diff --git a/hw/mfi.h b/hw/mfi.h
> index 436b690..cd8355b 100644
> --- a/hw/mfi.h
> +++ b/hw/mfi.h
> @@ -1085,7 +1085,7 @@ struct mfi_pd_list {
> union mfi_ld_ref {
> struct {
> uint8_t target_id;
> - uint8_t reserved;
> + uint8_t lun_id;
> uint16_t seq;
> } v;
> uint32_t ref;
>
>
prev parent reply other threads:[~2012-11-12 15:44 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-12 14:42 [Qemu-devel] [PATCH] megasas: Correct target/lun mapping Hannes Reinecke
2012-11-12 15:43 ` Paolo Bonzini [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50A11936.2030003@redhat.com \
--to=pbonzini@redhat.com \
--cc=hare@suse.de \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).