summaryrefslogtreecommitdiffstats
path: root/sys/net/if_tap.c
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2008-09-26 14:19:52 +0000
committered <ed@FreeBSD.org>2008-09-26 14:19:52 +0000
commit4212d51a7da942b0c717c9965552c9549d90de08 (patch)
treef45f750affeffb39e162226343b0db9a110c42ce /sys/net/if_tap.c
parent0a873f95fe4b1e8d5d3f6ead357fca828948b3ac (diff)
downloadFreeBSD-src-4212d51a7da942b0c717c9965552c9549d90de08.zip
FreeBSD-src-4212d51a7da942b0c717c9965552c9549d90de08.tar.gz
Remove unit2minor() use from kernel code.
When I changed kern_conf.c three months ago I made device unit numbers equal to (unneeded) device minor numbers. We used to require bitshifting, because there were eight bits in the middle that were reserved for a device major number. Not very long after I turned dev2unit(), minor(), unit2minor() and minor2unit() into macro's. The unit2minor() and minor2unit() macro's were no-ops. We'd better not remove these four macro's from the kernel, because there is a lot of (external) code that may still depend on them. For now it's harmless to remove all invocations of unit2minor() and minor2unit(). Reviewed by: kib
Diffstat (limited to 'sys/net/if_tap.c')
-rw-r--r--sys/net/if_tap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_tap.c b/sys/net/if_tap.c
index 0e0b25c..25728f4 100644
--- a/sys/net/if_tap.c
+++ b/sys/net/if_tap.c
@@ -190,7 +190,7 @@ tap_clone_create(struct if_clone *ifc, int unit, caddr_t params)
/* find any existing device, or allocate new unit number */
i = clone_create(&tapclones, &tap_cdevsw, &unit, &dev, extra);
if (i) {
- dev = make_dev(&tap_cdevsw, unit2minor(unit | extra),
+ dev = make_dev(&tap_cdevsw, unit | extra,
UID_ROOT, GID_WHEEL, 0600, "%s%d", ifc->ifc_name, unit);
if (dev != NULL) {
dev_ref(dev);
@@ -381,7 +381,7 @@ tapclone(void *arg, struct ucred *cred, char *name, int namelen, struct cdev **d
name = devname;
}
- *dev = make_dev(&tap_cdevsw, unit2minor(unit | extra),
+ *dev = make_dev(&tap_cdevsw, unit | extra,
UID_ROOT, GID_WHEEL, 0600, "%s", name);
if (*dev != NULL) {
dev_ref(*dev);
OpenPOWER on IntegriCloud