diff options
author | grog <grog@FreeBSD.org> | 1999-03-02 22:00:19 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 1999-03-02 22:00:19 +0000 |
commit | 695f9c32ce164e6850f7f3447490f0cade75c58a (patch) | |
tree | 468c58f096b6722d81679c33bdca8d8189ebeff3 | |
parent | 5014b30868face57a02da850eaf592875bc1351f (diff) | |
download | FreeBSD-src-695f9c32ce164e6850f7f3447490f0cade75c58a.zip FreeBSD-src-695f9c32ce164e6850f7f3447490f0cade75c58a.tar.gz |
Change SAVECONFIG ioctl: it now writes an int parameter.
-rw-r--r-- | sys/dev/vinum/vinumio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vinum/vinumio.h b/sys/dev/vinum/vinumio.h index 105c170..a94c6f0 100644 --- a/sys/dev/vinum/vinumio.h +++ b/sys/dev/vinum/vinumio.h @@ -59,7 +59,7 @@ struct _ioctl_reply { #define VINUM_VOLCONFIG _IOWR(L, 69, struct volume) /* get volume config */ #define VINUM_PLEXSDCONFIG _IOWR(L, 70, struct sd) /* get sd config for plex (plex, sdno) */ #define VINUM_GETFREELIST _IOWR(L, 71, struct drive_freelist) /* get freelist element (drive, fe) */ -#define VINUM_SAVECONFIG _IOC(0, L, 72, 0) /* release locks, update, write config to disk */ +#define VINUM_SAVECONFIG _IOW(L, 72, int) /* write config to disk */ #define VINUM_RESETCONFIG _IOC(0, L, 73, 0) /* trash config on disk */ #define VINUM_INIT _IOC(0, L, 74, 0) /* read config from disk */ #ifdef VINUMDEBUG |