aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_devstat.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1999-11-16 10:56:05 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1999-11-16 10:56:05 +0000
commit2e3c8fcbd03b568879cf99db149e31002841cb8c (patch)
treed8a3cb26e484830479c8386ecba6b7d0157acc06 /sys/kern/subr_devstat.c
parentb945938c632aa17a5c1e475758d18fc9febf3cbd (diff)
downloadsrc-2e3c8fcbd03b568879cf99db149e31002841cb8c.tar.gz
src-2e3c8fcbd03b568879cf99db149e31002841cb8c.zip
This is a partial commit of the patch from PR 14914:
Alot of the code in sys/kern directly accesses the *Q_HEAD and *Q_ENTRY structures for list operations. This patch makes all list operations in sys/kern use the queue(3) macros, rather than directly accessing the *Q_{HEAD,ENTRY} structures. This batch of changes compile to the same object files. Reviewed by: phk Submitted by: Jake Burkholder <jake@checker.org> PR: 14914
Notes
Notes: svn path=/head/; revision=53212
Diffstat (limited to 'sys/kern/subr_devstat.c')
-rw-r--r--sys/kern/subr_devstat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_devstat.c b/sys/kern/subr_devstat.c
index 23b397aead13..b04662b196a0 100644
--- a/sys/kern/subr_devstat.c
+++ b/sys/kern/subr_devstat.c
@@ -281,9 +281,9 @@ sysctl_devstat SYSCTL_HANDLER_ARGS
/*
* Now push out all the devices.
*/
- for (i = 0, nds = devstat_head->stqh_first;
+ for (i = 0, nds = STAILQ_FIRST(devstat_head);
(nds != NULL) && (i < devstat_num_devs) && (error == 0);
- nds = nds->dev_links.stqe_next, i++)
+ nds = STAILQ_NEXT(nds, dev_links), i++)
error = SYSCTL_OUT(req, nds, sizeof(struct devstat));
return(error);