FSDEVUNMAP, late commit

This commit is contained in:
Ben Gras 2005-10-04 11:46:51 +00:00
parent 7ca48023af
commit 5b452954ba

View file

@ -24,6 +24,7 @@ Created: Feb 15, 1994 by Philip Homburg <philip@cs.vu.nl>
/* FS controls. */
#define FSSIGNON _IOW('F', 2, struct fssignon)
#define FSDEVMAP _IORW('F', 5, struct fsdevmap)
#define FSDEVUNMAP _IOW('F', 6, struct fsdevunmap)
/* Kernel controls. */
#define SYSSENDMASK _IO ('S', 4)
@ -50,6 +51,10 @@ struct fssignon {
enum dev_style style; /* Management style. */
};
struct fsdevunmap {
dev_t dev; /* Device to unmap. */
};
struct systaskinfo {
int proc_nr; /* Process number of caller. */
};