Commit 610f7377 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

staging: lustre: obdclass: remove ccflags from Makefile



Fix up the relative paths in the .c files to properly build with the
Makefile change.

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 05932307
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -8,6 +8,3 @@ obdclass-y := linux/linux-module.o linux/linux-obdo.o linux/linux-sysctl.o \
	      mea.o lu_object.o dt_object.o capa.o cl_object.o   \
	      cl_page.o cl_lock.o cl_io.o lu_ref.o acl.o idmap.o	   \
	      lu_ucred.o


ccflags-y := -I$(src)/../include
+4 −4
Original line number Diff line number Diff line
@@ -41,10 +41,10 @@
 */

#define DEBUG_SUBSYSTEM S_SEC
#include <lu_object.h>
#include <lustre_acl.h>
#include <lustre_eacl.h>
#include <obd_support.h>
#include "../include/lu_object.h"
#include "../include/lustre_acl.h"
#include "../include/lustre_eacl.h"
#include "../include/obd_support.h"

#ifdef CONFIG_FS_POSIX_ACL

+4 −4
Original line number Diff line number Diff line
@@ -48,12 +48,12 @@
#include <linux/module.h>
#include <linux/crypto.h>

#include <obd_class.h>
#include <lustre_debug.h>
#include <lustre/lustre_idl.h>
#include "../include/obd_class.h"
#include "../include/lustre_debug.h"
#include "../include/lustre/lustre_idl.h"

#include <linux/list.h>
#include <lustre_capa.h>
#include "../include/lustre_capa.h"

#define NR_CAPAHASH 32
#define CAPA_HASH_SIZE 3000	      /* for MDS & OSS */
+4 −4
Original line number Diff line number Diff line
@@ -40,11 +40,11 @@

#define DEBUG_SUBSYSTEM S_CLASS

#include <obd_class.h>
#include <obd_support.h>
#include <lustre_fid.h>
#include "../include/obd_class.h"
#include "../include/obd_support.h"
#include "../include/lustre_fid.h"
#include <linux/list.h>
#include <cl_object.h>
#include "../include/cl_object.h"
#include "cl_internal.h"

/*****************************************************************************
+4 −4
Original line number Diff line number Diff line
@@ -40,11 +40,11 @@

#define DEBUG_SUBSYSTEM S_CLASS

#include <obd_class.h>
#include <obd_support.h>
#include <lustre_fid.h>
#include "../include/obd_class.h"
#include "../include/obd_support.h"
#include "../include/lustre_fid.h"
#include <linux/list.h>
#include <cl_object.h>
#include "../include/cl_object.h"
#include "cl_internal.h"

/** Lock class of cl_lock::cll_guard */
Loading