In iskmemdev(), do not check for the minor of /dev/io. It has been
authormiod <miod@openbsd.org>
Mon, 6 Mar 2023 17:20:05 +0000 (17:20 +0000)
committermiod <miod@openbsd.org>
Mon, 6 Mar 2023 17:20:05 +0000 (17:20 +0000)
deprecated more than 25 years ago and removed more than 20.
From Crystal Kolipe, thanks!

sys/arch/amd64/amd64/conf.c
sys/arch/arm64/arm64/conf.c
sys/arch/i386/i386/conf.c
sys/arch/riscv64/riscv64/conf.c

index 83f0089..f87df42 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: conf.c,v 1.77 2023/01/14 12:11:10 kettenis Exp $      */
+/*     $OpenBSD: conf.c,v 1.78 2023/03/06 17:20:05 miod Exp $  */
 
 /*
  * Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
@@ -313,7 +313,7 @@ int
 iskmemdev(dev_t dev)
 {
 
-       return (major(dev) == mem_no && (minor(dev) < 2 || minor(dev) == 14));
+       return (major(dev) == mem_no && minor(dev) < 2);
 }
 
 /*
index 4e47542..e730a4b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: conf.c,v 1.21 2023/01/14 12:11:11 kettenis Exp $      */
+/*     $OpenBSD: conf.c,v 1.22 2023/03/06 17:20:06 miod Exp $  */
 
 /*
  * Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
@@ -255,7 +255,7 @@ int
 iskmemdev(dev_t dev)
 {
 
-       return (major(dev) == CMAJ_MM && (minor(dev) < 2 || minor(dev) == 14));
+       return (major(dev) == CMAJ_MM && minor(dev) < 2);
 }
 
 /*
index dab1da6..6761ca1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: conf.c,v 1.175 2023/01/30 10:49:04 jsg Exp $  */
+/*     $OpenBSD: conf.c,v 1.176 2023/03/06 17:20:06 miod Exp $ */
 /*     $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $       */
 
 /*
@@ -309,7 +309,7 @@ dev_t       swapdev = makedev(1, 0);
 int
 iskmemdev(dev_t dev)
 {
-       return (major(dev) == mem_no && (minor(dev) < 2 || minor(dev) == 14));
+       return (major(dev) == mem_no && minor(dev) < 2);
 }
 
 /*
index 71b2d9f..cf74888 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: conf.c,v 1.16 2023/01/24 13:29:51 jca Exp $   */
+/*     $OpenBSD: conf.c,v 1.17 2023/03/06 17:20:06 miod Exp $  */
 
 /*
  * Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
@@ -253,7 +253,7 @@ int
 iskmemdev(dev_t dev)
 {
 
-       return (major(dev) == mem_no && (minor(dev) < 2 || minor(dev) == 14));
+       return (major(dev) == mem_no && minor(dev) < 2);
 }
 
 /*