This has been defined in include/linux/security.h for some time, but was only given an EXPORT_SYMBOL for 3.2. Add a compat_* definition to avoid breaking the module load with an undefined symbol. Signed-off-by: John W. Linville <linville@xxxxxxxxxxxxx> --- include/linux/compat-3.2.h | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/include/linux/compat-3.2.h b/include/linux/compat-3.2.h index ceaaecc..08f102f 100644 --- a/include/linux/compat-3.2.h +++ b/include/linux/compat-3.2.h @@ -72,6 +72,17 @@ static inline char *hex_byte_pack(char *buf, u8 byte) return buf; } +/* + * This has been defined in include/linux/security.h for some time, but was + * only given an EXPORT_SYMBOL for 3.2. Add a compat_* definition to avoid + * breaking the compile. + */ +#define security_sk_clone(a, b) compat_security_sk_clone(a, b) + +static inline void security_sk_clone(const struct sock *sk, struct sock *newsk) +{ +} + #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(3,2,0)) */ #endif /* LINUX_3_2_COMPAT_H */ -- 1.7.4.4 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html