diff options
Diffstat (limited to 'sys/scsi/mpath.c')
-rw-r--r-- | sys/scsi/mpath.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/sys/scsi/mpath.c b/sys/scsi/mpath.c index a3ae183f478..cbd0a890ca1 100644 --- a/sys/scsi/mpath.c +++ b/sys/scsi/mpath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpath.c,v 1.5 2009/10/14 01:33:22 dlg Exp $ */ +/* $OpenBSD: mpath.c,v 1.6 2009/10/22 11:56:32 dlg Exp $ */ /* * Copyright (c) 2009 David Gwynne <dlg@openbsd.org> @@ -307,3 +307,16 @@ mpath_path_detach(struct scsi_link *link, int flags) panic("mpath: unable to locate path for detach"); } + +int +mpath_path_activate(struct scsi_link *link) +{ + return (0); +} + +int +mpath_path_deactivate(struct scsi_link *link) +{ + return (0); +} + |