summaryrefslogtreecommitdiffstats
path: root/sys/fs/devfs/devfs_devs.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2004-06-16 09:47:26 +0000
committerphk <phk@FreeBSD.org>2004-06-16 09:47:26 +0000
commitdfd1f7fd50fffaf75541921fcf86454cd8eb3614 (patch)
tree624c885995e84df6decddd3291c60a15e50e3c85 /sys/fs/devfs/devfs_devs.c
parentcafb94bcea1cdf048e81b7eb2d24808e1a8c5280 (diff)
downloadFreeBSD-src-dfd1f7fd50fffaf75541921fcf86454cd8eb3614.zip
FreeBSD-src-dfd1f7fd50fffaf75541921fcf86454cd8eb3614.tar.gz
Do the dreaded s/dev_t/struct cdev */
Bump __FreeBSD_version accordingly.
Diffstat (limited to 'sys/fs/devfs/devfs_devs.c')
-rw-r--r--sys/fs/devfs/devfs_devs.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/fs/devfs/devfs_devs.c b/sys/fs/devfs/devfs_devs.c
index eb394d8..732a23d 100644
--- a/sys/fs/devfs/devfs_devs.c
+++ b/sys/fs/devfs/devfs_devs.c
@@ -47,8 +47,8 @@
#include <fs/devfs/devfs.h>
-static dev_t devfs_inot[NDEVFSINO];
-static dev_t *devfs_overflow;
+static struct cdev *devfs_inot[NDEVFSINO];
+static struct cdev **devfs_overflow;
static int devfs_ref[NDEVFSINO];
static int *devfs_refoverflow;
static int devfs_nextino = 3;
@@ -95,7 +95,7 @@ static int
devfs_getref(int inode)
{
int *ip, i, j;
- dev_t *dp;
+ struct cdev **dp;
ip = devfs_itor(inode);
dp = devfs_itod(inode);
@@ -124,7 +124,7 @@ devfs_itode (struct devfs_mount *dm, int inode)
return (NULL);
}
-dev_t *
+struct cdev **
devfs_itod (int inode)
{
@@ -140,7 +140,7 @@ devfs_itod (int inode)
static void
devfs_attemptoverflow(int insist)
{
- dev_t **ot;
+ struct cdev ***ot;
int *or;
int n, nb;
@@ -150,8 +150,8 @@ devfs_attemptoverflow(int insist)
ot = NULL;
or = NULL;
n = devfs_noverflowwant;
- nb = sizeof (dev_t *) * n;
- MALLOC(ot, dev_t **, nb, M_DEVFS, (insist ? M_WAITOK : M_NOWAIT) | M_ZERO);
+ nb = sizeof (struct cdev **) * n;
+ MALLOC(ot, struct cdev ***, nb, M_DEVFS, (insist ? M_WAITOK : M_NOWAIT) | M_ZERO);
if (ot == NULL)
goto bail;
nb = sizeof (int) * n;
@@ -282,7 +282,7 @@ int
devfs_populate(struct devfs_mount *dm)
{
int i, j;
- dev_t dev, pdev;
+ struct cdev *dev, *pdev;
struct devfs_dirent *dd;
struct devfs_dirent *de, **dep;
char *q, *s;
@@ -377,10 +377,10 @@ devfs_populate(struct devfs_mount *dm)
}
void
-devfs_create(dev_t dev)
+devfs_create(struct cdev *dev)
{
int ino, i, *ip;
- dev_t *dp;
+ struct cdev **dp;
for (;;) {
/* Grab the next inode number */
@@ -426,7 +426,7 @@ devfs_create(dev_t dev)
}
void
-devfs_destroy(dev_t dev)
+devfs_destroy(struct cdev *dev)
{
int ino, i;
OpenPOWER on IntegriCloud