diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2013-03-30 02:02:15 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2013-03-30 02:02:15 +0000 |
commit | c204ba65e82fc819b81911ca83a5652ef73c7e65 (patch) | |
tree | be075fc59168ec889c852e1ce8320c282493c51b /sys/dev/softraidvar.h | |
parent | 021e78a7e200225eb720f6c1265ad51f5580bd2d (diff) |
Provide a default discipline interrupt handling function and migrate all of
the disciplines that now have the same interrupt code.
ok krw@
Diffstat (limited to 'sys/dev/softraidvar.h')
-rw-r--r-- | sys/dev/softraidvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/softraidvar.h b/sys/dev/softraidvar.h index 4d654d04fc6..dbbcd78ec2b 100644 --- a/sys/dev/softraidvar.h +++ b/sys/dev/softraidvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: softraidvar.h,v 1.130 2013/03/29 12:00:59 jsing Exp $ */ +/* $OpenBSD: softraidvar.h,v 1.131 2013/03/30 02:02:14 jsing Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@peereboom.us> * Copyright (c) 2008 Chris Kuethe <ckuethe@openbsd.org> @@ -697,6 +697,7 @@ int sr_raid_tur(struct sr_workunit *); int sr_raid_request_sense( struct sr_workunit *); int sr_raid_start_stop(struct sr_workunit *); int sr_raid_sync(struct sr_workunit *); +void sr_raid_intr(struct buf *); void sr_raid_startwu(struct sr_workunit *); void sr_raid_recreate_wu(struct sr_workunit *); |