From 84d997e240979271472721e80980cc6d9f19b9e5 Mon Sep 17 00:00:00 2001 From: Chaskiel M Grundman Date: Thu, 14 Apr 2005 01:54:25 +0000 Subject: [PATCH] rx-dont-use-kmutex-outside-linux-kernel-20050413 FIXES 18261 don't use kmutex in prototypes outside linux kernel --- src/rx/rx_prototypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rx/rx_prototypes.h b/src/rx/rx_prototypes.h index 35a086e0d7..dc2d359b38 100644 --- a/src/rx/rx_prototypes.h +++ b/src/rx/rx_prototypes.h @@ -354,7 +354,7 @@ extern void osi_StopListener(void); /* ARCH/rx_kmutex.c */ -#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT) +#if defined(KERNEL) && defined(AFS_LINUX20_ENV) && (defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)) extern void afs_mutex_init(afs_kmutex_t * l); extern void afs_mutex_enter(afs_kmutex_t * l); extern int afs_mutex_tryenter(afs_kmutex_t * l);