Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Feb 2018 22:35:46 +0000 (UTC)
From:      Jeff Roberson <jeff@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r329112 - user/jeff/numa/sys/kern
Message-ID:  <201802102235.w1AMZkIG075904@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jeff
Date: Sat Feb 10 22:35:46 2018
New Revision: 329112
URL: https://svnweb.freebsd.org/changeset/base/329112

Log:
  Restructure bq_insert so it is not called with a lock held.  This allows us
  to switch locks in this function in certain cases (B_AGE).
  
  Found by:	pho

Modified:
  user/jeff/numa/sys/kern/vfs_bio.c

Modified: user/jeff/numa/sys/kern/vfs_bio.c
==============================================================================
--- user/jeff/numa/sys/kern/vfs_bio.c	Sat Feb 10 22:34:47 2018	(r329111)
+++ user/jeff/numa/sys/kern/vfs_bio.c	Sat Feb 10 22:35:46 2018	(r329112)
@@ -1009,7 +1009,6 @@ bufinit(void)
 	unmapped_buf = (caddr_t)kva_alloc(MAXPHYS);
 
 	/* finally, initialize each buffer header and stick on empty q */
-	BQ_LOCK(&bqempty);
 	for (i = 0; i < nbuf; i++) {
 		bp = &buf[i];
 		bzero(bp, sizeof *bp);
@@ -1025,7 +1024,6 @@ bufinit(void)
 		BUF_LOCKINIT(bp);
 		bq_insert(&bqempty, bp, false);
 	}
-	BQ_UNLOCK(&bqempty);
 
 	/*
 	 * maxbufspace is the absolute maximum amount of buffer space we are 
@@ -1398,9 +1396,7 @@ binsfree(struct buf *bp, int qindex)
 			bq = &bd->bd_cleanq;
 	} else
 		bq = &bqdirty;
-	BQ_LOCK(bq);
 	bq_insert(bq, bp, true);
-	BQ_UNLOCK(bq);
 
 	return;
 }
@@ -1469,12 +1465,21 @@ buf_import(void *arg, void **store, int cnt, int domai
 static void
 buf_release(void *arg, void **store, int cnt)
 {
+	struct bufqueue *bq;
+	struct buf *bp;
         int i;
 
-	BQ_LOCK(&bqempty);
-        for (i = 0; i < cnt; i++)
-		bq_insert(&bqempty, store[i], false);
-	BQ_UNLOCK(&bqempty);
+	bq = &bqempty;
+	BQ_LOCK(bq);
+        for (i = 0; i < cnt; i++) {
+		bp = store[i];
+		/* Inline bq_insert() to batch locking. */
+		TAILQ_INSERT_TAIL(&bq->bq_queue, bp, b_freelist);
+		bp->b_flags &= ~(B_AGE | B_REUSE);
+		bq->bq_len++;
+		bp->b_qindex = bq->bq_index;
+	}
+	BQ_UNLOCK(bq);
 }
 
 /*
@@ -1785,26 +1790,32 @@ bq_insert(struct bufqueue *bq, struct buf *bp, bool un
 {
 	struct bufdomain *bd;
 
-	BQ_ASSERT_LOCKED(bq);
 	if (bp->b_qindex != QUEUE_NONE)
 		panic("bq_insert: free buffer %p onto another queue?", bp);
 
 	bd = &bdclean[bp->b_domain];
 	if (bp->b_flags & B_AGE) {
 		/* Place this buf directly on the real queue. */
-		if (bq->bq_index == QUEUE_CLEAN && bq != &bd->bd_cleanq) {
-			BQ_LOCK(&bd->bd_cleanq);
-			BQ_UNLOCK(bq);
+		if (bq->bq_index == QUEUE_CLEAN)
 			bq = &bd->bd_cleanq;
-		}
+		BQ_LOCK(bq);
 		TAILQ_INSERT_HEAD(&bq->bq_queue, bp, b_freelist);
-	} else
+	} else {
+		BQ_LOCK(bq);
 		TAILQ_INSERT_TAIL(&bq->bq_queue, bp, b_freelist);
+	}
 	bp->b_flags &= ~(B_AGE | B_REUSE);
 	bq->bq_len++;
 	bp->b_qindex = bq->bq_index;
 	bp->b_cpu = bq->bq_cpu;
 
+	/*
+	 * Unlock before we notify so that we don't wakeup a waiter that
+	 * fails a trylock on the buf and sleeps again.
+	 */
+	if (unlock)
+		BUF_UNLOCK(bp);
+
 	if (bp->b_qindex == QUEUE_CLEAN) {
 		/*
 		 * Flush the per-cpu queue and notify any waiters.
@@ -1813,13 +1824,7 @@ bq_insert(struct bufqueue *bq, struct buf *bp, bool un
 		    bq->bq_len >= bd->bd_lim))
 			bd_flush(bd, bq);
 	}
-
-	/*
-	 * Unlock before we notify so that we don't wakeup a waiter that
-	 * fails a trylock on the buf and sleeps again.
-	 */
-	if (unlock)
-		BUF_UNLOCK(bp);
+	BQ_UNLOCK(bq);
 }
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802102235.w1AMZkIG075904>