From owner-svn-src-all@FreeBSD.ORG Sun Oct 5 20:47:24 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1955D77D; Sun, 5 Oct 2014 20:47:24 +0000 (UTC) Received: from mail-wg0-x229.google.com (mail-wg0-x229.google.com [IPv6:2a00:1450:400c:c00::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E2122905; Sun, 5 Oct 2014 20:47:22 +0000 (UTC) Received: by mail-wg0-f41.google.com with SMTP id b13so5092407wgh.12 for ; Sun, 05 Oct 2014 13:47:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:content-transfer-encoding :in-reply-to:user-agent; bh=k/4iCVu3UQPEoe3axZZqv4ioBm4JVJjbMjWMoIqwdaE=; b=MGaApKGrqqYnapMYTxlcKkvSh6tg7b6ZWz7GgLHMkQ0cgTrKipqOekcopD/L5zq0Lh 2af6Q6YPa76oy8TLxcLHg0puEUE7tv29OMiAe2WXtGCqpN/WWH7dVjZctH7CKfmkfrQC VYZTqM2blbh90UoxqMovAazKHtt0SPPlWFURrGj86ENNfM1pmInfBWzSf6G1b4HFlGXv +E37lojEPJdDZW0cNnN3x132DESMvUWc5uCcQPiw7XLFLbSM+IDix9uERQ9o6m57VKqn tkdgHyzrm3w8r3TUR5VAHjVem6RPzYvmkVU2wcK6PPO+KKOSO6SNRthlMkqh2Z+mDrNI 5ifQ== X-Received: by 10.194.184.166 with SMTP id ev6mr23947709wjc.61.1412542040646; Sun, 05 Oct 2014 13:47:20 -0700 (PDT) Received: from dft-labs.eu (n1x0n-1-pt.tunnel.tserv5.lon1.ipv6.he.net. [2001:470:1f08:1f7::2]) by mx.google.com with ESMTPSA id mb20sm9092887wic.9.2014.10.05.13.47.18 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 05 Oct 2014 13:47:19 -0700 (PDT) Date: Sun, 5 Oct 2014 22:47:16 +0200 From: Mateusz Guzik To: "Bjoern A. Zeeb" Subject: Re: svn commit: r272567 - in head/sys: kern sys Message-ID: <20141005204716.GE9262@dft-labs.eu> References: <201410051940.s95JeUg7069798@svn.freebsd.org> <2438AED3-AC72-4099-ACD6-E2642B4A866D@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <2438AED3-AC72-4099-ACD6-E2642B4A866D@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Konstantin Belousov , Mateusz Guzik X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Sun, 05 Oct 2014 20:47:24 -0000 On Sun, Oct 05, 2014 at 08:26:59PM +0000, Bjoern A. Zeeb wrote: > > On 05 Oct 2014, at 19:40 , Mateusz Guzik wrote: > > > Author: mjg > > Date: Sun Oct 5 19:40:29 2014 > > New Revision: 272567 > > URL: https://svnweb.freebsd.org/changeset/base/272567 > > > > Log: > > filedesc: fix up breakage introduced in 272505 > > > > Include sequence counter supports incoditionally [1]. This fixes reprted build > > problems with e.g. nvidia driver due to missing opt_capsicum.h. > > > > Replace fishy looking sizeof with offsetof. Make fde_seq the last member in > > order to simplify calculations. > > Seing this on an incremental build now for > > bmake: stopped in /scratch/tmp/bz/head.svn/lib/libkvm > > /storage/head/obj//mips.mipsel/scratch/tmp/bz/head.svn/tmp/usr/include/sys/filedesc.h:57: error: expected specifier-qualifier-list before 'seq_t' > > I’ll see if this persists with a full build but I assume it will. > I cannot reproduce it, tried with mips + QEMU config. One crap thing is that typedef uint32_t seq_t is placed before includes. Does it help if you move it after systm.h? Was the failure present prior to this patch? -- Mateusz Guzik