public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ia64: export flush_icache_range for module use
@ 2015-06-02 18:33 Luis R. Rodriguez
  2015-06-02 18:33 ` Luis R. Rodriguez
  0 siblings, 1 reply; 4+ messages in thread
From: Luis R. Rodriguez @ 2015-06-02 18:33 UTC (permalink / raw)
  To: tony.luck, fenghua.yu
  Cc: linux-ia64, linux-kernel, pbonzini, boris.ostrovsky,
	Luis R. Rodriguez

From: "Luis R. Rodriguez" <mcgrof@suse.com>

This is needed the following modules:

"Linux Kernel Dump Test Tool Module"
CONFIG_LKDTM		drivers/misc/lkdtm.c

Since:
mcgrof@ergon ~/linux-next (git::master)$ git describe --contains aac416fc38cdf
v3.15-rc1~141^2~84

CONFIG_STI_CONSOLE	drivers/video/console/sticore.c
Since: beginning of new git time on Linux

Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---

Without this you can't build modules on ia64 if you've enabled
either of these modules. lkdtm is enabled on SLE11, so this helps
upkeep that tradition.

 arch/ia64/kernel/ia64_ksyms.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/ia64/kernel/ia64_ksyms.c b/arch/ia64/kernel/ia64_ksyms.c
index 5b7791d..0967310 100644
--- a/arch/ia64/kernel/ia64_ksyms.c
+++ b/arch/ia64/kernel/ia64_ksyms.c
@@ -96,3 +96,6 @@ EXPORT_SYMBOL(ia64_ivt);
 /* mcount is defined in assembly */
 EXPORT_SYMBOL(_mcount);
 #endif
+
+#include <asm/cacheflush.h>
+EXPORT_SYMBOL_GPL(flush_icache_range);
-- 
2.3.2.209.gd67f9d5.dirty


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

* [PATCH] ia64: export flush_icache_range for module use
  2015-06-02 18:33 [PATCH] ia64: export flush_icache_range for module use Luis R. Rodriguez
@ 2015-06-02 18:33 ` Luis R. Rodriguez
  2015-06-12  0:58   ` Luis R. Rodriguez
  0 siblings, 1 reply; 4+ messages in thread
From: Luis R. Rodriguez @ 2015-06-02 18:33 UTC (permalink / raw)
  To: tony.luck, fenghua.yu
  Cc: linux-ia64, linux-kernel, pbonzini, boris.ostrovsky,
	Luis R. Rodriguez

From: "Luis R. Rodriguez" <mcgrof@suse.com>

This is needed the following modules:

"Linux Kernel Dump Test Tool Module"
CONFIG_LKDTM		drivers/misc/lkdtm.c

Since:
mcgrof@ergon ~/linux-next (git::master)$ git describe --contains aac416fc38cdf
v3.15-rc1~141^2~84

CONFIG_STI_CONSOLE	drivers/video/console/sticore.c
Since: beginning of new git time on Linux

Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---

Without this you can't build modules on ia64 if you've enabled
either of these modules. lkdtm is enabled on SLE11, so this helps
upkeep that tradition.

 arch/ia64/kernel/ia64_ksyms.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/ia64/kernel/ia64_ksyms.c b/arch/ia64/kernel/ia64_ksyms.c
index 5b7791d..0967310 100644
--- a/arch/ia64/kernel/ia64_ksyms.c
+++ b/arch/ia64/kernel/ia64_ksyms.c
@@ -96,3 +96,6 @@ EXPORT_SYMBOL(ia64_ivt);
 /* mcount is defined in assembly */
 EXPORT_SYMBOL(_mcount);
 #endif
+
+#include <asm/cacheflush.h>
+EXPORT_SYMBOL_GPL(flush_icache_range);
-- 
2.3.2.209.gd67f9d5.dirty


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

* Re: [PATCH] ia64: export flush_icache_range for module use
  2015-06-02 18:33 ` Luis R. Rodriguez
@ 2015-06-12  0:58   ` Luis R. Rodriguez
  2015-06-15 22:41     ` Tony Luck
  0 siblings, 1 reply; 4+ messages in thread
From: Luis R. Rodriguez @ 2015-06-12  0:58 UTC (permalink / raw)
  To: Tony Luck, Fenghua Yu
  Cc: linux-ia64, linux-kernel@vger.kernel.org, pbonzini,
	Boris Ostrovsky, Luis R. Rodriguez

On Tue, Jun 2, 2015 at 11:33 AM, Luis R. Rodriguez
<mcgrof@do-not-panic.com> wrote:
> From: "Luis R. Rodriguez" <mcgrof@suse.com>
>
> This is needed the following modules:
>
> "Linux Kernel Dump Test Tool Module"
> CONFIG_LKDTM            drivers/misc/lkdtm.c
>
> Since:
> mcgrof@ergon ~/linux-next (git::master)$ git describe --contains aac416fc38cdf
> v3.15-rc1~141^2~84
>
> CONFIG_STI_CONSOLE      drivers/video/console/sticore.c
> Since: beginning of new git time on Linux
>
> Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>

Just a friendly reminder. Let me know if there are any issues.

 Luis

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

* Re: [PATCH] ia64: export flush_icache_range for module use
  2015-06-12  0:58   ` Luis R. Rodriguez
@ 2015-06-15 22:41     ` Tony Luck
  0 siblings, 0 replies; 4+ messages in thread
From: Tony Luck @ 2015-06-15 22:41 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: Fenghua Yu, linux-ia64@vger.kernel.org,
	linux-kernel@vger.kernel.org, pbonzini, Boris Ostrovsky

On Thu, Jun 11, 2015 at 5:58 PM, Luis R. Rodriguez <mcgrof@suse.com> wrote:
>> "Linux Kernel Dump Test Tool Module"
>> CONFIG_LKDTM            drivers/misc/lkdtm.c

> Just a friendly reminder. Let me know if there are any issues.

Ok. Got it,

-Tony

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

end of thread, other threads:[~2015-06-15 22:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-02 18:33 [PATCH] ia64: export flush_icache_range for module use Luis R. Rodriguez
2015-06-02 18:33 ` Luis R. Rodriguez
2015-06-12  0:58   ` Luis R. Rodriguez
2015-06-15 22:41     ` Tony Luck

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