Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 97ef1bb0 authored by David S. Miller's avatar David S. Miller
Browse files

[TIPC]: Fix headercheck wrt. tipc_config.h



It wants string functions like memcpy() for inline
routines, and these define userland interfaces.

The only clean way to deal with this is to simply
put linux/string.h into unifdef-y and have it
include <string.h> when not-__KERNEL__.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f3baa482
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -326,6 +326,7 @@ unifdef-y += sonypi.h
unifdef-y += soundcard.h
unifdef-y += soundcard.h
unifdef-y += stat.h
unifdef-y += stat.h
unifdef-y += stddef.h
unifdef-y += stddef.h
unifdef-y += string.h
unifdef-y += synclink.h
unifdef-y += synclink.h
unifdef-y += sysctl.h
unifdef-y += sysctl.h
unifdef-y += tcp.h
unifdef-y += tcp.h
+3 −9
Original line number Original line Diff line number Diff line
@@ -3,16 +3,14 @@


/* We don't want strings.h stuff being user by user stuff by accident */
/* We don't want strings.h stuff being user by user stuff by accident */


#ifdef __KERNEL__
#ifndef __KERNEL__
#include <string.h>
#else


#include <linux/compiler.h>	/* for inline */
#include <linux/compiler.h>	/* for inline */
#include <linux/types.h>	/* for size_t */
#include <linux/types.h>	/* for size_t */
#include <linux/stddef.h>	/* for NULL */
#include <linux/stddef.h>	/* for NULL */


#ifdef __cplusplus
extern "C" {
#endif

extern char *strndup_user(const char __user *, long);
extern char *strndup_user(const char __user *, long);


/*
/*
@@ -111,9 +109,5 @@ extern void *kmemdup(const void *src, size_t len, gfp_t gfp);
extern char **argv_split(gfp_t gfp, const char *str, int *argcp);
extern char **argv_split(gfp_t gfp, const char *str, int *argcp);
extern void argv_free(char **argv);
extern void argv_free(char **argv);


#ifdef __cplusplus
}
#endif

#endif
#endif
#endif /* _LINUX_STRING_H_ */
#endif /* _LINUX_STRING_H_ */