From owner-svn-src-head@freebsd.org Tue Aug 8 15:54:58 2017 Return-Path: Delivered-To: svn-src-head@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 417FEDBFCD9; Tue, 8 Aug 2017 15:54:58 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-wm0-x22d.google.com (mail-wm0-x22d.google.com [IPv6:2a00:1450:400c:c09::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CDF5B67734; Tue, 8 Aug 2017 15:54:57 +0000 (UTC) (envelope-from asomers@gmail.com) Received: by mail-wm0-x22d.google.com with SMTP id m85so10927994wma.0; Tue, 08 Aug 2017 08:54:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=r59vfEwSpV8HuaQHJI5uk0WH51BnEwLyYVk57jS6ru8=; b=dbdjcY6bP3c4e/lYjOQfcA/3nT2eeg7F8oKaOb8TaF27NhR/ybn8APiSxOQay5mjrP 1qhIEnZJwQYnVC56GybUnEqI7DTba4oteVe40RrhJ/4ZsHngI+HPTVtWH6zbqW52xASs 1hjdLmFlNMpOXfG/YXxhmzPDWJN9jM5VIL8wXiFppQm98t/ejQ8MXF+2GDFnMcWbBOwC pd32ElxPfF37oYBCGbdtsRpa7tb7bZlLuxRaeDdRDLBeULe3b45p+MOsi1Dx4ZDL2K9T 7bTv+OXABo/887nOSE6ILaGYkX62xsKcnuoMkKhfUs/wEHP0P5umkA49+X6P/FbF7fnx qoVg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=r59vfEwSpV8HuaQHJI5uk0WH51BnEwLyYVk57jS6ru8=; b=fK0l17qTADq2tHXkqkhucyBtOJXOuWx4BcvrQKoN9ZTlB3Gaim25wffRTSiORDXx68 jTQ6LErTjT/H6PdncPIc8/5Ib3KGU2WYTCRTmFdEiZMts2z66XEX9MoFO3/2gfGNL+9G DpEPhq2nKjRLn313Xl0z5S933tvhv2k7V/tkgFB0J6ZQ/5XLMPpZn980Xy9TwgKPv1f9 yybekX5EULiQ/ZTTDusUfOHjugZJYFGmfzm81ul14BDydUaaEd/npyBUrI/ccqJN6v3k 82bWFYcwrSPipwVAAoJr2FpLeYVQUIzjT154UH0FKYs4G5jwK+MmExgC+IizJZd0l/eY cIdw== X-Gm-Message-State: AHYfb5hhtm8XQBhTb9O10zEjl4s9gKlsBzIv1Qh1Jbuc7PaDfQRogI0m 6Gel5PqpICxNlDLyEQwYsZZSDP7uNw== X-Received: by 10.28.152.143 with SMTP id a137mr2874298wme.176.1502207695940; Tue, 08 Aug 2017 08:54:55 -0700 (PDT) MIME-Version: 1.0 Sender: asomers@gmail.com Received: by 10.28.208.3 with HTTP; Tue, 8 Aug 2017 08:54:55 -0700 (PDT) In-Reply-To: <201607082344.u68NiAcj026917@repo.freebsd.org> References: <201607082344.u68NiAcj026917@repo.freebsd.org> From: Alan Somers Date: Tue, 8 Aug 2017 09:54:55 -0600 X-Google-Sender-Auth: w67BqhUpB5ESk340_FIizwV63ck Message-ID: Subject: Re: svn commit: r302474 - in head: cddl/lib/libdtrace tests/sys/netinet To: "George V. Neville-Neil" Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 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: Tue, 08 Aug 2017 15:54:58 -0000 On Fri, Jul 8, 2016 at 5:44 PM, George V. Neville-Neil wrote: > Author: gnn > Date: Fri Jul 8 23:44:09 2016 > New Revision: 302474 > URL: https://svnweb.freebsd.org/changeset/base/302474 > > Log: > On FreeBSD there is a setsockopt option SO_USER_COOKIE which allows > setting a 32 bit value on each socket. This can be used by applications > and DTrace as a rendezvous point so that an applicaton's data can > more easily be captured at run time. Expose the user cookie via > DTrace by updating the translator in tcp.d and add a quick test > program, a TCP server, that sets the cookie on each connection > accepted. > > Reviewed by: hiren > MFC after: 1 week > Sponsored by: Limelight Networks > Differential Revision: https://reviews.freebsd.org/D7152 I just noticed that the test program isn't hooked up to Kyua at all. Nothing will ever run it. Is there supposed to be a short atf-sh script that invokes it? -Alan