Author: davidxu
Date: Wed Feb 10 05:47:34 2010
New Revision: 203744
URL: http://svn.freebsd.org/changeset/base/203744

Log:
  In function umtxq_insert_queue, use parameter q (shared/exclusive queue)
  instead of hard coded constant. This does not affect RELENG_8 and previous,
  because the code only exists in the HEAD.

Modified:
  head/sys/kern/kern_umtx.c

Modified: head/sys/kern/kern_umtx.c
==============================================================================
--- head/sys/kern/kern_umtx.c   Wed Feb 10 05:43:31 2010        (r203743)
+++ head/sys/kern/kern_umtx.c   Wed Feb 10 05:47:34 2010        (r203744)
@@ -420,7 +420,7 @@ umtxq_insert_queue(struct umtx_q *uq, in
        uc = umtxq_getchain(&uq->uq_key);
        UMTXQ_LOCKED_ASSERT(uc);
        KASSERT((uq->uq_flags & UQF_UMTXQ) == 0, ("umtx_q is already on 
queue"));
-       uh = umtxq_queue_lookup(&uq->uq_key, UMTX_SHARED_QUEUE);
+       uh = umtxq_queue_lookup(&uq->uq_key, q);
        if (uh != NULL) {
                LIST_INSERT_HEAD(&uc->uc_spare_queue, uq->uq_spare_queue, link);
        } else {
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to