summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_aio.c
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>1999-01-28 00:57:57 +0000
committerdillon <dillon@FreeBSD.org>1999-01-28 00:57:57 +0000
commit975fba8a24263006afbbb4e38dd6bf515bdf4b43 (patch)
treeda30cbbe5e5f3c775029e38108f63aa8b8cd17b7 /sys/kern/vfs_aio.c
parent4cc7d69521756e89ce3e5ea28211fda13fc4c9ff (diff)
downloadFreeBSD-src-975fba8a24263006afbbb4e38dd6bf515bdf4b43.zip
FreeBSD-src-975fba8a24263006afbbb4e38dd6bf515bdf4b43.tar.gz
Fix warnings in preparation for adding -Wall -Wcast-qual to the
kernel compile
Diffstat (limited to 'sys/kern/vfs_aio.c')
-rw-r--r--sys/kern/vfs_aio.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c
index 08ebd85..9eb6ee9 100644
--- a/sys/kern/vfs_aio.c
+++ b/sys/kern/vfs_aio.c
@@ -13,7 +13,7 @@
* bad that happens because of using this software isn't the responsibility
* of the author. This software is distributed AS-IS.
*
- * $Id: vfs_aio.c,v 1.37 1999/01/21 08:29:05 dillon Exp $
+ * $Id: vfs_aio.c,v 1.38 1999/01/27 21:49:57 dillon Exp $
*/
/*
@@ -359,8 +359,9 @@ aio_free_entry(struct aiocblist *aiocbe)
}
if ((ki->kaio_flags & KAIO_WAKEUP) ||
- (ki->kaio_flags & KAIO_RUNDOWN) &&
- ((ki->kaio_buffer_count == 0) && (ki->kaio_queue_count == 0))) {
+ ((ki->kaio_flags & KAIO_RUNDOWN) &&
+ ((ki->kaio_buffer_count == 0) &&
+ (ki->kaio_queue_count == 0)))) {
ki->kaio_flags &= ~KAIO_WAKEUP;
wakeup(p);
}
@@ -797,8 +798,8 @@ aio_daemon(void *uproc)
lj->lioj_queue_finished_count++;
}
if ((ki->kaio_flags & KAIO_WAKEUP) ||
- (ki->kaio_flags & KAIO_RUNDOWN) &&
- (ki->kaio_active_count == 0)) {
+ ((ki->kaio_flags & KAIO_RUNDOWN) &&
+ (ki->kaio_active_count == 0))) {
ki->kaio_flags &= ~KAIO_WAKEUP;
wakeup(userp);
}
OpenPOWER on IntegriCloud