mirror of https://gitee.com/openkylin/linux.git
staging: lustre: ksocklnd: add include path to Makefile
Rationalize include paths in the ksocklnd source code files. Signed-off-by: James Simmons <jsimmons@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
895dc4b1bf
commit
95884b8a08
|
@ -1,3 +1,6 @@
|
|||
subdir-ccflags-y += -I$(srctree)/drivers/staging/lustre/include
|
||||
subdir-ccflags-y += -I$(srctree)/drivers/staging/lustre/lustre/include
|
||||
|
||||
obj-$(CONFIG_LNET) += ksocklnd.o
|
||||
|
||||
ksocklnd-y := socklnd.o socklnd_cb.o socklnd_proto.o socklnd_modparams.o socklnd_lib.o
|
||||
|
|
|
@ -46,9 +46,9 @@
|
|||
#include <net/sock.h>
|
||||
#include <net/tcp.h>
|
||||
|
||||
#include "../../../include/linux/libcfs/libcfs.h"
|
||||
#include "../../../include/linux/lnet/lib-lnet.h"
|
||||
#include "../../../include/linux/lnet/socklnd.h"
|
||||
#include <linux/libcfs/libcfs.h>
|
||||
#include <linux/lnet/lib-lnet.h>
|
||||
#include <linux/lnet/socklnd.h>
|
||||
|
||||
/* assume one thread for each connection type */
|
||||
#define SOCKNAL_NSCHEDS 3
|
||||
|
|
Loading…
Reference in New Issue