[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20100217231141.GA4734@kroah.com>
Date: Wed, 17 Feb 2010 15:11:41 -0800
From: Greg KH <greg@...ah.com>
To: Alan Cox <alan@...ux.intel.com>
Cc: linux-kernel@...r.kernel.org
Subject: Re: [PATCH] tty: Keep the default buffering to sub-page units
On Wed, Feb 17, 2010 at 01:04:53PM +0000, Alan Cox wrote:
> We allocate during interrupts so while our buffering is normally diced up
> small anyway on some hardware at speed we can pressure the VM excessively
> for page pairs. We don't really need big buffers to be linear so don't try
> so hard.
>
> In order to make this work well we will tidy up excess callers to request_room,
> which cannot itself enforce this break up.
>
> Signed-off-by: Alan Cox <alan@...ux.intel.com>
> ---
>
> drivers/char/tty_buffer.c | 5 +++--
> include/linux/tty.h | 10 ++++++++++
> 2 files changed, 13 insertions(+), 2 deletions(-)
>
>
> diff --git a/drivers/char/tty_buffer.c b/drivers/char/tty_buffer.c
> index 66fa4e1..8402eda 100644
> --- a/drivers/char/tty_buffer.c
> +++ b/drivers/char/tty_buffer.c
> @@ -247,7 +247,7 @@ int tty_insert_flip_string(struct tty_struct *tty, const unsigned char *chars,
> {
> int copied = 0;
> do {
> - int space = tty_buffer_request_room(tty, size - copied);
> + int space = tty_buffer_request_room(tty, goal);
This causes the build error:
CC drivers/char/tty_buffer.o
drivers/char/tty_buffer.c: In function ‘tty_insert_flip_string’:
drivers/char/tty_buffer.c:250: error: ‘goal’ undeclared (first use in this function)
drivers/char/tty_buffer.c:250: error: (Each undeclared identifier is reported only once
drivers/char/tty_buffer.c:250: error: for each function it appears in.)
So I'll drop it for now.
Care to fix this?
thanks,
greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists