aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/vinum
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-03-02 15:32:03 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-03-02 15:32:03 +0000
commit78b7591cc594193ab1bed401e6fee1dd27a4a542 (patch)
treedcc5db5dbf3f2cf9d63b2e3858196cb76b4583f4 /sys/dev/vinum
parentd5279f20c5747addc29c63b7748ba5d60f53259d (diff)
Notes
Diffstat (limited to 'sys/dev/vinum')
-rw-r--r--sys/dev/vinum/vinum.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/sys/dev/vinum/vinum.c b/sys/dev/vinum/vinum.c
index 0376ccb6f51f..40162715d9c4 100644
--- a/sys/dev/vinum/vinum.c
+++ b/sys/dev/vinum/vinum.c
@@ -55,10 +55,19 @@ extern struct mc malloced[];
struct cdevsw vinum_cdevsw =
{
- vinumopen, vinumclose, physread, physwrite,
- vinumioctl, seltrue, nommap, vinumstrategy,
- "vinum", VINUM_CDEV_MAJOR, nodump, nopsize,
- D_DISK
+ /* open */ vinumopen,
+ /* close */ vinumclose,
+ /* read */ physread,
+ /* write */ physwrite,
+ /* ioctl */ vinumioctl,
+ /* poll */ seltrue,
+ /* mmap */ nommap,
+ /* strategy */ vinumstrategy,
+ /* name */ "vinum",
+ /* maj */ VINUM_CDEV_MAJOR,
+ /* dump */ nodump,
+ /* psize */ nopsize,
+ /* flags */ D_DISK
};
/* Called by main() during pseudo-device attachment. */