From: Christopher J. Morrone Date: Wed, 20 Jul 2011 00:43:15 +0000 (-0700) Subject: LU-513 Make cfs_wait_event_interruptible_exclusive really exclusive X-Git-Tag: 2.1.52~45 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=c202086061147673dc6ad08c52befc4931229b86;hp=7b86fd9ab4b65070a1c977861c6f0eee60d15e4b LU-513 Make cfs_wait_event_interruptible_exclusive really exclusive Change-Id: Iea0556a006f8826f8597824131fb5110a848c434 Signed-off-by: Christopher J. Morrone Reviewed-on: http://review.whamcloud.com/1118 Tested-by: Hudson Reviewed-by: Lai Siyao Tested-by: Maloo Reviewed-by: Liang Zhen Reviewed-by: Oleg Drokin --- diff --git a/libcfs/include/libcfs/linux/portals_compat25.h b/libcfs/include/libcfs/linux/portals_compat25.h index eeac81d..56a147b 100644 --- a/libcfs/include/libcfs/linux/portals_compat25.h +++ b/libcfs/include/libcfs/linux/portals_compat25.h @@ -61,7 +61,7 @@ #define cfs_wait_event_interruptible(wq, condition, ret) \ ret = wait_event_interruptible(wq, condition) #define cfs_wait_event_interruptible_exclusive(wq, condition, ret) \ - ret = wait_event_interruptible(wq, condition) + ret = wait_event_interruptible_exclusive(wq, condition) #define UML_PID(tsk) ((tsk)->pid)