Re: [PATCH v9 4/4] console: Make persistent scrollback a boot parameter

2017-02-03 Thread Manuel Schölling
Hi Paul, On Thu, 2017-02-02 at 15:07 -0500, Paul Gortmaker wrote: > On Tue, Jan 10, 2017 at 4:28 PM, Manuel Schölling > <manuel.schoell...@gmx.de> wrote: > > The impact of the persistent scrollback feature on the code size is > > rather small, so the config option is re

Re: [PATCH v9 4/4] console: Make persistent scrollback a boot parameter

2017-02-03 Thread Manuel Schölling
Hi Paul, On Thu, 2017-02-02 at 15:07 -0500, Paul Gortmaker wrote: > On Tue, Jan 10, 2017 at 4:28 PM, Manuel Schölling > wrote: > > The impact of the persistent scrollback feature on the code size is > > rather small, so the config option is removed. The feature stays >

Re: [PATCH v10 3/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-19 Thread Manuel Schölling
On Thu, 2017-01-19 at 14:23 +0100, Greg KH wrote: > On Fri, Jan 13, 2017 at 09:07:57PM +0100, Manuel Schölling wrote: > > Add a scrollback buffers for each VGA console. The benefit is that > > the scrollback history is not flushed when switching between > > consoles

Re: [PATCH v10 3/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-19 Thread Manuel Schölling
On Thu, 2017-01-19 at 14:23 +0100, Greg KH wrote: > On Fri, Jan 13, 2017 at 09:07:57PM +0100, Manuel Schölling wrote: > > Add a scrollback buffers for each VGA console. The benefit is that > > the scrollback history is not flushed when switching between > > consoles

[PATCH v10 0/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-13 Thread Manuel Schölling
- Remove ioctl() call again and add documentation about existing escape sequence to flush the scrollback buffer Changes in v2: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (4): console: Move scrollback data into its own struct

[PATCH v10 0/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-13 Thread Manuel Schölling
- Remove ioctl() call again and add documentation about existing escape sequence to flush the scrollback buffer Changes in v2: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (4): console: Move scrollback data into its own struct

[PATCH v10 3/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-13 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Teste

[PATCH v10 3/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-13 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video

[PATCH v10 4/4] console: Make persistent scrollback a boot parameter

2017-01-13 Thread Manuel Schölling
VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT=y. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Suggested-by: Bartlomiej Zolnierkiewicz <b.zolnier...@samsung.com> --- drivers/video/console/Kconfig | 12 +++- drivers/video/console/vgacon.c | 25 - 2 files changed, 19 inser

[PATCH v10 4/4] console: Make persistent scrollback a boot parameter

2017-01-13 Thread Manuel Schölling
VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT=y. Signed-off-by: Manuel Schölling Suggested-by: Bartlomiej Zolnierkiewicz --- drivers/video/console/Kconfig | 12 +++- drivers/video/console/vgacon.c | 25 - 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/drivers/video/console

[PATCH v10 1/4] console: Move scrollback data into its own struct

2017-01-13 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski &l

[PATCH v10 1/4] console: Move scrollback data into its own struct

2017-01-13 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video/console/vgacon.c | 91 ++ 1 file changed

[PATCH v10 2/4] console: Add callback to flush scrollback buffer to consw struct

2017-01-13 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski <kilob...@angband.pl&g

[PATCH v10 2/4] console: Add callback to flush scrollback buffer to consw struct

2017-01-13 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/tty/vt/vt.c| 9 + drivers/video/console/vgacon.c | 24 +++- include/linux/consol

Re: [PATCH v9 4/4] console: Make persistent scrollback a boot parameter

2017-01-13 Thread Manuel Schölling
On Tue, 2017-01-10 at 23:58 +0100, Adam Borowski wrote: > On Tue, Jan 10, 2017 at 10:28:38PM +0100, Manuel Schölling wrote: > > The impact of the persistent scrollback feature on the code size is > > rather small, so the config option is removed. The feature stays > > disabl

Re: [PATCH v9 4/4] console: Make persistent scrollback a boot parameter

2017-01-13 Thread Manuel Schölling
On Tue, 2017-01-10 at 23:58 +0100, Adam Borowski wrote: > On Tue, Jan 10, 2017 at 10:28:38PM +0100, Manuel Schölling wrote: > > The impact of the persistent scrollback feature on the code size is > > rather small, so the config option is removed. The feature stays > > disabl

Re: [PATCH v9 4/4] console: Make persistent scrollback a boot parameter

2017-01-11 Thread Manuel Schölling
On Tue, 2017-01-10 at 23:58 +0100, Adam Borowski wrote: > On Tue, Jan 10, 2017 at 10:28:38PM +0100, Manuel Schölling wrote: > > The impact of the persistent scrollback feature on the code size is > > rather small, so the config option is removed. The feature stays > > disabl

Re: [PATCH v9 4/4] console: Make persistent scrollback a boot parameter

2017-01-11 Thread Manuel Schölling
On Tue, 2017-01-10 at 23:58 +0100, Adam Borowski wrote: > On Tue, Jan 10, 2017 at 10:28:38PM +0100, Manuel Schölling wrote: > > The impact of the persistent scrollback feature on the code size is > > rather small, so the config option is removed. The feature stays > > disabl

[PATCH v9 2/4] console: Add callback to flush scrollback buffer to consw struct

2017-01-10 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski <kilob...@angband.pl&g

[PATCH v9 0/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-10 Thread Manuel Schölling
sequence to flush the scrollback buffer Changes in v2: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush scrollback buffer to consw struct console: Add

[PATCH v9 2/4] console: Add callback to flush scrollback buffer to consw struct

2017-01-10 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/tty/vt/vt.c| 9 + drivers/video/console/vgacon.c | 24 +++- include/linux/consol

[PATCH v9 0/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-10 Thread Manuel Schölling
sequence to flush the scrollback buffer Changes in v2: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush scrollback buffer to consw struct console: Add

[PATCH v9 3/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-10 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Teste

[PATCH v9 4/4] console: Make persistent scrollback a boot parameter

2017-01-10 Thread Manuel Schölling
VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT=y. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Suggested-by: Bartlomiej Zolnierkiewicz <b.zolnier...@samsung.com> --- drivers/video/console/Kconfig | 12 +++- drivers/video/console/vgacon.c | 25 - 2 files changed, 19 inser

[PATCH v9 1/4] console: Move scrollback data into its own struct

2017-01-10 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski &l

[PATCH v9 3/4] console: Add persistent scrollback buffers for all VGA consoles

2017-01-10 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video

[PATCH v9 4/4] console: Make persistent scrollback a boot parameter

2017-01-10 Thread Manuel Schölling
VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT=y. Signed-off-by: Manuel Schölling Suggested-by: Bartlomiej Zolnierkiewicz --- drivers/video/console/Kconfig | 12 +++- drivers/video/console/vgacon.c | 25 - 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/drivers/video/console

[PATCH v9 1/4] console: Move scrollback data into its own struct

2017-01-10 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video/console/vgacon.c | 91 ++ 1 file changed

Re: [PATCH v8 3/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-10 Thread Manuel Schölling
it (should be any time this week). Thanks again! Manuel > Best regards, > -- > Bartlomiej Zolnierkiewicz > Samsung R Institute Poland > Samsung Electronics > > > Best regards, > > -- > > Bartlomiej Zolnierkiewicz > > Samsung R

Re: [PATCH v8 3/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-10 Thread Manuel Schölling
it (should be any time this week). Thanks again! Manuel > Best regards, > -- > Bartlomiej Zolnierkiewicz > Samsung R Institute Poland > Samsung Electronics > > > Best regards, > > -- > > Bartlomiej Zolnierkiewicz > > Samsung R

[PATCH v8 0/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-05 Thread Manuel Schölling
if kcalloc() fails - Remove ioctl() call again and add documentation about existing escape sequence to flush the scrollback buffer Changes in v2: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback

[PATCH v8 0/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-05 Thread Manuel Schölling
escape sequence to flush the scrollback buffer Changes in v2: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush scrollback buffer to consw struct

[PATCH v8 1/3] console: Move scrollback data into its own struct

2017-01-05 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski &l

[PATCH v8 1/3] console: Move scrollback data into its own struct

2017-01-05 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video/console/vgacon.c | 91 ++ 1 file changed

[PATCH v8 2/3] console: Add callback to flush scrollback buffer to consw struct

2017-01-05 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski <kilob...@angband.pl&g

[PATCH v8 2/3] console: Add callback to flush scrollback buffer to consw struct

2017-01-05 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/tty/vt/vt.c| 9 + drivers/video/console/vgacon.c | 24 +++- include/linux/consol

[PATCH v8 3/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-05 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Teste

[PATCH v8 3/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-05 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video

[PATCH RESEND v7 1/3] console: Move scrollback data into its own struct

2017-01-02 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski &l

[PATCH RESEND v7 2/3] console: Add callback to flush scrollback buffer to consw struct

2017-01-02 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski <kilob...@angband.pl>

[PATCH RESEND v7 1/3] console: Move scrollback data into its own struct

2017-01-02 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video/console/vgacon.c | 91 ++ 1 file changed

[PATCH RESEND v7 2/3] console: Add callback to flush scrollback buffer to consw struct

2017-01-02 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/tty/vt/vt.c| 9 + drivers/video/console/vgacon.c | 24 +++- include/linux/consol

[PATCH RESEND v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-02 Thread Manuel Schölling
add documentation about existing escape sequence to flush the scrollback buffer Changes in v2: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush

[PATCH RESEND v7 3/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-02 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Teste

[PATCH RESEND v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-02 Thread Manuel Schölling
: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush scrollback buffer to consw struct console: Add persistent scrollback buffers for all VGA

[PATCH RESEND v7 3/3] console: Add persistent scrollback buffers for all VGA consoles

2017-01-02 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video

[PATCH RESEND v7 2/3] console: Add callback to flush scrollback buffer to consw struct

2016-12-21 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski <kilob...@angband.pl>

[PATCH RESEND v7 2/3] console: Add callback to flush scrollback buffer to consw struct

2016-12-21 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/tty/vt/vt.c| 9 + drivers/video/console/vgacon.c | 24 +++- include/linux/consol

[PATCH RESEND v7 1/3] console: Move scrollback data into its own struct

2016-12-21 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski &l

[PATCH RESEND v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-21 Thread Manuel Schölling
add documentation about existing escape sequence to flush the scrollback buffer Changes in v2: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush

[PATCH RESEND v7 1/3] console: Move scrollback data into its own struct

2016-12-21 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video/console/vgacon.c | 91 ++ 1 file changed

[PATCH RESEND v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-21 Thread Manuel Schölling
: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush scrollback buffer to consw struct console: Add persistent scrollback buffers for all VGA

[PATCH RESEND v7 3/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-21 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Teste

[PATCH RESEND v7 3/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-21 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-06 Thread Manuel Schölling
Hi Greg, On Di, 2016-12-06 at 11:02 +0100, Greg KH wrote: > On Sun, Dec 04, 2016 at 11:53:53AM +0100, Manuel Schölling wrote: > > Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> > > Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> > > Tested-by: A

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-06 Thread Manuel Schölling
Hi Greg, On Di, 2016-12-06 at 11:02 +0100, Greg KH wrote: > On Sun, Dec 04, 2016 at 11:53:53AM +0100, Manuel Schölling wrote: > > Reviewed-by: Andrey Utkin > > Tested-by: Andrey Utkin > > Tested-by: Adam Borowski > > > > -- > > Changes in v7: &

[PATCH v7 3/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-04 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Teste

[PATCH v7 3/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-04 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video

[PATCH v7 2/3] console: Add callback to flush scrollback buffer to consw struct

2016-12-04 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski <kilob...@angband.pl>

[PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-04 Thread Manuel Schölling
add documentation about existing escape sequence to flush the scrollback buffer Changes in v2: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush

[PATCH v7 1/3] console: Move scrollback data into its own struct

2016-12-04 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> Reviewed-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Andrey Utkin <andrey_ut...@fastmail.com> Tested-by: Adam Borowski &l

[PATCH v7 2/3] console: Add callback to flush scrollback buffer to consw struct

2016-12-04 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/tty/vt/vt.c| 9 + drivers/video/console/vgacon.c | 24 +++- include/linux/consol

[PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-04 Thread Manuel Schölling
: - Add ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush scrollback buffer to consw struct console: Add persistent scrollback buffers for all VGA

[PATCH v7 1/3] console: Move scrollback data into its own struct

2016-12-04 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling Reviewed-by: Andrey Utkin Tested-by: Andrey Utkin Tested-by: Adam Borowski --- drivers/video/console/vgacon.c | 91 ++ 1 file changed

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-01 Thread Manuel Schölling
Hi Andrey, On Di, 2016-11-29 at 10:01 +, Andrey Utkin wrote: > On Mon, Nov 28, 2016 at 10:28:19PM +0100, Manuel Schölling wrote: > Regarding logout scrollback clearing not working for me. ncurses-6.0-rc1 > which I tested it with is the latest available in Gentoo portage, please

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-12-01 Thread Manuel Schölling
Hi Andrey, On Di, 2016-11-29 at 10:01 +, Andrey Utkin wrote: > On Mon, Nov 28, 2016 at 10:28:19PM +0100, Manuel Schölling wrote: > Regarding logout scrollback clearing not working for me. ncurses-6.0-rc1 > which I tested it with is the latest available in Gentoo portage, please

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-29 Thread Manuel Schölling
Hi Andrey, On Di, 2016-11-29 at 10:01 +, Andrey Utkin wrote: > Regarding logout scrollback clearing not working for me. ncurses-6.0-rc1 > which I tested it with is the latest available in Gentoo portage, please > confirm whether I need any newer version, or should I tune something > else. I'd

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-29 Thread Manuel Schölling
Hi Andrey, On Di, 2016-11-29 at 10:01 +, Andrey Utkin wrote: > Regarding logout scrollback clearing not working for me. ncurses-6.0-rc1 > which I tested it with is the latest available in Gentoo portage, please > confirm whether I need any newer version, or should I tune something > else. I'd

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-28 Thread Manuel Schölling
Hi Andrey, Adam already discussed some of your notes, but I want to catch up one this one: On So, 2016-11-27 at 21:37 +, Andrey Utkin wrote: > I see the user experience is subpar to what I'm accustomed to (I use > Konsole and "Clear Scrollback and Reset" action, default shortcut is >

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-28 Thread Manuel Schölling
Hi Andrey, Adam already discussed some of your notes, but I want to catch up one this one: On So, 2016-11-27 at 21:37 +, Andrey Utkin wrote: > I see the user experience is subpar to what I'm accustomed to (I use > Konsole and "Clear Scrollback and Reset" action, default shortcut is >

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-28 Thread Manuel Schölling
On Mo, 2016-11-28 at 00:53 +0100, Adam Borowski wrote: > \e[3J works well now, thanks! Great to hear that! > Tested-by: Adam Borowski Thanks, Adam, for spending all this time testing the patches!

Re: [PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-28 Thread Manuel Schölling
On Mo, 2016-11-28 at 00:53 +0100, Adam Borowski wrote: > \e[3J works well now, thanks! Great to hear that! > Tested-by: Adam Borowski Thanks, Adam, for spending all this time testing the patches!

[PATCH v7 2/3] console: Add callback to flush scrollback buffer to consw struct

2016-11-27 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> --- drivers/tty/vt/vt.c| 9 + drivers/video/console/vgacon.c | 24 +++- include/linux/console.h| 4 3 files changed, 36 i

[PATCH v7 1/3] console: Move scrollback data into its own struct

2016-11-27 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> --- drivers/video/console/vgacon.c | 91 ++ 1 file changed, 47 insertions(+), 44 deletions(-) diff

[PATCH v7 1/3] console: Move scrollback data into its own struct

2016-11-27 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling --- drivers/video/console/vgacon.c | 91 ++ 1 file changed, 47 insertions(+), 44 deletions(-) diff --git a/drivers/video/console

[PATCH v7 2/3] console: Add callback to flush scrollback buffer to consw struct

2016-11-27 Thread Manuel Schölling
ell the video console driver which buffer to flush. Signed-off-by: Manuel Schölling --- drivers/tty/vt/vt.c| 9 + drivers/video/console/vgacon.c | 24 +++- include/linux/console.h| 4 3 files changed, 36 insertions(+), 1 deletion(-) diff --

[PATCH v7 3/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-27 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> --- drivers/video/console/Kconfig | 25 +++- drivers/video/c

[PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-27 Thread Manuel Schölling
as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush scrollback buffer to consw struct console: Add persistent scrollback buffers for all VGA consoles drivers/tty/vt/vt.c| 9 +++ drivers/video/console/Kconfig

[PATCH v7 3/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-27 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling --- drivers/video/console/Kconfig | 25 +++- drivers/video/console/vgacon.c | 142

[PATCH v7 0/3] console: Add persistent scrollback buffers for all VGA consoles

2016-11-27 Thread Manuel Schölling
as such, sorry) Manuel Schölling (3): console: Move scrollback data into its own struct console: Add callback to flush scrollback buffer to consw struct console: Add persistent scrollback buffers for all VGA consoles drivers/tty/vt/vt.c| 9 +++ drivers/video/console/Kconfig

Re: [PATCH v5 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-23 Thread Manuel Schölling
On Mo, 2016-11-21 at 21:17 +0100, Adam Borowski wrote: > On Sun, Nov 20, 2016 at 10:58:08PM +0100, Manuel Schölling wrote: > > Add a scrollback buffers for each VGA console. The benefit is that > > the scrollback history is not flushed when switching between consoles > &

Re: [PATCH v5 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-23 Thread Manuel Schölling
On Mo, 2016-11-21 at 21:17 +0100, Adam Borowski wrote: > On Sun, Nov 20, 2016 at 10:58:08PM +0100, Manuel Schölling wrote: > > Add a scrollback buffers for each VGA console. The benefit is that > > the scrollback history is not flushed when switching between consoles > &

Re: [PATCH v6 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-23 Thread Manuel Schölling
On Di, 2016-11-22 at 19:31 +, Andrey Utkin wrote: > I'm not sure my emails with review of previous submission reached you, but in > them I meant to mention that there are some style nits which are easy to > eliminate. I am afraid I did not get it. I will fix these style issues in the next

Re: [PATCH v6 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-23 Thread Manuel Schölling
On Di, 2016-11-22 at 19:31 +, Andrey Utkin wrote: > I'm not sure my emails with review of previous submission reached you, but in > them I meant to mention that there are some style nits which are easy to > eliminate. I am afraid I did not get it. I will fix these style issues in the next

Re: [PATCH v5 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-22 Thread Manuel Schölling
Hi Adam, On Mo, 2016-11-21 at 21:17 +0100, Adam Borowski wrote: > On Sun, Nov 20, 2016 at 10:58:08PM +0100, Manuel Schölling wrote: > > Add a scrollback buffers for each VGA console. The benefit is that > > the scrollback history is not flushed when switching b

Re: [PATCH v5 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-22 Thread Manuel Schölling
Hi Adam, On Mo, 2016-11-21 at 21:17 +0100, Adam Borowski wrote: > On Sun, Nov 20, 2016 at 10:58:08PM +0100, Manuel Schölling wrote: > > Add a scrollback buffers for each VGA console. The benefit is that > > the scrollback history is not flushed when switching b

[PATCH v6 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-22 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> --- drivers/video/console/Kconfig | 25 +++- drivers/video/c

[PATCH v6 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-22 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling --- drivers/video/console/Kconfig | 25 +++- drivers/video/console/vgacon.c | 134

[PATCH v6 0/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-22 Thread Manuel Schölling
ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (2): console: Move scrollback data into its own struct console: Add persistent scrollback buffers for all VGA consoles drivers/video/console/Kconfig | 25 ++- drivers/video/console

[PATCH v6 0/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-22 Thread Manuel Schölling
ioctl() call to flush scrollback buffer - (Patch v2 was not labeled as such, sorry) Manuel Schölling (2): console: Move scrollback data into its own struct console: Add persistent scrollback buffers for all VGA consoles drivers/video/console/Kconfig | 25 ++- drivers/video/console

[PATCH v6 1/2] console: Move scrollback data into its own struct

2016-11-22 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> --- drivers/video/console/vgacon.c | 91 ++ 1 file changed, 47 insertions(+), 44 deletions(-) diff

[PATCH v6 1/2] console: Move scrollback data into its own struct

2016-11-22 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling --- drivers/video/console/vgacon.c | 91 ++ 1 file changed, 47 insertions(+), 44 deletions(-) diff --git a/drivers/video/console

[PATCH v5 0/2] console: Add persistent scrollback buffers for all VGA console

2016-11-20 Thread Manuel Schölling
as such, sorry) Manuel Schölling (2): console: Move scrollback data into its own struct console: Add persistent scrollback buffers for all VGA consoles drivers/video/console/Kconfig | 25 ++- drivers/video/console/vgacon.c | 146 +++-- 2 files changed, 117

[PATCH v5 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-20 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> --- drivers/video/console/Kconfig | 25 +++- drivers/video/c

[PATCH v5 0/2] console: Add persistent scrollback buffers for all VGA console

2016-11-20 Thread Manuel Schölling
as such, sorry) Manuel Schölling (2): console: Move scrollback data into its own struct console: Add persistent scrollback buffers for all VGA consoles drivers/video/console/Kconfig | 25 ++- drivers/video/console/vgacon.c | 146 +++-- 2 files changed, 117

[PATCH v5 2/2] console: Add persistent scrollback buffers for all VGA consoles

2016-11-20 Thread Manuel Schölling
history by switching back and forth between consoles which is why this feature is disabled by default. Use the escape sequence \e[3J instead for flushing the buffer. Signed-off-by: Manuel Schölling --- drivers/video/console/Kconfig | 25 +++- drivers/video/console/vgacon.c | 131

[PATCH v5 1/2] console: Move scrollback data into its own struct

2016-11-20 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> --- drivers/video/console/vgacon.c | 91 ++ 1 file changed, 47 insertions(+), 44 deletions(-) diff

[PATCH v5 1/2] console: Move scrollback data into its own struct

2016-11-20 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling --- drivers/video/console/vgacon.c | 91 ++ 1 file changed, 47 insertions(+), 44 deletions(-) diff --git a/drivers/video/console

[PATCH v4.1 1/2] console: Move scrollback data into its own struct

2016-11-16 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling <manuel.schoell...@gmx.de> --- drivers/video/console/vgacon.c | 90 +- 1 file changed, 46 insertions(+), 44 deletions(-) diff

[PATCH v4.1 1/2] console: Move scrollback data into its own struct

2016-11-16 Thread Manuel Schölling
This refactoring is in preparation for persistent scrollback support for VGA console. Signed-off-by: Manuel Schölling --- drivers/video/console/vgacon.c | 90 +- 1 file changed, 46 insertions(+), 44 deletions(-) diff --git a/drivers/video/console

  1   2   3   >