MAXCOMLEN is no longer needed in these programs, so remove the annotation
authorderaadt <deraadt@openbsd.org>
Tue, 22 Feb 2022 17:35:01 +0000 (17:35 +0000)
committerderaadt <deraadt@openbsd.org>
Tue, 22 Feb 2022 17:35:01 +0000 (17:35 +0000)
from sys/param.h include lines, or remove the include lines entirely if
it this was the least requirement.
ok millert

17 files changed:
lib/libkvm/kvm.c
lib/libkvm/kvm_file2.c
lib/libkvm/kvm_proc.c
lib/libkvm/kvm_proc2.c
usr.bin/kdump/mksubr
usr.bin/ktrace/ktrace.c
usr.bin/ktrace/subr.c
usr.bin/systat/pigs.c
usr.bin/systat/vmstat.c
usr.bin/tmux/procname.c
usr.bin/top/machine.c
usr.bin/vmstat/vmstat.c
usr.bin/w/proc_compare.c
usr.bin/w/w.c
usr.sbin/procmap/procmap.c
usr.sbin/pstat/pstat.c
usr.sbin/tcpdump/print-pflog.c

index 2309ae9..38e0571 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kvm.c,v 1.71 2022/02/20 00:09:29 deraadt Exp $ */
+/*     $OpenBSD: kvm.c,v 1.72 2022/02/22 17:35:01 deraadt Exp $ */
 /*     $NetBSD: kvm.c,v 1.43 1996/05/05 04:31:59 gwr Exp $     */
 
 /*-
@@ -34,7 +34,8 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN MID_MACHINE */
+#include <sys/param.h> /* MID_MACHINE */
+#include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/proc.h>
 #include <sys/ioctl.h>
index 2a01b02..a1f1f91 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kvm_file2.c,v 1.56 2021/09/10 00:02:43 deraadt Exp $  */
+/*     $OpenBSD: kvm_file2.c,v 1.57 2022/02/22 17:35:01 deraadt Exp $  */
 
 /*
  * Copyright (c) 2009 Todd C. Miller <millert@openbsd.org>
@@ -54,7 +54,6 @@
 
 #define __need_process
 
-#include <sys/param.h> /* MAXCOMLEN */
 #include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/uio.h>
index c6a7050..f077a14 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kvm_proc.c,v 1.62 2021/09/10 00:02:43 deraadt Exp $   */
+/*     $OpenBSD: kvm_proc.c,v 1.63 2022/02/22 17:35:01 deraadt Exp $   */
 /*     $NetBSD: kvm_proc.c,v 1.30 1999/03/24 05:50:50 mrg Exp $        */
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #define __need_process
-#include <sys/param.h> /* MAXCOMLEN PAGE_SIZE */
+#include <sys/param.h> /* VM_MIN_ADDRESS PAGE_SIZE */
 #include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/proc.h>
index 8928910..a936834 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kvm_proc2.c,v 1.37 2022/02/14 18:09:08 rob Exp $      */
+/*     $OpenBSD: kvm_proc2.c,v 1.38 2022/02/22 17:35:01 deraadt Exp $  */
 /*     $NetBSD: kvm_proc.c,v 1.30 1999/03/24 05:50:50 mrg Exp $        */
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #define __need_process
-#include <sys/param.h> /* MAXCOMLEN NODEV */
+#include <sys/param.h> /* NODEV */
 #include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/proc.h>
index 4ccbbad..d997b72 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $OpenBSD: mksubr,v 1.37 2021/09/17 15:13:50 deraadt Exp $
+# $OpenBSD: mksubr,v 1.38 2022/02/22 17:35:01 deraadt Exp $
 #
 # Copyright (c) 2006 David Kirchner <dpk@dpk.net>
 #
@@ -259,7 +259,6 @@ _EOF_
 # C start
 
 cat <<_EOF_
-#include <sys/param.h>  /* MAXCOMLEN */
 #include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/event.h>
index 56fb8da..8a4db88 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ktrace.c,v 1.38 2021/09/01 15:54:40 deraadt Exp $     */
+/*     $OpenBSD: ktrace.c,v 1.39 2022/02/22 17:35:01 deraadt Exp $     */
 /*     $NetBSD: ktrace.c,v 1.4 1995/08/31 23:01:44 jtc Exp $   */
 
 /*-
@@ -30,7 +30,6 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
 #include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/stat.h>
index cfc2304..0c51597 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: subr.c,v 1.15 2021/09/01 15:54:40 deraadt Exp $       */
+/*     $OpenBSD: subr.c,v 1.16 2022/02/22 17:35:01 deraadt Exp $       */
 /*     $NetBSD: subr.c,v 1.6 1995/08/31 23:01:45 jtc Exp $     */
 
 /*-
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
+#include <sys/types.h>
 #include <sys/time.h>
 #include <sys/signal.h>
 #include <sys/ktrace.h>
index 83c65ba..b65d023 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pigs.c,v 1.32 2019/06/28 13:35:04 deraadt Exp $       */
+/*     $OpenBSD: pigs.c,v 1.33 2022/02/22 17:35:01 deraadt Exp $       */
 /*     $NetBSD: pigs.c,v 1.3 1995/04/29 05:54:50 cgd Exp $     */
 
 /*-
@@ -34,7 +34,7 @@
  * Pigs display from Bill Reeves at Lucasfilm
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
+#include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/proc.h>
 #include <sys/resource.h>
index e1f3fd2..ce22f73 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vmstat.c,v 1.93 2022/02/22 03:33:12 deraadt Exp $     */
+/*     $OpenBSD: vmstat.c,v 1.94 2022/02/22 17:35:01 deraadt Exp $     */
 /*     $NetBSD: vmstat.c,v 1.5 1996/05/10 23:16:40 thorpej Exp $       */
 
 /*-
@@ -34,7 +34,6 @@
  * Cursed vmstat -- from Robert Elz.
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
 #include <sys/types.h>
 #include <sys/namei.h>
 #include <sys/signal.h>
index 8871abf..0ef484f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: procname.c,v 1.19 2021/12/07 00:40:03 deraadt Exp $ */
+/* $OpenBSD: procname.c,v 1.20 2022/02/22 17:35:01 deraadt Exp $ */
 
 /*
  * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -16,7 +16,6 @@
  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
 #include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/proc.h>
index 93105d6..079560a 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: machine.c,v 1.110 2020/08/26 16:21:28 kn Exp $     */
+/* $OpenBSD: machine.c,v 1.111 2022/02/22 17:35:01 deraadt Exp $        */
 
 /*-
  * Copyright (c) 1994 Thorsten Lockert <tholo@sigmasoft.com>
@@ -33,7 +33,7 @@
  *         Patch for new swapctl(2) by Tobias Weingartner <weingart@openbsd.org>
  */
 
-#include <sys/param.h> /* DEV_BSIZE MAXCOMLEN PZERO */
+#include <sys/param.h> /* DEV_BSIZE PZERO */
 #include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/mount.h>
index a17c837..17c8f06 100644 (file)
@@ -1,5 +1,5 @@
 /*     $NetBSD: vmstat.c,v 1.29.4.1 1996/06/05 00:21:05 cgd Exp $      */
-/*     $OpenBSD: vmstat.c,v 1.152 2022/02/20 00:09:29 deraadt Exp $    */
+/*     $OpenBSD: vmstat.c,v 1.153 2022/02/22 17:35:01 deraadt Exp $    */
 
 /*
  * Copyright (c) 1980, 1986, 1991, 1993
@@ -30,7 +30,6 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
 #include <sys/time.h>
 #include <sys/signal.h>
 #include <sys/proc.h>
index 4cc4ea6..0018ca7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: proc_compare.c,v 1.16 2022/02/20 00:09:29 deraadt Exp $       */
+/*     $OpenBSD: proc_compare.c,v 1.17 2022/02/22 17:35:01 deraadt Exp $       */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -29,7 +29,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
+#include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/proc.h>
 #include <sys/sysctl.h>
index 4060b4d..92afe2c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: w.c,v 1.66 2019/06/28 13:35:05 deraadt Exp $  */
+/*     $OpenBSD: w.c,v 1.67 2022/02/22 17:35:01 deraadt Exp $  */
 
 /*-
  * Copyright (c) 1980, 1991, 1993, 1994
@@ -35,7 +35,6 @@
  * This program is similar to the systat command on Tenex/Tops 10/20
  *
  */
-#include <sys/param.h> /* MAXCOMLEN */
 #include <sys/time.h>
 #include <sys/stat.h>
 #include <sys/sysctl.h>
index be1df69..16a601e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: procmap.c,v 1.68 2022/02/20 00:09:29 deraadt Exp $ */
+/*     $OpenBSD: procmap.c,v 1.69 2022/02/22 17:35:01 deraadt Exp $ */
 /*     $NetBSD: pmap.c,v 1.1 2002/09/01 20:32:44 atatat Exp $ */
 
 /*
@@ -34,7 +34,6 @@
 #include <sys/tree.h>
 #undef _KERNEL
 
-#include <sys/param.h> /* MAXCOMLEN */
 #include <sys/types.h>
 #include <sys/time.h>
 #include <sys/exec.h>
index 3a4c09e..5e24424 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pstat.c,v 1.128 2022/02/20 00:09:30 deraadt Exp $     */
+/*     $OpenBSD: pstat.c,v 1.129 2022/02/22 17:35:01 deraadt Exp $     */
 /*     $NetBSD: pstat.c,v 1.27 1996/10/23 22:50:06 cgd Exp $   */
 
 /*-
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN DEV_BSIZE */
+#include <sys/param.h> /* DEV_BSIZE */
 #include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/proc.h>
index 4f91101..d8c0b82 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: print-pflog.c,v 1.34 2021/12/01 18:28:46 deraadt Exp $        */
+/*     $OpenBSD: print-pflog.c,v 1.35 2022/02/22 17:35:01 deraadt Exp $        */
 
 /*
  * Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996
@@ -21,7 +21,7 @@
  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
+#include <sys/types.h>
 #include <sys/time.h>
 #include <sys/socket.h>
 #include <sys/file.h>