summaryrefslogtreecommitdiffstats
path: root/sys/i386/include
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-03-03 22:14:42 +0000
committerdg <dg@FreeBSD.org>1995-03-03 22:14:42 +0000
commit060088a329bce8bf597266e445a5c106be00453d (patch)
tree2ad574b3ce2173e973c451a61defa58b2230d0e3 /sys/i386/include
parent9dc7842c2577b5a88d023b5f5f373da763756b95 (diff)
downloadFreeBSD-src-060088a329bce8bf597266e445a5c106be00453d.zip
FreeBSD-src-060088a329bce8bf597266e445a5c106be00453d.tar.gz
Preserve reverse link integraty while doing the queue insertion.
Diffstat (limited to 'sys/i386/include')
-rw-r--r--sys/i386/include/cpufunc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/include/cpufunc.h b/sys/i386/include/cpufunc.h
index 19beff7..5ea6be2 100644
--- a/sys/i386/include/cpufunc.h
+++ b/sys/i386/include/cpufunc.h
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: cpufunc.h,v 1.32 1995/02/14 06:51:31 phk Exp $
+ * $Id: cpufunc.h,v 1.33 1995/02/16 13:21:47 bde Exp $
*/
/*
@@ -293,8 +293,8 @@ insque(void *a, void *b)
struct quehead *element = a, *head = b;
element->qh_link = head->qh_link;
- head->qh_link = element;
element->qh_rlink = head;
+ head->qh_link = element;
element->qh_link->qh_rlink = element;
}
OpenPOWER on IntegriCloud