aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJustin T. Gibbs <gibbs@FreeBSD.org>1997-10-23 11:32:06 +0000
committerJustin T. Gibbs <gibbs@FreeBSD.org>1997-10-23 11:32:06 +0000
commit19166912c91dd01dfb811361420d3d42c8e6bf61 (patch)
tree4aa7ce0b5e6becca6ea0cd305d7f2664385b8449 /sys
parent01db51af7a328af203a7bea915d9e47ff56a77d6 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/bio.h6
-rw-r--r--sys/sys/buf.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/sys/bio.h b/sys/sys/bio.h
index 55195f1385a1..36b6b5362082 100644
--- a/sys/sys/bio.h
+++ b/sys/sys/bio.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)buf.h 8.9 (Berkeley) 3/30/95
- * $Id: buf.h,v 1.41 1997/09/16 11:44:02 bde Exp $
+ * $Id: buf.h,v 1.42 1997/09/21 22:08:58 gibbs Exp $
*/
#ifndef _SYS_BUF_H_
@@ -197,10 +197,10 @@ bufq_remove(buf_queue_head *head, struct buf *bp)
* ordering and is less expensive than
* using a CIRCLEQ.
*/
- head->insert_point == TAILQ_NEXT(bp, b_act);
+ head->insert_point = TAILQ_NEXT(bp, b_act);
}
if (bp == head->switch_point) {
- head->switch_point == TAILQ_NEXT(bp, b_act);
+ head->switch_point = TAILQ_NEXT(bp, b_act);
}
}
TAILQ_REMOVE(&head->queue, bp, b_act);
diff --git a/sys/sys/buf.h b/sys/sys/buf.h
index 55195f1385a1..36b6b5362082 100644
--- a/sys/sys/buf.h
+++ b/sys/sys/buf.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)buf.h 8.9 (Berkeley) 3/30/95
- * $Id: buf.h,v 1.41 1997/09/16 11:44:02 bde Exp $
+ * $Id: buf.h,v 1.42 1997/09/21 22:08:58 gibbs Exp $
*/
#ifndef _SYS_BUF_H_
@@ -197,10 +197,10 @@ bufq_remove(buf_queue_head *head, struct buf *bp)
* ordering and is less expensive than
* using a CIRCLEQ.
*/
- head->insert_point == TAILQ_NEXT(bp, b_act);
+ head->insert_point = TAILQ_NEXT(bp, b_act);
}
if (bp == head->switch_point) {
- head->switch_point == TAILQ_NEXT(bp, b_act);
+ head->switch_point = TAILQ_NEXT(bp, b_act);
}
}
TAILQ_REMOVE(&head->queue, bp, b_act);