From owner-svn-src-stable@freebsd.org Mon Oct 1 15:31:47 2018 Return-Path: Delivered-To: svn-src-stable@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 CD25010C18CF; Mon, 1 Oct 2018 15:31:47 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-lf1-f52.google.com (mail-lf1-f52.google.com [209.85.167.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2FAB07BE42; Mon, 1 Oct 2018 15:31:47 +0000 (UTC) (envelope-from asomers@gmail.com) Received: by mail-lf1-f52.google.com with SMTP id q39-v6so8797085lfi.8; Mon, 01 Oct 2018 08:31:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=lyYrnjdVXX4OP21pavuuYoH1wJzgbTiheGHIRHe6ddA=; b=TeG/peb8CZaKZVDhQuh9ii/x/embJ2OgL5NEl85+5Pi6MJr1J6aGJDsYQLgUkPWrvQ G6kn2VHhun1i+eGDGIhMMwx6pWDd8qqFbT7OWeDB5+wXJdhICtzu2iPBcw8b6HeCqd0G 3+L7uW0885HpOQItrihlDViTbz5WGPfqY6XOCLPtYgsngT6hpugyn1+SiIjmA2tt23MM IICOz2SzsfsW3mdSTboKgJhErIZfI/WjHlLbJiE4n4muue7DGndYZYUWgGjU3lfTfNXT tfHkUQ9o0Gc13dbvQls2Q33gUK4/qMCQJqVVfaXoa0kR3KuP5hDNk94Skj/QZsvEr6YY C1yA== X-Gm-Message-State: ABuFfojNiLjcLdk8FX+2zHcwGTWtWDUT5LIHZCaHJETKcqxQHv/Fh5JA SmNhuuhA8WL5/nR0YzOHYSDEcKXFyYLWXUneHw6Odq2E X-Google-Smtp-Source: ACcGV60apfbe9ZLW98HCRqvwradpnNXiJkmyG/XtJE8vqMWeWIPuG5FkgRw2LJ3Awk7+u0TXSYqYoTvx5yACnXqYIIA= X-Received: by 2002:ac2:5082:: with SMTP id f2-v6mr5622282lfm.47.1538407899459; Mon, 01 Oct 2018 08:31:39 -0700 (PDT) MIME-Version: 1.0 References: <201809121852.w8CIqJrm046105@repo.freebsd.org> In-Reply-To: <201809121852.w8CIqJrm046105@repo.freebsd.org> From: Alan Somers Date: Mon, 1 Oct 2018 09:31:27 -0600 Message-ID: Subject: Re: svn commit: r338617 - in stable/11: lib/libc/sys sys/compat/freebsd32 sys/kern sys/netinet sys/netinet6 sys/sys tools/regression/sockets/udp_pingpong tools/regression/sockets/unix_cmsg To: Maxim Sobolev Cc: src-committers , svn-src-all , svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2018 15:31:48 -0000 On Wed, Sep 12, 2018 at 12:52 PM Maxim Sobolev wrote: > Author: sobomax > Date: Wed Sep 12 18:52:18 2018 > New Revision: 338617 > URL: https://svnweb.freebsd.org/changeset/base/338617 > > Log: > MFC r312296 and r323254, which is new a socket option > SO_TS_CLOCK to pick from several different clock sources to > return timestamps when SO_TIMESTAMP is enabled and two > new nanosecond-precision timestamp types. This also fixes > recvmsg32() system call to properly down-convert layout of the > 64-bit structures to match what 32-bit app(s) expect. > > Bump __FreeBSD_version to indicate presence of a new > functionality. > > Differential Revision: https://reviews.freebsd.org/D9171 > > Added: > stable/11/tools/regression/sockets/udp_pingpong/ > - copied from r312296, head/tools/regression/sockets/udp_pingpong/ > Modified: > stable/11/lib/libc/sys/getsockopt.2 > stable/11/sys/compat/freebsd32/freebsd32.h > stable/11/sys/compat/freebsd32/freebsd32_misc.c > stable/11/sys/kern/uipc_socket.c > stable/11/sys/kern/uipc_usrreq.c > stable/11/sys/netinet/ip_input.c > stable/11/sys/netinet6/ip6_input.c > stable/11/sys/sys/param.h > stable/11/sys/sys/socket.h > stable/11/sys/sys/socketvar.h > stable/11/tools/regression/sockets/unix_cmsg/Makefile > stable/11/tools/regression/sockets/unix_cmsg/unix_cmsg.c > Directory Properties: > stable/11/ (props changed) > This change broke the build of tools/regression/sockets/unix_cmsg on stable/11. It looks like you need to MFC r309554 first. unix_cmsg.c:55:10: fatal error: 'uc_common.h' file not found #include "uc_common.h" ^~~~~~~~~~~~~ 1 error generated. *** Error code 1 Stop. -Alan