public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Rename D macro in kmap_types.h
@ 2009-09-16 20:25 Andi Kleen
  2009-09-18  2:32 ` Américo Wang
  0 siblings, 1 reply; 2+ messages in thread
From: Andi Kleen @ 2009-09-16 20:25 UTC (permalink / raw)
  To: akpm, linux-kernel

Rename D macro in kmap_types.h

I tend to use a 'D' debugging macro a lot during debugging.
When I define it before includes I often get conflicts
with kmap_types.h's use of 'D' too. It's not very nice
when a global include pollutes the name space like this.

Rename the kmap_types.h D to KMAP_D. It is only used
temporarily in the header so has no effect on anything else.

Signed-off-by: Andi Kleen <ak@linux.intel.com>

---
 include/asm-generic/kmap_types.h |   47 +++++++++++++++++++--------------------
 1 file changed, 24 insertions(+), 23 deletions(-)

Index: linux-2.6.31-rc3-ak/include/asm-generic/kmap_types.h
===================================================================
--- linux-2.6.31-rc3-ak.orig/include/asm-generic/kmap_types.h
+++ linux-2.6.31-rc3-ak/include/asm-generic/kmap_types.h
@@ -2,34 +2,35 @@
 #define _ASM_GENERIC_KMAP_TYPES_H
 
 #ifdef __WITH_KM_FENCE
-# define D(n) __KM_FENCE_##n ,
+# define KMAP_D(n) __KM_FENCE_##n ,
 #else
-# define D(n)
+# define KMAP_D(n)
 #endif
 
 enum km_type {
-D(0)	KM_BOUNCE_READ,
-D(1)	KM_SKB_SUNRPC_DATA,
-D(2)	KM_SKB_DATA_SOFTIRQ,
-D(3)	KM_USER0,
-D(4)	KM_USER1,
-D(5)	KM_BIO_SRC_IRQ,
-D(6)	KM_BIO_DST_IRQ,
-D(7)	KM_PTE0,
-D(8)	KM_PTE1,
-D(9)	KM_IRQ0,
-D(10)	KM_IRQ1,
-D(11)	KM_SOFTIRQ0,
-D(12)	KM_SOFTIRQ1,
-D(13)	KM_SYNC_ICACHE,
-D(14)	KM_SYNC_DCACHE,
-D(15)	KM_UML_USERCOPY, /* UML specific, for copy_*_user - used in do_op_one_page */
-D(16)	KM_IRQ_PTE,
-D(17)	KM_NMI,
-D(18)	KM_NMI_PTE,
-D(19)	KM_TYPE_NR
+KMAP_D(0)	KM_BOUNCE_READ,
+KMAP_D(1)	KM_SKB_SUNRPC_DATA,
+KMAP_D(2)	KM_SKB_DATA_SOFTIRQ,
+KMAP_D(3)	KM_USER0,
+KMAP_D(4)	KM_USER1,
+KMAP_D(5)	KM_BIO_SRC_IRQ,
+KMAP_D(6)	KM_BIO_DST_IRQ,
+KMAP_D(7)	KM_PTE0,
+KMAP_D(8)	KM_PTE1,
+KMAP_D(9)	KM_IRQ0,
+KMAP_D(10)	KM_IRQ1,
+KMAP_D(11)	KM_SOFTIRQ0,
+KMAP_D(12)	KM_SOFTIRQ1,
+KMAP_D(13)	KM_SYNC_ICACHE,
+KMAP_D(14)	KM_SYNC_DCACHE,
+/* UML specific, for copy_*_user - used in do_op_one_page */
+KMAP_D(15)	KM_UML_USERCOPY,
+KMAP_D(16)	KM_IRQ_PTE,
+KMAP_D(17)	KM_NMI,
+KMAP_D(18)	KM_NMI_PTE,
+KMAP_D(19)	KM_TYPE_NR
 };
 
-#undef D
+#undef KMAP_D
 
 #endif

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

* Re: [PATCH] Rename D macro in kmap_types.h
  2009-09-16 20:25 [PATCH] Rename D macro in kmap_types.h Andi Kleen
@ 2009-09-18  2:32 ` Américo Wang
  0 siblings, 0 replies; 2+ messages in thread
From: Américo Wang @ 2009-09-18  2:32 UTC (permalink / raw)
  To: Andi Kleen; +Cc: akpm, linux-kernel

On Thu, Sep 17, 2009 at 4:25 AM, Andi Kleen <andi@firstfloor.org> wrote:
> Rename D macro in kmap_types.h
>
> I tend to use a 'D' debugging macro a lot during debugging.
> When I define it before includes I often get conflicts
> with kmap_types.h's use of 'D' too. It's not very nice
> when a global include pollutes the name space like this.
>
> Rename the kmap_types.h D to KMAP_D. It is only used
> temporarily in the header so has no effect on anything else.
>
> Signed-off-by: Andi Kleen <ak@linux.intel.com>


Makes sense.

Reviewed-by: WANG Cong <xiyou.wangcong@gmail.com>

>
> ---
>  include/asm-generic/kmap_types.h |   47 +++++++++++++++++++--------------------
>  1 file changed, 24 insertions(+), 23 deletions(-)
>
> Index: linux-2.6.31-rc3-ak/include/asm-generic/kmap_types.h
> ===================================================================
> --- linux-2.6.31-rc3-ak.orig/include/asm-generic/kmap_types.h
> +++ linux-2.6.31-rc3-ak/include/asm-generic/kmap_types.h
> @@ -2,34 +2,35 @@
>  #define _ASM_GENERIC_KMAP_TYPES_H
>
>  #ifdef __WITH_KM_FENCE
> -# define D(n) __KM_FENCE_##n ,
> +# define KMAP_D(n) __KM_FENCE_##n ,
>  #else
> -# define D(n)
> +# define KMAP_D(n)
>  #endif
>
>  enum km_type {
> -D(0)   KM_BOUNCE_READ,
> -D(1)   KM_SKB_SUNRPC_DATA,
> -D(2)   KM_SKB_DATA_SOFTIRQ,
> -D(3)   KM_USER0,
> -D(4)   KM_USER1,
> -D(5)   KM_BIO_SRC_IRQ,
> -D(6)   KM_BIO_DST_IRQ,
> -D(7)   KM_PTE0,
> -D(8)   KM_PTE1,
> -D(9)   KM_IRQ0,
> -D(10)  KM_IRQ1,
> -D(11)  KM_SOFTIRQ0,
> -D(12)  KM_SOFTIRQ1,
> -D(13)  KM_SYNC_ICACHE,
> -D(14)  KM_SYNC_DCACHE,
> -D(15)  KM_UML_USERCOPY, /* UML specific, for copy_*_user - used in do_op_one_page */
> -D(16)  KM_IRQ_PTE,
> -D(17)  KM_NMI,
> -D(18)  KM_NMI_PTE,
> -D(19)  KM_TYPE_NR
> +KMAP_D(0)      KM_BOUNCE_READ,
> +KMAP_D(1)      KM_SKB_SUNRPC_DATA,
> +KMAP_D(2)      KM_SKB_DATA_SOFTIRQ,
> +KMAP_D(3)      KM_USER0,
> +KMAP_D(4)      KM_USER1,
> +KMAP_D(5)      KM_BIO_SRC_IRQ,
> +KMAP_D(6)      KM_BIO_DST_IRQ,
> +KMAP_D(7)      KM_PTE0,
> +KMAP_D(8)      KM_PTE1,
> +KMAP_D(9)      KM_IRQ0,
> +KMAP_D(10)     KM_IRQ1,
> +KMAP_D(11)     KM_SOFTIRQ0,
> +KMAP_D(12)     KM_SOFTIRQ1,
> +KMAP_D(13)     KM_SYNC_ICACHE,
> +KMAP_D(14)     KM_SYNC_DCACHE,
> +/* UML specific, for copy_*_user - used in do_op_one_page */
> +KMAP_D(15)     KM_UML_USERCOPY,
> +KMAP_D(16)     KM_IRQ_PTE,
> +KMAP_D(17)     KM_NMI,
> +KMAP_D(18)     KM_NMI_PTE,
> +KMAP_D(19)     KM_TYPE_NR
>  };
>
> -#undef D
> +#undef KMAP_D
>
>  #endif
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>

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

end of thread, other threads:[~2009-09-18  2:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-16 20:25 [PATCH] Rename D macro in kmap_types.h Andi Kleen
2009-09-18  2:32 ` Américo Wang

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