From owner-svn-src-all@freebsd.org Wed Sep 27 01:03:02 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61BE7E27771; Wed, 27 Sep 2017 01:03:02 +0000 (UTC) (envelope-from mjg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 288FB826B9; Wed, 27 Sep 2017 01:03:02 +0000 (UTC) (envelope-from mjg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8R1317j050445; Wed, 27 Sep 2017 01:03:01 GMT (envelope-from mjg@FreeBSD.org) Received: (from mjg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8R130UY050440; Wed, 27 Sep 2017 01:03:00 GMT (envelope-from mjg@FreeBSD.org) Message-Id: <201709270103.v8R130UY050440@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mjg set sender to mjg@FreeBSD.org using -f From: Mateusz Guzik Date: Wed, 27 Sep 2017 01:03:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r324042 - in head: . share/man/man5 targets/pseudo/userland usr.sbin usr.sbin/procctl X-SVN-Group: head X-SVN-Commit-Author: mjg X-SVN-Commit-Paths: in head: . share/man/man5 targets/pseudo/userland usr.sbin usr.sbin/procctl X-SVN-Commit-Revision: 324042 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Sep 2017 01:03:02 -0000 Author: mjg Date: Wed Sep 27 01:03:00 2017 New Revision: 324042 URL: https://svnweb.freebsd.org/changeset/base/324042 Log: Whack procctl(8) It was supposed to provide a recovery mechanism against bugs in procfs's long deprecated tracing capabilities. Remove the tool as a prerequisite to axing the kernel side. The tracing facility to use is ptrace(2). MFC after: 2 weeks Deleted: head/usr.sbin/procctl/ Modified: head/ObsoleteFiles.inc head/share/man/man5/procfs.5 head/targets/pseudo/userland/Makefile.depend head/usr.sbin/Makefile Modified: head/ObsoleteFiles.inc ============================================================================== --- head/ObsoleteFiles.inc Wed Sep 27 00:57:05 2017 (r324041) +++ head/ObsoleteFiles.inc Wed Sep 27 01:03:00 2017 (r324042) @@ -38,6 +38,9 @@ # xargs -n1 | sort | uniq -d; # done +# 20170927: procctl +OLD_FILES+=usr/share/man/man8/procctl.8.gz +OLD_FILES+=usr/sbin/procctl # 20170926: remove unneeded man aliases and locales directory OLD_FILES+=usr/share/man/en.ISO8859-1/man1 OLD_FILES+=usr/share/man/en.ISO8859-1/man2 Modified: head/share/man/man5/procfs.5 ============================================================================== --- head/share/man/man5/procfs.5 Wed Sep 27 00:57:05 2017 (r324041) +++ head/share/man/man5/procfs.5 Wed Sep 27 01:03:00 2017 (r324042) @@ -196,7 +196,6 @@ file system on .Xr mount 2 , .Xr sigaction 2 , .Xr unmount 2 , -.Xr procctl 8 , .Xr pseudofs 9 .Sh AUTHORS .An -nosplit Modified: head/targets/pseudo/userland/Makefile.depend ============================================================================== --- head/targets/pseudo/userland/Makefile.depend Wed Sep 27 00:57:05 2017 (r324041) +++ head/targets/pseudo/userland/Makefile.depend Wed Sep 27 01:03:00 2017 (r324042) @@ -708,7 +708,6 @@ DIRDEPS+= \ usr.sbin/pppctl \ usr.sbin/praliases \ usr.sbin/praudit \ - usr.sbin/procctl \ usr.sbin/prometheus_sysctl_exporter \ usr.sbin/pstat \ usr.sbin/pw \ Modified: head/usr.sbin/Makefile ============================================================================== --- head/usr.sbin/Makefile Wed Sep 27 00:57:05 2017 (r324041) +++ head/usr.sbin/Makefile Wed Sep 27 01:03:00 2017 (r324042) @@ -61,7 +61,6 @@ SUBDIR= adduser \ pciconf \ periodic \ powerd \ - procctl \ prometheus_sysctl_exporter \ pstat \ pw \