RE: [PATCH v2 5/5] ACPICA: Remove deprecated _LINUX definitions for ACPICA.

2014-04-29 Thread Zheng, Lv
Hi,

> From: Wysocki, Rafael J
> Sent: Tuesday, April 29, 2014 4:27 AM
> 
> On 4/28/2014 6:10 AM, Zheng, Lv wrote:
> > Hi, Rafael
> >
> >> From: Rafael J. Wysocki [mailto:r...@rjwysocki.net]
> >> Sent: Monday, April 28, 2014 5:39 AM
> >>
> >> On Wednesday, April 23, 2014 02:54:22 PM Lv Zheng wrote:
> >>> There are _LINUX defined so that when Linux kernel is compiled using 
> >>> broken
> >>> compilers that having not __linux__ defined can still include
> >>>  from .
> >>>
> >>> This behavior is deprecated as all drivers/acpi/acpica files are compiled
> >>> without including , thus without _LINUX defined.  As there 
> >>> is
> >>> no issues encountered when we compile ACPICA code without _LINUX defined,
> >>> it is OK to remove _LINUX from  now.
> >>>
> >>> Signed-off-by: Lv Zheng 
> >>> ---
> >>>   include/linux/acpi.h |4 
> >>>   1 file changed, 4 deletions(-)
> >>>
> >>> diff --git a/include/linux/acpi.h b/include/linux/acpi.h
> >>> index 7a8f2cd..9c559f7 100644
> >>> --- a/include/linux/acpi.h
> >>> +++ b/include/linux/acpi.h
> >>> @@ -31,10 +31,6 @@
> >>>
> >>>   #ifdef  CONFIG_ACPI
> >>>
> >>> -#ifndef _LINUX
> >>> -#define _LINUX
> >>> -#endif
> >>> -
> >>>   #include 
> >>>   #include 
> >> What about ?  Should it still check if _LINUX is 
> >> defined
> >> after this change?
> > If you mean these lines:
> >#if defined(_LINUX) || defined(__linux__)
> >#include 
> > After deleting "_LINUX" from , acenv.h still can include 
> > aclinux.h because of "__linux__".
> > Actually all drivers/acpi/acpica source files are compiled without 
> > including , so "_LINUX" defined in this file is useless to
> Linux.
> > We needn't delete "_LINUX" from acenv.h.
> >
> > "_LINUX" is only used in ACPICA makefiles, Linux never uses it:
> >
> > https://github.com/acpica/acpica/blob/master/generate/unix/Makefile.config
> > ACPICA can be compiled using the following make command:
> >make HOST=_LINUX
> > I think this is the only usage of "_LINUX" for now.
> 
> Well, my point was: If we delete the definition of _LINUX, why don't we
> drop the symbol itself from everywhere along with it?
> 
> It definitely is not useful to refer to a symbol that's never defined,
> is it?

It sounds like I should clean up acenv.h first than deleting this.
OK, I'll drop this patch from this series.
I might re-do the deletion after cleaning up the acenv.h.

Thanks and best regards
-Lv

> 
> Rafael



Re: [PATCH v2 5/5] ACPICA: Remove deprecated _LINUX definitions for ACPICA.

2014-04-28 Thread Rafael J. Wysocki

On 4/28/2014 6:10 AM, Zheng, Lv wrote:

Hi, Rafael


From: Rafael J. Wysocki [mailto:r...@rjwysocki.net]
Sent: Monday, April 28, 2014 5:39 AM

On Wednesday, April 23, 2014 02:54:22 PM Lv Zheng wrote:

There are _LINUX defined so that when Linux kernel is compiled using broken
compilers that having not __linux__ defined can still include
 from .

This behavior is deprecated as all drivers/acpi/acpica files are compiled
without including , thus without _LINUX defined.  As there is
no issues encountered when we compile ACPICA code without _LINUX defined,
it is OK to remove _LINUX from  now.

Signed-off-by: Lv Zheng 
---
  include/linux/acpi.h |4 
  1 file changed, 4 deletions(-)

diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index 7a8f2cd..9c559f7 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -31,10 +31,6 @@

  #ifdefCONFIG_ACPI

-#ifndef _LINUX
-#define _LINUX
-#endif
-
  #include 
  #include 

What about ?  Should it still check if _LINUX is defined
after this change?

If you mean these lines:
   #if defined(_LINUX) || defined(__linux__)
   #include 
After deleting "_LINUX" from , acenv.h still can include aclinux.h because 
of "__linux__".
Actually all drivers/acpi/acpica source files are compiled without including 
, so "_LINUX" defined in this file is useless to Linux.
We needn't delete "_LINUX" from acenv.h.

"_LINUX" is only used in ACPICA makefiles, Linux never uses it:
   https://github.com/acpica/acpica/blob/master/generate/unix/Makefile.config
ACPICA can be compiled using the following make command:
   make HOST=_LINUX
I think this is the only usage of "_LINUX" for now.


Well, my point was: If we delete the definition of _LINUX, why don't we 
drop the symbol itself from everywhere along with it?


It definitely is not useful to refer to a symbol that's never defined, 
is it?


Rafael

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


RE: [PATCH v2 5/5] ACPICA: Remove deprecated _LINUX definitions for ACPICA.

2014-04-27 Thread Zheng, Lv
Hi, Rafael

> From: Rafael J. Wysocki [mailto:r...@rjwysocki.net]
> Sent: Monday, April 28, 2014 5:39 AM
> 
> On Wednesday, April 23, 2014 02:54:22 PM Lv Zheng wrote:
> > There are _LINUX defined so that when Linux kernel is compiled using broken
> > compilers that having not __linux__ defined can still include
> >  from .
> >
> > This behavior is deprecated as all drivers/acpi/acpica files are compiled
> > without including , thus without _LINUX defined.  As there is
> > no issues encountered when we compile ACPICA code without _LINUX defined,
> > it is OK to remove _LINUX from  now.
> >
> > Signed-off-by: Lv Zheng 
> > ---
> >  include/linux/acpi.h |4 
> >  1 file changed, 4 deletions(-)
> >
> > diff --git a/include/linux/acpi.h b/include/linux/acpi.h
> > index 7a8f2cd..9c559f7 100644
> > --- a/include/linux/acpi.h
> > +++ b/include/linux/acpi.h
> > @@ -31,10 +31,6 @@
> >
> >  #ifdef CONFIG_ACPI
> >
> > -#ifndef _LINUX
> > -#define _LINUX
> > -#endif
> > -
> >  #include 
> >  #include 
> 
> What about ?  Should it still check if _LINUX is 
> defined
> after this change?

If you mean these lines:
  #if defined(_LINUX) || defined(__linux__)
  #include 
After deleting "_LINUX" from , acenv.h still can include 
aclinux.h because of "__linux__".
Actually all drivers/acpi/acpica source files are compiled without including 
, so "_LINUX" defined in this file is useless to Linux.
We needn't delete "_LINUX" from acenv.h.

"_LINUX" is only used in ACPICA makefiles, Linux never uses it:
  https://github.com/acpica/acpica/blob/master/generate/unix/Makefile.config
ACPICA can be compiled using the following make command:
  make HOST=_LINUX
I think this is the only usage of "_LINUX" for now.

Thanks and best regards
-Lv

> 
> 
> --
> I speak only for myself.
> Rafael J. Wysocki, Intel Open Source Technology Center.
N�r��yb�X��ǧv�^�)޺{.n�+{zX����ܨ}���Ơz�&j:+v���zZ+��+zf���h���~i���z��w���?�&�)ߢf��^jǫy�m��@A�a���
0��h���i

Re: [PATCH v2 5/5] ACPICA: Remove deprecated _LINUX definitions for ACPICA.

2014-04-27 Thread Rafael J. Wysocki
On Wednesday, April 23, 2014 02:54:22 PM Lv Zheng wrote:
> There are _LINUX defined so that when Linux kernel is compiled using broken
> compilers that having not __linux__ defined can still include
>  from .
> 
> This behavior is deprecated as all drivers/acpi/acpica files are compiled
> without including , thus without _LINUX defined.  As there is
> no issues encountered when we compile ACPICA code without _LINUX defined,
> it is OK to remove _LINUX from  now.
> 
> Signed-off-by: Lv Zheng 
> ---
>  include/linux/acpi.h |4 
>  1 file changed, 4 deletions(-)
> 
> diff --git a/include/linux/acpi.h b/include/linux/acpi.h
> index 7a8f2cd..9c559f7 100644
> --- a/include/linux/acpi.h
> +++ b/include/linux/acpi.h
> @@ -31,10 +31,6 @@
>  
>  #ifdef   CONFIG_ACPI
>  
> -#ifndef _LINUX
> -#define _LINUX
> -#endif
> -
>  #include 
>  #include 

What about ?  Should it still check if _LINUX is defined
after this change?


-- 
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH v2 5/5] ACPICA: Remove deprecated _LINUX definitions for ACPICA.

2014-04-22 Thread Lv Zheng
There are _LINUX defined so that when Linux kernel is compiled using broken
compilers that having not __linux__ defined can still include
 from .

This behavior is deprecated as all drivers/acpi/acpica files are compiled
without including , thus without _LINUX defined.  As there is
no issues encountered when we compile ACPICA code without _LINUX defined,
it is OK to remove _LINUX from  now.

Signed-off-by: Lv Zheng 
---
 include/linux/acpi.h |4 
 1 file changed, 4 deletions(-)

diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index 7a8f2cd..9c559f7 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -31,10 +31,6 @@
 
 #ifdef CONFIG_ACPI
 
-#ifndef _LINUX
-#define _LINUX
-#endif
-
 #include 
 #include 
 
-- 
1.7.10

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/