mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Re: x86: add "debugpat" boot option
       [not found] <200807142234.m6EMYMRx031036@hera.kernel.org>
@ 2008-07-14 22:53 ` Randy Dunlap
  0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2008-07-14 22:53 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: mingo, venkatesh.pallipadi, tglx

On Mon, 14 Jul 2008 22:34:22 GMT Linux Kernel Mailing List wrote:

> Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=77b52b4c5c66175553ee59eb43f74366f1e54bde
> Commit:     77b52b4c5c66175553ee59eb43f74366f1e54bde
> Parent:     988f7b5789ccf5cfed14c72e28573a49f0cb4809
> Author:     Venki Pallipadi <venkatesh.pallipadi@intel.com>
> AuthorDate: Mon May 5 19:09:10 2008 -0700
> Committer:  Ingo Molnar <mingo@elte.hu>
> CommitDate: Mon May 12 21:28:07 2008 +0200
> 
>     x86: add "debugpat" boot option
>     
>     enable debug messages by a boot option "debugpat".

Is there an update to Documentation/kernel-parameters.txt for this?  (please)


>     Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
>     Signed-off-by: Ingo Molnar <mingo@elte.hu>
>     Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> ---
>  arch/x86/mm/pat.c |   27 ++++++++++++++++++++-------
>  1 files changed, 20 insertions(+), 7 deletions(-)
> 
> diff --git a/arch/x86/mm/pat.c b/arch/x86/mm/pat.c
> index 60adbe2..1a82f4d 100644
> --- a/arch/x86/mm/pat.c
> +++ b/arch/x86/mm/pat.c
> @@ -42,6 +42,19 @@ static int nopat(char *str)
>  early_param("nopat", nopat);
>  #endif
>  
> +
> +static int debug_enable;
> +static int __init pat_debug_setup(char *str)
> +{
> +	debug_enable = 1;
> +	return 0;
> +}
> +__setup("debugpat", pat_debug_setup);
> +
> +#define dprintk(fmt, arg...) \
> +	do { if (debug_enable) printk(KERN_INFO fmt, ##arg); } while (0)
> +
> +
>  static u64 __read_mostly boot_pat_state;
>  
>  enum {
> @@ -279,7 +292,7 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
>  		struct memtype *saved_ptr;
>  
>  		if (parse->start >= end) {
> -			pr_debug("New Entry\n");
> +			dprintk("New Entry\n");
>  			list_add(&new_entry->nd, parse->nd.prev);
>  			new_entry = NULL;
>  			break;
> @@ -329,7 +342,7 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
>  				break;
>  			}
>  
> -			pr_debug("Overlap at 0x%Lx-0x%Lx\n",
> +			dprintk("Overlap at 0x%Lx-0x%Lx\n",
>  			       saved_ptr->start, saved_ptr->end);
>  			/* No conflict. Go ahead and add this new entry */
>  			list_add(&new_entry->nd, saved_ptr->nd.prev);
> @@ -381,7 +394,7 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
>  				break;
>  			}
>  
> -			pr_debug(KERN_INFO "Overlap at 0x%Lx-0x%Lx\n",
> +			dprintk("Overlap at 0x%Lx-0x%Lx\n",
>  				 saved_ptr->start, saved_ptr->end);
>  			/* No conflict. Go ahead and add this new entry */
>  			list_add(&new_entry->nd, &saved_ptr->nd);
> @@ -403,16 +416,16 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
>  	if (new_entry) {
>  		/* No conflict. Not yet added to the list. Add to the tail */
>  		list_add_tail(&new_entry->nd, &memtype_list);
> -		pr_debug("New Entry\n");
> +		dprintk("New Entry\n");
>  	}
>  
>  	if (ret_type) {
> -		pr_debug(
> +		dprintk(
>  	"reserve_memtype added 0x%Lx-0x%Lx, track %s, req %s, ret %s\n",
>  			start, end, cattr_name(actual_type),
>  			cattr_name(req_type), cattr_name(*ret_type));
>  	} else {
> -		pr_debug(
> +		dprintk(
>  	"reserve_memtype added 0x%Lx-0x%Lx, track %s, req %s\n",
>  			start, end, cattr_name(actual_type),
>  			cattr_name(req_type));
> @@ -453,7 +466,7 @@ int free_memtype(u64 start, u64 end)
>  			current->comm, current->pid, start, end);
>  	}
>  
> -	pr_debug("free_memtype request 0x%Lx-0x%Lx\n", start, end);
> +	dprintk("free_memtype request 0x%Lx-0x%Lx\n", start, end);
>  	return err;
>  }
>  
> --

---
~Randy
Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA
http://linuxplumbersconf.org/

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-07-14 22:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <200807142234.m6EMYMRx031036@hera.kernel.org>
2008-07-14 22:53 ` x86: add "debugpat" boot option Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®