All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] printk boot_delay: use loops_per_msec instead of  printk_delay_msec
@ 2009-06-16  9:02 Dave Young
  2009-06-23  5:55 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Dave Young @ 2009-06-16  9:02 UTC (permalink / raw)
  To: Andrew Morton, Ingo Molnar, linux-kernel, Linus Torvalds

Sorry, should post this firstly because the previous printk_delay
patch depends on this,
please review, thanks.
--

Use loops_per_msec instead of printk_delay_msec for boot printk delay.

Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
---
kernel/printk.c |   10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)

--- linux-2.6.orig/kernel/printk.c	2009-06-15 10:53:10.000000000 +0800
+++ linux-2.6/kernel/printk.c	2009-06-15 13:17:13.000000000 +0800
@@ -198,12 +198,11 @@ __setup("log_buf_len=", log_buf_len_setu
 #ifdef CONFIG_BOOT_PRINTK_DELAY

 static unsigned int boot_delay; /* msecs delay after each printk
during bootup */
-static unsigned long long printk_delay_msec; /* per msec, based on
boot_delay */
+static unsigned long long loops_per_msec;

 static int __init boot_delay_setup(char *str)
 {
 	unsigned long lpj;
-	unsigned long long loops_per_msec;

 	lpj = preset_lpj ? preset_lpj : 1000000;	/* some guess */
 	loops_per_msec = (unsigned long long)lpj / 1000 * HZ;
@@ -212,10 +211,9 @@ static int __init boot_delay_setup(char
 	if (boot_delay > 10 * 1000)
 		boot_delay = 0;

-	printk_delay_msec = loops_per_msec;
 	printk(KERN_DEBUG "boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
-		"HZ: %d, printk_delay_msec: %llu\n",
-		boot_delay, preset_lpj, lpj, HZ, printk_delay_msec);
+		"HZ: %d, loops_per_msec: %llu\n",
+		boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
 	return 1;
 }
 __setup("boot_delay=", boot_delay_setup);
@@ -228,7 +226,7 @@ static void boot_delay_msec(void)
 	if (boot_delay == 0 || system_state != SYSTEM_BOOTING)
 		return;

-	k = (unsigned long long)printk_delay_msec * boot_delay;
+	k = (unsigned long long)loops_per_msec * boot_delay;

 	timeout = jiffies + msecs_to_jiffies(boot_delay);
 	while (k) {

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] printk boot_delay: use loops_per_msec instead of  printk_delay_msec
  2009-06-16  9:02 [PATCH] printk boot_delay: use loops_per_msec instead of printk_delay_msec Dave Young
@ 2009-06-23  5:55 ` Andrew Morton
  2009-06-23 12:43   ` Dave Young
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2009-06-23  5:55 UTC (permalink / raw)
  To: Dave Young; +Cc: Ingo Molnar, linux-kernel, Linus Torvalds

On Tue, 16 Jun 2009 17:02:24 +0800 Dave Young <hidave.darkstar@gmail.com> wrote:

> Sorry, should post this firstly because the previous printk_delay
> patch depends on this,
> please review, thanks.
> --
> 
> Use loops_per_msec instead of printk_delay_msec for boot printk delay.
> 

The changelog is poor, because it fails to describe _why_ this change
is being made.  I rewrote it to

  Rename `printk_delay_msec' to `loops_per_msec', because the patch
  "printk: add printk_delay to make messages readable for some
  scenarios" wishes to more appropriately use the `printk_delay_msec'
  identifier.

> 
> --- linux-2.6.orig/kernel/printk.c	2009-06-15 10:53:10.000000000 +0800
> +++ linux-2.6/kernel/printk.c	2009-06-15 13:17:13.000000000 +0800
> @@ -198,12 +198,11 @@ __setup("log_buf_len=", log_buf_len_setu
>  #ifdef CONFIG_BOOT_PRINTK_DELAY
> 
>  static unsigned int boot_delay; /* msecs delay after each printk
> during bootup */
> -static unsigned long long printk_delay_msec; /* per msec, based on
> boot_delay */

Your email client is wordwrapping the patches.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] printk boot_delay: use loops_per_msec instead of printk_delay_msec
  2009-06-23  5:55 ` Andrew Morton
@ 2009-06-23 12:43   ` Dave Young
  0 siblings, 0 replies; 3+ messages in thread
From: Dave Young @ 2009-06-23 12:43 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Ingo Molnar, linux-kernel, Linus Torvalds

On Mon, Jun 22, 2009 at 10:55:53PM -0700, Andrew Morton wrote:
> On Tue, 16 Jun 2009 17:02:24 +0800 Dave Young <hidave.darkstar@gmail.com> wrote:
> 
> > Sorry, should post this firstly because the previous printk_delay
> > patch depends on this,
> > please review, thanks.
> > --
> > 
> > Use loops_per_msec instead of printk_delay_msec for boot printk delay.
> > 
> 
> The changelog is poor, because it fails to describe _why_ this change
> is being made.  I rewrote it to
> 
>   Rename `printk_delay_msec' to `loops_per_msec', because the patch
>   "printk: add printk_delay to make messages readable for some
>   scenarios" wishes to more appropriately use the `printk_delay_msec'
>   identifier.

Thanks for your improval.

> 
> > 
> > --- linux-2.6.orig/kernel/printk.c	2009-06-15 10:53:10.000000000 +0800
> > +++ linux-2.6/kernel/printk.c	2009-06-15 13:17:13.000000000 +0800
> > @@ -198,12 +198,11 @@ __setup("log_buf_len=", log_buf_len_setu
> >  #ifdef CONFIG_BOOT_PRINTK_DELAY
> > 
> >  static unsigned int boot_delay; /* msecs delay after each printk
> > during bootup */
> > -static unsigned long long printk_delay_msec; /* per msec, based on
> > boot_delay */
> 
> Your email client is wordwrapping the patches.


Thanks, I moved from mutt to web gmail + firefox 'view source with' addon, looks like I should think about using mutt again.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-06-23 12:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-16  9:02 [PATCH] printk boot_delay: use loops_per_msec instead of printk_delay_msec Dave Young
2009-06-23  5:55 ` Andrew Morton
2009-06-23 12:43   ` Dave Young

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.