From 5db794f1d060b74774d6ca54a81edb5987da2602 Mon Sep 17 00:00:00 2001 From: trociny Date: Thu, 19 Sep 2013 20:20:59 +0000 Subject: Fix comments. Approved by: re (marius) MFC after: 3 days --- sbin/hastd/secondary.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sbin/hastd') diff --git a/sbin/hastd/secondary.c b/sbin/hastd/secondary.c index f766003..067c5d9 100644 --- a/sbin/hastd/secondary.c +++ b/sbin/hastd/secondary.c @@ -85,14 +85,13 @@ static TAILQ_HEAD(, hio) hio_free_list; static pthread_mutex_t hio_free_list_lock; static pthread_cond_t hio_free_list_cond; /* - * Disk thread (the one that do I/O requests) takes requests from this list. + * Disk thread (the one that does I/O requests) takes requests from this list. */ static TAILQ_HEAD(, hio) hio_disk_list; static pthread_mutex_t hio_disk_list_lock; static pthread_cond_t hio_disk_list_cond; /* - * There is one recv list for every component, although local components don't - * use recv lists as local requests are done synchronously. + * Thread that sends requests back to primary takes requests from this list. */ static TAILQ_HEAD(, hio) hio_send_list; static pthread_mutex_t hio_send_list_lock; -- cgit v1.1