Re: [PATCH] lib/test_free_pages: Add basic progress indicators

2020-10-19 Thread Geert Uytterhoeven
Hi Matthew, On Mon, Oct 19, 2020 at 4:05 PM Matthew Wilcox wrote: > On Sun, Oct 18, 2020 at 08:12:52PM +0300, Mike Rapoport wrote: > > On Sun, Oct 18, 2020 at 04:01:46PM +0100, Matthew Wilcox wrote: > > > On Sun, Oct 18, 2020 at 04:39:27PM +0200, Geert Uytterhoeven wrote: > > > > On Sun, Oct 18,

Re: [PATCH] lib/test_free_pages: Add basic progress indicators

2020-10-19 Thread Matthew Wilcox
On Sun, Oct 18, 2020 at 08:12:52PM +0300, Mike Rapoport wrote: > On Sun, Oct 18, 2020 at 04:01:46PM +0100, Matthew Wilcox wrote: > > On Sun, Oct 18, 2020 at 04:39:27PM +0200, Geert Uytterhoeven wrote: > > > Hi Matthew, > > > > > > On Sun, Oct 18, 2020 at 4:25 PM Matthew Wilcox > > > wrote: > > >

Re: [PATCH] lib/test_free_pages: Add basic progress indicators

2020-10-18 Thread Mike Rapoport
On Sun, Oct 18, 2020 at 04:01:46PM +0100, Matthew Wilcox wrote: > On Sun, Oct 18, 2020 at 04:39:27PM +0200, Geert Uytterhoeven wrote: > > Hi Matthew, > > > > On Sun, Oct 18, 2020 at 4:25 PM Matthew Wilcox wrote: > > > On Sun, Oct 18, 2020 at 04:04:45PM +0200, Geert Uytterhoeven wrote: > > > > The

Re: [PATCH] lib/test_free_pages: Add basic progress indicators

2020-10-18 Thread Matthew Wilcox
On Sun, Oct 18, 2020 at 04:39:27PM +0200, Geert Uytterhoeven wrote: > Hi Matthew, > > On Sun, Oct 18, 2020 at 4:25 PM Matthew Wilcox wrote: > > On Sun, Oct 18, 2020 at 04:04:45PM +0200, Geert Uytterhoeven wrote: > > > The test module to check that free_pages() does not leak memory does not > > >

Re: [PATCH] lib/test_free_pages: Add basic progress indicators

2020-10-18 Thread Geert Uytterhoeven
Hi Matthew, On Sun, Oct 18, 2020 at 4:25 PM Matthew Wilcox wrote: > On Sun, Oct 18, 2020 at 04:04:45PM +0200, Geert Uytterhoeven wrote: > > The test module to check that free_pages() does not leak memory does not > > provide any feedback whatsoever its state or progress, but may take some > > tim

Re: [PATCH] lib/test_free_pages: Add basic progress indicators

2020-10-18 Thread Matthew Wilcox
On Sun, Oct 18, 2020 at 04:04:45PM +0200, Geert Uytterhoeven wrote: > The test module to check that free_pages() does not leak memory does not > provide any feedback whatsoever its state or progress, but may take some > time on slow machines. Add the printing of messages upon starting each > phase

[PATCH] lib/test_free_pages: Add basic progress indicators

2020-10-18 Thread Geert Uytterhoeven
The test module to check that free_pages() does not leak memory does not provide any feedback whatsoever its state or progress, but may take some time on slow machines. Add the printing of messages upon starting each phase of the test, and upon completion. Signed-off-by: Geert Uytterhoeven ---