From owner-svn-src-stable@freebsd.org Mon Oct 1 17:59:24 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 545B610A56B0; Mon, 1 Oct 2018 17:59:24 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-lf1-f48.google.com (mail-lf1-f48.google.com [209.85.167.48]) (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 C6C4B8465E; Mon, 1 Oct 2018 17:59:23 +0000 (UTC) (envelope-from asomers@gmail.com) Received: by mail-lf1-f48.google.com with SMTP id s10-v6so3095338lfc.9; Mon, 01 Oct 2018 10:59:23 -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=kKBxg5cPAxa7+9gdmBeHHRVY0Dl8XdIevOznFJlbH0w=; b=IF0nHWK+FFYkDKbnlVcGoFYj5+9+hi2rBEwTcTSLluZuud5FHIsEmbR2r3XTTwzaRI wtnXXAVL3XVgK8TIrjsSZYMb+6+OKtIrIDgEhTFaHhsTjNAC6clbejkCLnI5qqNflZd1 xRu70/vuOGy78m6fOkXJuo7UHTLtZ386JgfEe/c6mrQi3UVQFxvqWjtJvRClBDWWF/h5 rPSbOt38pugAxkq6RdCVINo5+q4nbT32TNBzb+O5AvcAsrECYBQgAMBnhtS0dUQTUAMk GI7lbhatE8mMmI6DW7zP/kMKwKsB214lxHvLyxnU4bpk7AEk4xQEt8tsjM4tQh4WRSnO Wi2w== X-Gm-Message-State: ABuFfoigM/FZw4as378fiJI7aiW7AkMrlL6IUFNmUuR9eNL5+DDn5Ipx 091GOcKPSaNnbaktzEWpWiOGlU2ugbQ6G3mYDwC1l6OG X-Google-Smtp-Source: ACcGV62hgRd4KVfLJYfFZOceza10lGCUCS5ky8xUM02KyeQutBkxFpEXkb/PG43LRu+eXD612h0Zb2cN47Yn/jc7E+g= X-Received: by 2002:a19:6f0a:: with SMTP id k10-v6mr6495426lfc.8.1538416761921; Mon, 01 Oct 2018 10:59:21 -0700 (PDT) MIME-Version: 1.0 References: <201809121852.w8CIqJrm046105@repo.freebsd.org> In-Reply-To: From: Alan Somers Date: Mon, 1 Oct 2018 11:59:10 -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 17:59:24 -0000 Everything's working fine now. Thanks for the quick turnaround. On Mon, Oct 1, 2018 at 11:51 AM Maxim Sobolev wrote: > Thanks Alan, should be fixed now in r339066. Please let me know if you > still have any issues. > > -Max > > On Mon, Oct 1, 2018 at 8:31 AM Alan Somers wrote: > >> 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 >> >