Commit 1accaadf authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

staging: lustre: fix include relative paths



In drivers/staging/lustre/lustre/include there was a bunch of .h files
relying on ccflags to be set up right.  Make all of them proper relative
paths so that ccflags for different subdirs can be now removed.

Cc: Andreas Dilger <andreas.dilger@intel.com>
Cc: Oleg Drokin <oleg.drokin@intel.com>
Cc: hpdd-discuss <hpdd-discuss@lists.01.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent da0e6a7a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -97,8 +97,8 @@
/*
 * super-class definitions.
 */
#include <lu_object.h>
#include <lvfs.h>
#include "lu_object.h"
#include "lvfs.h"
#include <linux/mutex.h>
#include <linux/radix-tree.h>

+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@
/*
 * super-class definitions.
 */
#include <lu_object.h>
#include "lu_object.h"

#include "../../include/linux/libcfs/libcfs.h"

+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@
#include <linux/seq_file.h>
#include <linux/smp.h>
#include <linux/rwsem.h>
#include "../../include/linux/libcfs/libcfs.h"
#include "../../../include/linux/libcfs/libcfs.h"
#include <linux/statfs.h>


+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@
	(sizeof(posix_acl_xattr_header) +				\
	 LUSTRE_POSIX_ACL_MAX_ENTRIES * sizeof(posix_acl_xattr_entry))

#include <linux/lustre_intent.h>
#include "lustre_intent.h"
#include <linux/xattr.h> /* XATTR_{REPLACE,CREATE} */

#ifndef LUSTRE_POSIX_ACL_MAX_SIZE
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
#include <linux/namei.h>
#include "../../../include/linux/libcfs/linux/portals_compat25.h"

#include <linux/lustre_patchless_compat.h>
#include "lustre_patchless_compat.h"

# define LOCK_FS_STRUCT(fs)	spin_lock(&(fs)->lock)
# define UNLOCK_FS_STRUCT(fs)	spin_unlock(&(fs)->lock)
Loading