public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.6.28-rc5: unused variable in pagetable_init
@ 2008-11-17  3:53 Andrey Borzenkov
  2008-11-17  8:25 ` Ingo Molnar
  0 siblings, 1 reply; 2+ messages in thread
From: Andrey Borzenkov @ 2008-11-17  3:53 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Linux Kernel Mailing List

[-- Attachment #1: Type: text/plain, Size: 1378 bytes --]

  CC      arch/x86/mm/init_32.o
/home/bor/src/linux-git/arch/x86/mm/init_32.c: In function ‘pagetable_init’:
/home/bor/src/linux-git/arch/x86/mm/init_32.c:515: warning: unused variable ‘pgd_base’

Well, pagetable_init is noop unless HIGHMEM is defined so it could be
as simple as that.

Or is something else expected to go into pagetable_init for more general
case?

--- arch/x86/mm/init_32.c       2008-11-10 06:19:14.000000000 +0300
+++ /tmp/init_32.c      2008-11-17 06:52:21.383685722 +0300
@@ -435,9 +435,17 @@ static void __init set_highmem_pages_ini
 }
 #endif /* !CONFIG_NUMA */

+static void __init pagetable_init(void)
+{
+       pgd_t *pgd_base = swapper_pg_dir;
+
+       permanent_kmaps_init(pgd_base);
+}
+
 #else
 # define permanent_kmaps_init(pgd_base)                do { } while (0)
 # define set_highmem_pages_init()      do { } while (0)
+# define pagetable_init()      do { } while (0)
 #endif /* CONFIG_HIGHMEM */

 void __init native_pagetable_setup_start(pgd_t *base)
@@ -510,13 +518,6 @@ static void __init early_ioremap_page_ta
        early_ioremap_reset();
 }

-static void __init pagetable_init(void)
-{
-       pgd_t *pgd_base = swapper_pg_dir;
-
-       permanent_kmaps_init(pgd_base);
-}
-
 #ifdef CONFIG_ACPI_SLEEP
 /*
  * ACPI suspend needs this for resume, because things like the intel-agp

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

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

* Re: 2.6.28-rc5: unused variable in pagetable_init
  2008-11-17  3:53 2.6.28-rc5: unused variable in pagetable_init Andrey Borzenkov
@ 2008-11-17  8:25 ` Ingo Molnar
  0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2008-11-17  8:25 UTC (permalink / raw)
  To: Andrey Borzenkov; +Cc: Linux Kernel Mailing List


* Andrey Borzenkov <arvidjaar@mail.ru> wrote:

>   CC      arch/x86/mm/init_32.o
> /home/bor/src/linux-git/arch/x86/mm/init_32.c: In function ‘pagetable_init’:
> /home/bor/src/linux-git/arch/x86/mm/init_32.c:515: warning: unused variable ‘pgd_base’
> 
> Well, pagetable_init is noop unless HIGHMEM is defined so it could 
> be as simple as that.
> 
> Or is something else expected to go into pagetable_init for more 
> general case?
> 
> --- arch/x86/mm/init_32.c       2008-11-10 06:19:14.000000000 +0300
> +++ /tmp/init_32.c      2008-11-17 06:52:21.383685722 +0300
> @@ -435,9 +435,17 @@ static void __init set_highmem_pages_ini
>  }
>  #endif /* !CONFIG_NUMA */
> 
> +static void __init pagetable_init(void)
> +{
> +       pgd_t *pgd_base = swapper_pg_dir;
> +
> +       permanent_kmaps_init(pgd_base);
> +}
> +
>  #else
>  # define permanent_kmaps_init(pgd_base)                do { } while (0)
>  # define set_highmem_pages_init()      do { } while (0)
> +# define pagetable_init()      do { } while (0)
>  #endif /* CONFIG_HIGHMEM */
> 
>  void __init native_pagetable_setup_start(pgd_t *base)
> @@ -510,13 +518,6 @@ static void __init early_ioremap_page_ta
>         early_ioremap_reset();
>  }
> 
> -static void __init pagetable_init(void)
> -{
> -       pgd_t *pgd_base = swapper_pg_dir;
> -
> -       permanent_kmaps_init(pgd_base);
> -}
> -
>  #ifdef CONFIG_ACPI_SLEEP

The better fix would be to convert permanent_kmaps_init() from a macro 
to an (empty) inline. That way CPP does not eat away the code and GCC 
will known that the variable is indeed used.

	Ingo

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

end of thread, other threads:[~2008-11-17  8:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-17  3:53 2.6.28-rc5: unused variable in pagetable_init Andrey Borzenkov
2008-11-17  8:25 ` Ingo Molnar

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