svn commit: r358472 - head/tools/boot
Ed Maste
emaste at FreeBSD.org
Sat Feb 29 19:59:23 UTC 2020
Author: emaste
Date: Sat Feb 29 19:59:21 2020
New Revision: 358472
URL: https://svnweb.freebsd.org/changeset/base/358472
Log:
CI: print wired page count on boot
This is a first step in tracking kernel memory use over time.
Modified:
head/tools/boot/ci-qemu-test.sh
Modified: head/tools/boot/ci-qemu-test.sh
==============================================================================
--- head/tools/boot/ci-qemu-test.sh Sat Feb 29 19:17:24 2020 (r358471)
+++ head/tools/boot/ci-qemu-test.sh Sat Feb 29 19:59:21 2020 (r358472)
@@ -42,7 +42,7 @@ tempdir_setup()
for dir in stand \
lib/libc lib/libedit lib/ncurses \
libexec/rtld-elf \
- bin/sh sbin/init sbin/shutdown; do
+ bin/sh sbin/init sbin/shutdown sbin/sysctl; do
make -DNO_ROOT DESTDIR=${ROOTDIR} INSTALL="install -U" \
WITHOUT_DEBUG_FILES= \
WITHOUT_MAN= \
@@ -65,6 +65,7 @@ EOF
#!/bin/sh
echo "Hello world."
+/sbin/sysctl vm.stats.vm.v_wire_count
/sbin/shutdown -p now
EOF
More information about the svn-src-all
mailing list