diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2009-07-24 14:13:29 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2009-07-24 14:13:29 +0000 |
commit | 206186e6ed159ce6cde38b2f1f1232a074b3610d (patch) | |
tree | 7c394cc14ca381ce02c972ee32159ccd9557657a /sys/dev | |
parent | 515375212b6f9aa5b770d99c9fb15e583c1e15f2 (diff) |
timeout_add -> timeout_add_sec
ok marco@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/softraid_aoe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/softraid_aoe.c b/sys/dev/softraid_aoe.c index a0d03c4668a..88362928db8 100644 --- a/sys/dev/softraid_aoe.c +++ b/sys/dev/softraid_aoe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: softraid_aoe.c,v 1.7 2009/06/03 17:39:26 ckuethe Exp $ */ +/* $OpenBSD: softraid_aoe.c,v 1.8 2009/07/24 14:13:28 blambert Exp $ */ /* * Copyright (c) 2008 Ted Unangst <tedu@openbsd.org> * Copyright (c) 2008 Marco Peereboom <marco@openbsd.org> @@ -428,7 +428,7 @@ ragain: IFQ_ENQUEUE(&ifp->if_snd, m, NULL, rv); if ((ifp->if_flags & IFF_OACTIVE) == 0) (*ifp->if_start)(ifp); - timeout_add(&ar->to, hz * 10); + timeout_add_sec(&ar->to, 10); splx(s); if (rv) { |