All of lore.kernel.org
 help / color / mirror / Atom feed
From: Helge Deller <deller@kernel.org>
To: Emmanuel Ugwu <emmanuelugwu121@gmail.com>
Cc: qemu-devel@nongnu.org, fam@euphon.net, deller@gmx.de
Subject: Re: [PATCH 1/1] hw/scsi: add initial SCSI tape device emulation
Date: Tue, 19 May 2026 15:20:35 +0200	[thread overview]
Message-ID: <agxjo4dekaTHOVyF@carbonx1> (raw)
In-Reply-To: <20260513025854.76594-2-emmanuelugwu121@gmail.com>

Hi Emmanuel,

* Emmanuel Ugwu <emmanuelugwu121@gmail.com>:
> From: kantnero <emmanuelugwu121@gmail.com>
> 
> Add a new scsi-tape device that attaches to a VirtIO SCSI bus.
> Implements realize and unrealize lifecycle only. SCSI command
> handling will follow in subsequent patches.

Ok.
 
> Signed-off-by: Emmanuel Ugwu <emmanuelugwu121@gmail.com>
> Signed-off-by: kantnero <emmanuelugwu121@gmail.com>

Please use the first only.

> ---
>  hw/scsi/meson.build |   1 +
>  hw/scsi/scsi-tape.c | 221 ++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 222 insertions(+)
>  create mode 100644 hw/scsi/scsi-tape.c
> 
> diff --git a/hw/scsi/meson.build b/hw/scsi/meson.build
> index 69fde0cf84..1699b6e591 100644
> --- a/hw/scsi/meson.build
> +++ b/hw/scsi/meson.build
> @@ -7,6 +7,7 @@ scsi_ss.add(files(
>    'scsi-bus.c',
>    'scsi-disk.c',
>    'scsi-generic.c',
> +  'scsi-tape.c',
>  ))
>  scsi_ss.add(when: 'CONFIG_ESP', if_true: files('esp.c'))
>  scsi_ss.add(when: 'CONFIG_ESP_PCI', if_true: files('esp-pci.c'))
> diff --git a/hw/scsi/scsi-tape.c b/hw/scsi/scsi-tape.c
> new file mode 100644
> index 0000000000..650f75471f
> --- /dev/null
> +++ b/hw/scsi/scsi-tape.c
> @@ -0,0 +1,221 @@
> +/*
> + *  SCSI Tape Device Emulation
> + *
> + *  Copyright (c) Emmanuel Ugwu <emmanuelugwu121@gmail.com>

Add copyright year.


I'm no qemu SCSI maintainer, but for me the rest looks OK.

I'm really looking forward to your first implementation!

Thanks!
Helge



  reply	other threads:[~2026-05-19 13:21 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-13  2:58 [PATCH 0/1] hw/scsi: add initial SCSI tape device emulation Emmanuel Ugwu
2026-05-13  2:58 ` [PATCH 1/1] " Emmanuel Ugwu
2026-05-19 13:20   ` Helge Deller [this message]
2026-05-22 17:22 ` [PATCH v2] hw/scsi: add scsi-tape device emulation support for QEMU Emmanuel Ugwu
  -- strict thread matches above, loose matches on Subject: below --
2026-05-13  2:44 [PATCH 0/1] hw/scsi: add initial SCSI tape device emulation kantnero
2026-05-13  2:44 ` [PATCH 1/1] " kantnero

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=agxjo4dekaTHOVyF@carbonx1 \
    --to=deller@kernel.org \
    --cc=deller@gmx.de \
    --cc=emmanuelugwu121@gmail.com \
    --cc=fam@euphon.net \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.