From a278a1df8db9ae56d721d1bb02d747f9a0f91a47 Mon Sep 17 00:00:00 2001 From: Kris Van Hees Date: Thu, 18 Oct 2012 16:53:56 +0100 Subject: [PATCH] Miscellaneous 3.6 porting work. Missing headers, catering for header movement, the occasional missing prototype, and changes in the way the syscall table is built. Signed-off-by: Kris Van Hees --- dtrace/fasttrap_dev.c | 1 + dtrace/lockstat_dev.c | 1 + 2 files changed, 2 insertions(+) diff --git a/dtrace/fasttrap_dev.c b/dtrace/fasttrap_dev.c index 18d67806e213..bf88a79e1017 100644 --- a/dtrace/fasttrap_dev.c +++ b/dtrace/fasttrap_dev.c @@ -28,6 +28,7 @@ #include #include +#include "dtrace.h" #include "dtrace_dev.h" static long fasttrap_ioctl(struct file *file, diff --git a/dtrace/lockstat_dev.c b/dtrace/lockstat_dev.c index de336b615fa4..a17a075d0809 100644 --- a/dtrace/lockstat_dev.c +++ b/dtrace/lockstat_dev.c @@ -28,6 +28,7 @@ #include #include +#include "dtrace.h" #include "dtrace_dev.h" static long lockstat_ioctl(struct file *file, -- 2.50.1