Can you confirm the fix from Rumko does not break your ulibc setup ? -- cvaroqui, http://www.opensvc.com
--- Begin Message ---
- Subject: [PATCH] Latest git -master is not compilable
- From: Rumko <rumcic@xxxxxxxxx>
- Date: Fri, 5 Feb 2010 21:02:23 +0100
- User-agent: KMail/1.9.10
Hi! In latest git -master on line 1443 of multipathd/main.c lock() is called on exit_mutex, but since exit_mutex is a pthread_mutex_t, pthread_mutex_lock() is needed. Attached is the one-liner patch, tested it on a gentoo machine and seems to be working. -- Regards, RumkoFrom a6bf54d588c2d0c9d3a97541bcb7b605fd1f3ae0 Mon Sep 17 00:00:00 2001 From: Rumko <rumcic@xxxxxxxxx> Date: Fri, 5 Feb 2010 20:59:21 +0100 Subject: [PATCH] Use pthread_mutex_lock() instead of lock() since we are dealing with a mutex directly. --- multipathd/main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/multipathd/main.c b/multipathd/main.c index e7955bd..3f7eb49 100644 --- a/multipathd/main.c +++ b/multipathd/main.c @@ -1440,7 +1440,7 @@ child (void * param) pthread_create(&uxlsnr_thr, &misc_attr, uxlsnrloop, vecs); pthread_attr_destroy(&misc_attr); - lock(&exit_mutex); + pthread_mutex_lock(&exit_mutex); pthread_cond_wait(&exit_cond, &exit_mutex); /* -- 1.6.6Attachment: signature.asc
Description: This is a digitally signed message part.
--- End Message ---
-- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel