From owner-svn-src-head@freebsd.org Sat Aug 11 16:09:28 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 596C91071943; Sat, 11 Aug 2018 16:09:28 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (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 08D1085099; Sat, 11 Aug 2018 16:09:27 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id AE61B21607; Sat, 11 Aug 2018 12:09:21 -0400 (EDT) Received: from web1 ([10.202.2.211]) by compute5.internal (MEProxy); Sat, 11 Aug 2018 12:09:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=jy6RSW KOdBSZVp/0vHql5KQAproK4QXA7Kt8CW266jo=; b=DQoJlRrXvaax9uybp+2XPH QNQUJZ1La0o7rm3BcS5guzCOo/Ann6EhvssLonvLVD3/ZZBuff9Ifex6q0uUDwI6 e46XqwnZNfg78tU4BSKTJa+zawTY3V3EsXfLBVCdQz+kFlOj44jPkzzWOdDzK6rr 5ty/YE64jszBP7xY5LBM5qG5d+NjSmExw7/5zlU3NaDG1OQSw1r4BSFKf3UFfKhU Y+S5EbK5s3KG3rJOwSkTfP74cdFuAL2MzAnPfTMb5you51CEC0sdKcEaknucH3Px 5vQ6y6SmOP5ToZWkSGTpS0X1AYzHFg7pinKMtMEo2ltUrudhQsJk39Bp0C7ikofg == X-ME-Proxy: X-ME-Sender: Received: by mailuser.nyi.internal (Postfix, from userid 99) id 3AA9194103; Sat, 11 Aug 2018 12:09:21 -0400 (EDT) Message-Id: <1534003761.1809972.1470908040.4D49BCD1@webmail.messagingengine.com> From: Brad Davis To: Kristof Provost , Devin Teske Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-9a5384d7 In-Reply-To: References: <201808110632.w7B6WVE9009976@repo.freebsd.org> Date: Sat, 11 Aug 2018 10:09:21 -0600 Subject: Re: svn commit: r337611 - head/cddl/usr.sbin/dwatch/libexec X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Aug 2018 16:09:28 -0000 On Sat, Aug 11, 2018, at 7:06 AM, Kristof Provost wrote: > Hi Devin, > On 11 Aug 2018, at 8:32, Devin Teske wrote: >> Author: dteske >> Date: Sat Aug 11 06:32:31 2018 >> New Revision: 337611 >> URL: https://svnweb.freebsd.org/changeset/base/337611 >> >> Log: >> dwatch(1): Add systop profile >> >> Provides a top-like view of syscall consumers. >> >> MFC after: 3 days >> X-MFC-to: stable/11 >> Sponsored by: Smule, Inc. >> >> Added: >> head/cddl/usr.sbin/dwatch/libexec/systop (contents, props changed) >> Modified: >> head/cddl/usr.sbin/dwatch/libexec/Makefile >> >> Modified: head/cddl/usr.sbin/dwatch/libexec/Makefile >> ============================================================================== >> --- head/cddl/usr.sbin/dwatch/libexec/Makefile Sat Aug 11 06:13:11 2018 (r337610) >> +++ head/cddl/usr.sbin/dwatch/libexec/Makefile Sat Aug 11 06:32:31 2018 (r337611) >> @@ -62,6 +62,7 @@ LINKS+= ${LIBEXECDIR}/dwatch/sendrecv ${LIBEXECDIR}/dw >> LINKS+= ${LIBEXECDIR}/dwatch/sendrecv ${LIBEXECDIR}/dwatch/send >> LINKS+= ${LIBEXECDIR}/dwatch/sendrecv ${LIBEXECDIR}/dwatch/sendmsg >> LINKS+= ${LIBEXECDIR}/dwatch/sendrecv ${LIBEXECDIR}/dwatch/sendto >> +LINKS+= ${LIBEXECDIR}/dwatch/systop ${LIBEXECDIR}/dwatch/systop > This breaks install world: > install: link /usr/obj/usr/src/amd64.amd64/release/dist/base/usr/libexec/dwatch/systop -> /usr/obj/usr/src/amd64.amd64/release/dist/base/usr/libexec/dwatch/systop: No such file or directory Hi Devin, I committed a fix in r337629 to just install systop, since that seems to be what you meant.. If not, please let me know and I would be happy to help correct that. Regards, Brad Davis