Implement daemonrq_closedrive function to close a drive.

This commit is contained in:
grog 1999-06-24 08:54:09 +00:00
parent d5fdb124e1
commit 49d2ee55e5
2 changed files with 7 additions and 1 deletions

View File

@ -147,10 +147,15 @@ vinum_daemon(void)
wakeup(&vinum_finddaemon); /* wake up the caller */
break;
case daemonrq_closedrive: /* close a drive */
close_drive(request->info.drive); /* do it */
break;
case daemonrq_init: /* initialize a plex */
/* XXX */
case daemonrq_revive: /* revive a subdisk */
/* XXX */
/* FALLTHROUGH */
default:
log(LOG_WARNING, "Invalid request\n");
break;

View File

@ -33,7 +33,7 @@
* otherwise) arising in any way out of the use of this software, even if
* advised of the possibility of such damage.
*
* $Id: vinumext.h,v 1.15 1999/05/07 08:07:09 grog Exp $
* $Id: vinumext.h,v 1.19 1999/03/23 02:57:04 grog Exp grog $
*/
/* vinumext.h: external definitions */
@ -108,6 +108,7 @@ void remove_volume_entry(int volno, int force, int recurse);
void checkdiskconfig(char *);
int open_drive(struct drive *, struct proc *, int);
void close_drive(struct drive *drive);
void close_locked_drive(struct drive *drive);
int driveio(struct drive *, char *, size_t, off_t, int);
int set_drive_parms(struct drive *drive);
int init_drive(struct drive *, int);