diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-05-26 08:57:25 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-05-26 08:57:25 +0200 |
commit | f7a258a8a4503f32d6f387bd600047a24d254d72 (patch) | |
tree | 56b25fc60b0c85227cd6f881ac95f4a9577e2471 /drivers/staging | |
parent | 0badacd779df08fbbc895cf6c488e100b86c1f39 (diff) |
staging: lustre: fix build error in mdc_request.c
Turns out we need some more .h files to build properly on all arches.
Specifically prefetch.h for this file.
Reported-by: kbuild test robot <lkp@intel.com>
Fixes: 73d65c8d1a85 ("staging: lustre: remove libcfs_all.h from lustre/include/*.h")
Cc: NeilBrown <neilb@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/lustre/lustre/mdc/mdc_request.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/lustre/lustre/mdc/mdc_request.c b/drivers/staging/lustre/lustre/mdc/mdc_request.c index e2f386c86cc6..50709ffe6073 100644 --- a/drivers/staging/lustre/lustre/mdc/mdc_request.c +++ b/drivers/staging/lustre/lustre/mdc/mdc_request.c @@ -40,6 +40,7 @@ # include <linux/utsname.h> # include <linux/file.h> # include <linux/kthread.h> +#include <linux/prefetch.h> #include <lustre_errno.h> #include <cl_object.h> |