lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Tue, 08 Aug 2006 13:26:01 +1000
From:	Greg Banks <gnb@...bourne.sgi.com>
To:	Andrew Morton <akpm@...l.org>
Cc:	Zwane Mwaikambo <zwane@....linux.org.uk>,
	Linux NFS Mailing List <nfs@...ts.sourceforge.net>,
	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: [PATCH 2 of 2] cpumask: use EXPORT_SYMBOL_GPL for new exports

cpumask: use EXPORT_SYMBOL_GPL instead of EXPORT_SYMBOL to export
cpu_possible_map and cpu_online_map.  Thanks to Zwane Mwaikambo
for pointing this out.

Signed-off-by: Greg Banks <gnb@...bourne.sgi.com>
---

 arch/arm/kernel/smp.c           |    4 ++--
 arch/cris/arch-v32/kernel/smp.c |    2 +-
 arch/sh/kernel/smp.c            |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

Index: linux-2.6.18-rc2/arch/arm/kernel/smp.c
===================================================================
--- linux-2.6.18-rc2.orig/arch/arm/kernel/smp.c
+++ linux-2.6.18-rc2/arch/arm/kernel/smp.c
@@ -36,9 +36,9 @@
  * The online bitmask indicates that the CPU is up and running.
  */
 cpumask_t cpu_possible_map;
-EXPORT_SYMBOL(cpu_possible_map);
+EXPORT_SYMBOL_GPL(cpu_possible_map);
 cpumask_t cpu_online_map;
-EXPORT_SYMBOL(cpu_online_map);
+EXPORT_SYMBOL_GPL(cpu_online_map);
 
 /*
  * as from 2.5, kernels no longer have an init_tasks structure
Index: linux-2.6.18-rc2/arch/cris/arch-v32/kernel/smp.c
===================================================================
--- linux-2.6.18-rc2.orig/arch/cris/arch-v32/kernel/smp.c
+++ linux-2.6.18-rc2/arch/cris/arch-v32/kernel/smp.c
@@ -28,7 +28,7 @@ spinlock_t cris_atomic_locks[] = { [0 ..
 
 /* CPU masks */
 cpumask_t cpu_online_map = CPU_MASK_NONE;
-EXPORT_SYMBOL(cpu_online_map);
+EXPORT_SYMBOL_GPL(cpu_online_map);
 cpumask_t phys_cpu_present_map = CPU_MASK_NONE;
 EXPORT_SYMBOL(phys_cpu_present_map);
 
Index: linux-2.6.18-rc2/arch/sh/kernel/smp.c
===================================================================
--- linux-2.6.18-rc2.orig/arch/sh/kernel/smp.c
+++ linux-2.6.18-rc2/arch/sh/kernel/smp.c
@@ -42,7 +42,7 @@ cpumask_t cpu_possible_map;
 EXPORT_SYMBOL(cpu_possible_map);
 
 cpumask_t cpu_online_map;
-EXPORT_SYMBOL(cpu_online_map);
+EXPORT_SYMBOL_GPL(cpu_online_map);
 static atomic_t cpus_booted = ATOMIC_INIT(0);
 
 /* These are defined by the board-specific code. */


Greg.
-- 
Greg Banks, R&D Software Engineer, SGI Australian Software Group.
I don't speak for SGI.


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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ