From: Rusty Russell <rusty@rustcorp.com.au>
To: Amit Shah <amit.shah@redhat.com>
Cc: virtualization@lists.linux-foundation.org
Subject: Re: [PATCH 32/32] virtio: console: show error message if hvc_alloc fails for console ports
Date: Wed, 20 Jan 2010 18:39:22 +1030 [thread overview]
Message-ID: <201001201839.23118.rusty@rustcorp.com.au> (raw)
In-Reply-To: <20100119045730.GD25684@amit-x200.redhat.com>
On Tue, 19 Jan 2010 03:27:30 pm Amit Shah wrote:
> On (Tue) Jan 19 2010 [11:52:50], Rusty Russell wrote:
> > On Tue, 19 Jan 2010 12:15:26 am Amit Shah wrote:
> > > Signed-off-by: Amit Shah <amit.shah@redhat.com>
> >
> > These all look great! I'm not entirely convinced about the host throttling,
> > but it's harmless to have.
> >
> > Applied, thanks!
> > Rusty.
>
> Thanks, Rusty!
>
> Can you point me to the repo that has the patches?
They will be in linux-next tomorrow from my tree:
http://ozlabs.org/~rusty/kernel/rr-latest/
Cheers,
Rusty.
next prev parent reply other threads:[~2010-01-20 8:09 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-18 13:44 [PATCH 00/32] virtio: console: Fixes, multiple devices and generic ports Amit Shah
2010-01-18 13:44 ` [PATCH 01/32] virtio: console: comment cleanup Amit Shah
2010-01-18 13:44 ` [PATCH 02/32] virtio: console: statically initialize virtio_cons Amit Shah
2010-01-18 13:44 ` [PATCH 03/32] hvc_console: make the ops pointer const Amit Shah
2010-01-18 13:44 ` [PATCH 04/32] hvc_console: Remove __devinit annotation from hvc_alloc Amit Shah
2010-01-18 13:44 ` Amit Shah
2010-01-18 13:44 ` [PATCH 05/32] virtio: console: We support only one device at a time Amit Shah
2010-01-18 13:45 ` [PATCH 06/32] virtio: console: port encapsulation Amit Shah
2010-01-18 13:45 ` [PATCH 07/32] virtio: console: encapsulate buffer information in a struct Amit Shah
2010-01-18 13:45 ` [PATCH 08/32] virtio: console: ensure add_inbuf can work for multiple ports as well Amit Shah
2010-01-18 13:45 ` [PATCH 09/32] virtio: console: introduce a get_inbuf helper to fetch bufs from in_vq Amit Shah
2010-01-18 13:45 ` [PATCH 10/32] virtio: console: use vdev->priv to avoid accessing global var Amit Shah
2010-01-18 13:45 ` [PATCH 11/32] virtio: console: don't assume a single console port Amit Shah
2010-01-18 13:45 ` [PATCH 12/32] virtio: console: remove global var Amit Shah
2010-01-18 13:45 ` [PATCH 13/32] virtio: console: struct ports for multiple ports per device Amit Shah
2010-01-18 13:45 ` [PATCH 14/32] virtio: console: ensure console size is updated on hvc open Amit Shah
2010-01-18 13:45 ` [PATCH 15/32] virtio: console: Separate out console-specific data into a separate struct Amit Shah
2010-01-18 13:45 ` [PATCH 16/32] virtio: console: Separate out console init into a new function Amit Shah
2010-01-18 13:45 ` [PATCH 17/32] virtio: console: Separate out find_vqs operation into a different function Amit Shah
2010-01-18 13:45 ` [PATCH 18/32] virtio: console: Introduce function to hand off data from host to readers Amit Shah
2010-01-18 13:45 ` [PATCH 19/32] virtio: console: Introduce a send_buf function for a common path for sending data to host Amit Shah
2010-01-18 13:45 ` [PATCH 20/32] virtio: console: Add a new MULTIPORT feature, support for generic ports Amit Shah
2010-01-18 13:45 ` [PATCH 21/32] virtio: console: Prepare for writing to / reading from userspace buffers Amit Shah
2010-01-18 13:45 ` [PATCH 22/32] virtio: console: Associate each port with a char device Amit Shah
2010-01-18 13:45 ` [PATCH 23/32] virtio: console: Add file operations to ports for open/read/write/poll Amit Shah
2010-01-18 13:45 ` [PATCH 24/32] virtio: console: Ensure only one process can have a port open at a time Amit Shah
2010-01-18 13:45 ` [PATCH 25/32] virtio: console: Register with sysfs and create a 'name' attribute for ports Amit Shah
2010-01-18 13:45 ` [PATCH 26/32] virtio: console: Add throttling support to prevent flooding ports Amit Shah
2010-01-18 13:45 ` [PATCH 27/32] virtio: console: Remove cached data on port close Amit Shah
2010-01-18 13:45 ` [PATCH 28/32] virtio: console: Handle port hot-plug Amit Shah
2010-01-18 13:45 ` [PATCH 29/32] virtio: Add ability to detach unused buffers from vrings Amit Shah
2010-01-18 13:45 ` [PATCH 30/32] virtio: console: Add ability to hot-unplug ports Amit Shah
2010-01-18 13:45 ` [PATCH 31/32] virtio: console: Add debugfs files for each port to expose debug info Amit Shah
2010-01-18 13:45 ` [PATCH 32/32] virtio: console: show error message if hvc_alloc fails for console ports Amit Shah
2010-01-19 1:22 ` Rusty Russell
2010-01-19 4:57 ` Amit Shah
2010-01-20 8:09 ` Rusty Russell [this message]
2010-01-19 17:06 ` Amit Shah
2010-01-20 8:20 ` Rusty Russell
2010-01-20 8:51 ` Remove host throttling Amit Shah
2010-01-20 8:51 ` [PATCH 19/31] virtio: console: Introduce a send_buf function for a common path for sending data to host Amit Shah
2010-01-20 8:51 ` [PATCH 29/31] virtio: console: Add ability to hot-unplug ports Amit Shah
2010-01-20 8:51 ` [PATCH 30/31] virtio: console: Add debugfs files for each port to expose debug info Amit Shah
2010-01-25 10:32 ` Remove host throttling Rusty Russell
2010-01-18 13:44 ` [PATCH 03/32] hvc_console: make the ops pointer const Amit Shah
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=201001201839.23118.rusty@rustcorp.com.au \
--to=rusty@rustcorp.com.au \
--cc=amit.shah@redhat.com \
--cc=virtualization@lists.linux-foundation.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.