svn commit: r334557 - head/usr.bin/top

Eitan Adler eadler at FreeBSD.org
Sun Jun 3 13:41:25 UTC 2018


Author: eadler
Date: Sun Jun  3 13:41:23 2018
New Revision: 334557
URL: https://svnweb.freebsd.org/changeset/base/334557

Log:
  top(1): restore size for kern.cp_times
  
  Restore last minute change that broke top(1).

Modified:
  head/usr.bin/top/machine.c

Modified: head/usr.bin/top/machine.c
==============================================================================
--- head/usr.bin/top/machine.c	Sun Jun  3 13:40:58 2018	(r334556)
+++ head/usr.bin/top/machine.c	Sun Jun  3 13:41:23 2018	(r334557)
@@ -384,6 +384,7 @@ machine_init(struct statics *statics)
 	times = calloc(maxcpu * CPUSTATES, sizeof(long));
 	if (times == NULL)
 		err(1, "calloc %zu bytes", size);
+	size = sizeof(long) * maxcpu * CPUSTATES;
 	if (sysctlbyname("kern.cp_times", times, &size, NULL, 0) == -1)
 		err(1, "sysctlbyname kern.cp_times");
 	pcpu_cp_time = calloc(1, size);


More information about the svn-src-all mailing list