diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2013-01-15 04:03:02 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2013-01-15 04:03:02 +0000 |
commit | 3a8d22d9f914960330224d92fd4d65fbb15267c7 (patch) | |
tree | 749f5756e5bf2ada226bd303dab5351abc3dbdef /sys/dev/softraid_concat.c | |
parent | 283c26176d930594939423180229052e52c3ac67 (diff) |
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 |