diff options
| author | 2013-01-15 04:03:01 +0000 | |
|---|---|---|
| committer | 2013-01-15 04:03:01 +0000 | |
| commit | 148cc3e1b5a46af03b9dc230c5ffce2788885ffc (patch) | |
| tree | 7ab46eda56edac181ab95314472a82e3ae89df49 /sys/dev/softraid_concat.c | |
| parent | dont use amd64 is currently broken cos it has no (diff) | |
| download | wireguard-openbsd-148cc3e1b5a46af03b9dc230c5ffce2788885ffc.tar.xz wireguard-openbsd-148cc3e1b5a46af03b9dc230c5ffce2788885ffc.zip | |
Keep a function pointer to the per-discipline I/O interrupt handler in the
discipline data structure. To be used with an upcoming diff.
Diffstat (limited to 'sys/dev/softraid_concat.c')
| -rw-r--r-- | sys/dev/softraid_concat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/softraid_concat.c b/sys/dev/softraid_concat.c index 8061915c82a..279e2073a18 100644 --- a/sys/dev/softraid_concat.c +++ b/sys/dev/softraid_concat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: softraid_concat.c,v 1.3 2012/10/08 14:22:41 jsing Exp $ */ +/* $OpenBSD: softraid_concat.c,v 1.4 2013/01/15 04:03:01 jsing Exp $ */ /* * Copyright (c) 2008 Marco Peereboom <marco@peereboom.us> * Copyright (c) 2011 Joel Sing <jsing@openbsd.org> @@ -58,6 +58,7 @@ sr_concat_discipline_init(struct sr_discipline *sd) sd->sd_create = sr_concat_create; sd->sd_free_resources = sr_concat_free_resources; sd->sd_scsi_rw = sr_concat_rw; + sd->sd_scsi_intr = sr_concat_intr; } int |
