Re: [PATCH 01/73] init: delete the __cpuinit related stubs

2014-02-07 Thread Greg Kroah-Hartman
On Tue, Jan 21, 2014 at 04:22:04PM -0500, Paul Gortmaker wrote:
> The __cpuinit support was removed several releases ago.  People
> have had a chance to update their out of tree code, so now we
> remove the no-op stubs.
> 
> Also delete the mention of __cpuinitdata from the tag script.
> 
> Cc: Andrew Morton 
> Cc: Greg Kroah-Hartman 
> Signed-off-by: Paul Gortmaker 

Acked-by: Greg Kroah-Hartman 
--
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 01/73] init: delete the __cpuinit related stubs

2014-01-22 Thread Paul Gortmaker
On 1/21/14, Paul Gortmaker  wrote:
> The __cpuinit support was removed several releases ago.  People
> have had a chance to update their out of tree code, so now we
> remove the no-op stubs.
>
> Also delete the mention of __cpuinitdata from the tag script.
>
> Cc: Andrew Morton 
> Cc: Greg Kroah-Hartman 
> Signed-off-by: Paul Gortmaker 
> ---
>  include/linux/init.h | 11 ---
>  scripts/tags.sh  |  2 +-
>  2 files changed, 1 insertion(+), 12 deletions(-)
>  mode change 100755 => 100644 scripts

Odd.  I definitely did not chmod -x this file manually.
Wonder how that happened?  Will fix...

Paul.
--

>
> diff --git a/include/linux/init.h b/include/linux/init.h
> index e168880..f693cc3 100644
> --- a/include/linux/init.h
> +++ b/include/linux/init.h
> @@ -91,14 +91,6 @@
>
>  #define __exit  __section(.exit.text) __exitused __cold notrace
>
> -/* temporary, until all users are removed */
> -#define __cpuinit
> -#define __cpuinitdata
> -#define __cpuinitconst
> -#define __cpuexit
> -#define __cpuexitdata
> -#define __cpuexitconst
> -
>  /* Used for MEMORY_HOTPLUG */
>  #define __meminit__section(.meminit.text) __cold notrace
>  #define __meminitdata__section(.meminit.data)
> @@ -116,9 +108,6 @@
>  #define __INITRODATA .section".init.rodata","a",%progbits
>  #define __FINITDATA  .previous
>
> -/* temporary, until all users are removed */
> -#define __CPUINIT
> -
>  #define __MEMINIT.section".meminit.text", "ax"
>  #define __MEMINITDATA.section".meminit.data", "aw"
>  #define __MEMINITRODATA  .section".meminit.rodata", "a"
> diff --git a/scripts/tags.sh b/scripts/tags.sh
> old mode 100755
> new mode 100644
> index 58c4559..78382c2
> --- a/scripts/tags.sh
> +++ b/scripts/tags.sh
> @@ -150,7 +150,7 @@ exuberant()
>  {
>   all_target_sources | xargs $1 -a\
>   -I __initdata,__exitdata,__initconst,   \
> - -I __cpuinitdata,__initdata_memblock\
> + -I __initdata_memblock  \
>   -I __refdata,__attribute,__maybe_unused,__always_unused \
>   -I __acquires,__releases,__deprecated   \
>   -I __read_mostly,__aligned,cacheline_aligned\
> --
> 1.8.4.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-arch" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
--
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 01/73] init: delete the __cpuinit related stubs

2014-01-21 Thread Paul Gortmaker
The __cpuinit support was removed several releases ago.  People
have had a chance to update their out of tree code, so now we
remove the no-op stubs.

Also delete the mention of __cpuinitdata from the tag script.

Cc: Andrew Morton 
Cc: Greg Kroah-Hartman 
Signed-off-by: Paul Gortmaker 
---
 include/linux/init.h | 11 ---
 scripts/tags.sh  |  2 +-
 2 files changed, 1 insertion(+), 12 deletions(-)
 mode change 100755 => 100644 scripts/tags.sh

diff --git a/include/linux/init.h b/include/linux/init.h
index e168880..f693cc3 100644
--- a/include/linux/init.h
+++ b/include/linux/init.h
@@ -91,14 +91,6 @@
 
 #define __exit  __section(.exit.text) __exitused __cold notrace
 
-/* temporary, until all users are removed */
-#define __cpuinit
-#define __cpuinitdata
-#define __cpuinitconst
-#define __cpuexit
-#define __cpuexitdata
-#define __cpuexitconst
-
 /* Used for MEMORY_HOTPLUG */
 #define __meminit__section(.meminit.text) __cold notrace
 #define __meminitdata__section(.meminit.data)
@@ -116,9 +108,6 @@
 #define __INITRODATA   .section".init.rodata","a",%progbits
 #define __FINITDATA.previous
 
-/* temporary, until all users are removed */
-#define __CPUINIT
-
 #define __MEMINIT.section  ".meminit.text", "ax"
 #define __MEMINITDATA.section  ".meminit.data", "aw"
 #define __MEMINITRODATA  .section  ".meminit.rodata", "a"
diff --git a/scripts/tags.sh b/scripts/tags.sh
old mode 100755
new mode 100644
index 58c4559..78382c2
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -150,7 +150,7 @@ exuberant()
 {
all_target_sources | xargs $1 -a\
-I __initdata,__exitdata,__initconst,   \
-   -I __cpuinitdata,__initdata_memblock\
+   -I __initdata_memblock  \
-I __refdata,__attribute,__maybe_unused,__always_unused \
-I __acquires,__releases,__deprecated   \
-I __read_mostly,__aligned,cacheline_aligned\
-- 
1.8.4.1

--
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/