All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] microblaze: Add missing kvm_para.h to Kbuild
@ 2017-09-19 14:54 Michal Simek
  2017-09-19 15:14 ` Tobias Klauser
  2017-09-25 12:49 ` Michal Hocko
  0 siblings, 2 replies; 3+ messages in thread
From: Michal Simek @ 2017-09-19 14:54 UTC (permalink / raw)
  To: linux-kernel, monstr
  Cc: Geert Uytterhoeven, Michal Hocko, Masahiro Yamada, Daniel Vetter,
	Russell King, Nicolas Dichtel, Thomas Gleixner

Running make allmodconfig;make is throwing compilation error:
  CC      kernel/watchdog.o
In file included from ./include/linux/kvm_para.h:4:0,
                 from kernel/watchdog.c:29:
./include/uapi/linux/kvm_para.h:32:26: fatal error: asm/kvm_para.h: No
such file or directory
 #include <asm/kvm_para.h>
                          ^
compilation terminated.
make[1]: *** [kernel/watchdog.o] Error 1
make: *** [kernel/watchdog.o] Error 2

Reported-by: Michal Hocko <mhocko@kernel.org>
Suggested-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Fixes: 83f0124ad81e87b ("microblaze: remove asm-generic wrapper headers")
---

 arch/microblaze/include/uapi/asm/Kbuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/microblaze/include/uapi/asm/Kbuild b/arch/microblaze/include/uapi/asm/Kbuild
index e77a596f3f1e..06609ca36115 100644
--- a/arch/microblaze/include/uapi/asm/Kbuild
+++ b/arch/microblaze/include/uapi/asm/Kbuild
@@ -7,6 +7,7 @@ generic-y += fcntl.h
 generic-y += ioctl.h
 generic-y += ioctls.h
 generic-y += ipcbuf.h
+generic-y += kvm_para.h
 generic-y += mman.h
 generic-y += msgbuf.h
 generic-y += param.h
-- 
1.9.1

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

* Re: [PATCH] microblaze: Add missing kvm_para.h to Kbuild
  2017-09-19 14:54 [PATCH] microblaze: Add missing kvm_para.h to Kbuild Michal Simek
@ 2017-09-19 15:14 ` Tobias Klauser
  2017-09-25 12:49 ` Michal Hocko
  1 sibling, 0 replies; 3+ messages in thread
From: Tobias Klauser @ 2017-09-19 15:14 UTC (permalink / raw)
  To: Michal Simek
  Cc: linux-kernel, monstr, Geert Uytterhoeven, Michal Hocko,
	Masahiro Yamada, Daniel Vetter, Russell King, Nicolas Dichtel,
	Thomas Gleixner

On 2017-09-19 at 16:54:54 +0200, Michal Simek <michal.simek@xilinx.com> wrote:
> Running make allmodconfig;make is throwing compilation error:
>   CC      kernel/watchdog.o
> In file included from ./include/linux/kvm_para.h:4:0,
>                  from kernel/watchdog.c:29:
> ./include/uapi/linux/kvm_para.h:32:26: fatal error: asm/kvm_para.h: No
> such file or directory
>  #include <asm/kvm_para.h>
>                           ^
> compilation terminated.
> make[1]: *** [kernel/watchdog.o] Error 1
> make: *** [kernel/watchdog.o] Error 2
> 
> Reported-by: Michal Hocko <mhocko@kernel.org>
> Suggested-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> Fixes: 83f0124ad81e87b ("microblaze: remove asm-generic wrapper headers")

Ugh, I somehow missed kvm_para.h in my change. Thanks a lot for the fix!

Reviewed-by: Tobias Klauser <tklauser@distanz.ch>

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

* Re: [PATCH] microblaze: Add missing kvm_para.h to Kbuild
  2017-09-19 14:54 [PATCH] microblaze: Add missing kvm_para.h to Kbuild Michal Simek
  2017-09-19 15:14 ` Tobias Klauser
@ 2017-09-25 12:49 ` Michal Hocko
  1 sibling, 0 replies; 3+ messages in thread
From: Michal Hocko @ 2017-09-25 12:49 UTC (permalink / raw)
  To: Michal Simek
  Cc: linux-kernel, monstr, Geert Uytterhoeven, Masahiro Yamada,
	Daniel Vetter, Russell King, Nicolas Dichtel, Thomas Gleixner

On Tue 19-09-17 16:54:54, Michal Simek wrote:
> Running make allmodconfig;make is throwing compilation error:
>   CC      kernel/watchdog.o
> In file included from ./include/linux/kvm_para.h:4:0,
>                  from kernel/watchdog.c:29:
> ./include/uapi/linux/kvm_para.h:32:26: fatal error: asm/kvm_para.h: No
> such file or directory
>  #include <asm/kvm_para.h>
>                           ^
> compilation terminated.
> make[1]: *** [kernel/watchdog.o] Error 1
> make: *** [kernel/watchdog.o] Error 2
> 
> Reported-by: Michal Hocko <mhocko@kernel.org>
> Suggested-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> Fixes: 83f0124ad81e87b ("microblaze: remove asm-generic wrapper headers")

Sorry for a late answer, I was offline most of the last week
Tested-by: Michal Hocko <mhocko@suse.com>

Thanks!

> ---
> 
>  arch/microblaze/include/uapi/asm/Kbuild | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/microblaze/include/uapi/asm/Kbuild b/arch/microblaze/include/uapi/asm/Kbuild
> index e77a596f3f1e..06609ca36115 100644
> --- a/arch/microblaze/include/uapi/asm/Kbuild
> +++ b/arch/microblaze/include/uapi/asm/Kbuild
> @@ -7,6 +7,7 @@ generic-y += fcntl.h
>  generic-y += ioctl.h
>  generic-y += ioctls.h
>  generic-y += ipcbuf.h
> +generic-y += kvm_para.h
>  generic-y += mman.h
>  generic-y += msgbuf.h
>  generic-y += param.h
> -- 
> 1.9.1

-- 
Michal Hocko
SUSE Labs

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

end of thread, other threads:[~2017-09-25 12:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-19 14:54 [PATCH] microblaze: Add missing kvm_para.h to Kbuild Michal Simek
2017-09-19 15:14 ` Tobias Klauser
2017-09-25 12:49 ` Michal Hocko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.