From owner-freebsd-mips@freebsd.org Mon May 16 20:31:30 2016 Return-Path: Delivered-To: freebsd-mips@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 3AC1EB3DC36 for ; Mon, 16 May 2016 20:31:30 +0000 (UTC) (envelope-from mizhka@gmail.com) Received: from mail-lb0-x22f.google.com (mail-lb0-x22f.google.com [IPv6:2a00:1450:4010:c04::22f]) (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 A39C711DF for ; Mon, 16 May 2016 20:31:29 +0000 (UTC) (envelope-from mizhka@gmail.com) Received: by mail-lb0-x22f.google.com with SMTP id h1so54293899lbj.3 for ; Mon, 16 May 2016 13:31:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to; bh=niibxiTLL2gfJeJ4CkY9nv8Wi5OVTId2h7THHPQ500Y=; b=XdUzrxas92Wc6CMgSRJk6Lf1+oeWMJKTER2BMQG7yPkbRVMOaWB0oCao/fHOIwNBoG tYmqpBxarI+1XhChL0vr4jJCdbP6PJ7zzLHk/3ysZwY5fBhgbxSN99HDPUju0VrSKR5l wyMK8zFp779IH0lKhX+x55ibv07fUGURr4sUdu3eWGSpnKO0q4Jndy7mVVHUrjQcSSvQ mqV8Dl1oKvXmy/J7q86bgpq+KSIEjD/Vnkd6BOJ0Vr0oLHFbRS8FltXXge6nYKr4hZkA 0x9HBVKTQ8eO4e8QlYuPYiTeHsPaN8ms85TnXTIrQoaMChBXNXHhiInINKZmTm+FAY8v 3hYg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to; bh=niibxiTLL2gfJeJ4CkY9nv8Wi5OVTId2h7THHPQ500Y=; b=KmdOV8rWdl4Iuz5QBTnm6rK22vVTV0IMEsPqC14j7FIpeQUiHW+eTljh1/X4bgFfsv nrKTVfogixRCHrI56KMHLzrR+M0jfq+d/ylI1QUwI7j9ypw7uXRpWF4+ELiHtaRu6jti w3GaRINphuwcztWZM+mIfYm8O6CqewCpkk/Dr4iVPPvUPUq8qX+XdJpzFIte5hCiiV/K flYXJgmwEDKytdE1Sk8OBw/q+yBYB6DgtUVDZM8tlN5MCsygD/iH6xpvDEhc+jcWUObu +49jvCrSmbrbax7AFAkrDE3kCitGt+YpRfz0Dw0HBnDB2JCDr0osVs1ureXEOcxjJ/tU cZCA== X-Gm-Message-State: AOPr4FWPUH0b/p83bIFYXOqIZ/QI24Zora5caleGjPk+2XikFutoBYnxWx1UN/7nYYuvE0pp91SSWpIHZR5HRQ== MIME-Version: 1.0 X-Received: by 10.112.138.10 with SMTP id qm10mr2853657lbb.36.1463430687894; Mon, 16 May 2016 13:31:27 -0700 (PDT) Received: by 10.25.152.83 with HTTP; Mon, 16 May 2016 13:31:27 -0700 (PDT) Date: Mon, 16 May 2016 23:31:27 +0300 Message-ID: Subject: MSI & INTRNG: buildkernel error From: Michael Zhilin To: freebsd-mips@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2016 20:31:30 -0000 Hi, On today -head I get error on buildkernel @mips: subr_intr.c:73:20: error: msi_if.h: No such file or directory. I suppose it's related to recent MSI commits for INTRNG. But how to fix it? Here is full output of error: /repo/freebsd/onion/src/sys/kern/subr_intr.c:73:20: error: msi_if.h: No such file or directory cc1: warnings being treated as errors /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_alloc_msi': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1319: warning: implicit declaration of function 'MSI_ALLOC_MSI' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1319: warning: nested extern declaration of 'MSI_ALLOC_MSI' [-Wnested-externs] /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_release_msi': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1357: warning: implicit declaration of function 'MSI_RELEASE_MSI' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1357: warning: nested extern declaration of 'MSI_RELEASE_MSI' [-Wnested-externs] /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_alloc_msix': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1378: warning: implicit declaration of function 'MSI_ALLOC_MSIX' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1378: warning: nested extern declaration of 'MSI_ALLOC_MSIX' [-Wnested-externs] /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_release_msix': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1405: warning: implicit declaration of function 'MSI_RELEASE_MSIX' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1405: warning: nested extern declaration of 'MSI_RELEASE_MSIX' [-Wnested-externs] /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_map_msi': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1429: warning: implicit declaration of function 'MSI_MAP_MSI' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1429: warning: nested extern declaration of 'MSI_MAP_MSI' [-Wnested-externs] --- subr_intr.o --- *** [subr_intr.o] Error code 1 bmake[2]: stopped in /repo/freebsd/onion/obj/mipsel/mips.mipsel/repo/freebsd/onion/src/sys/BCM 1 error bmake[2]: stopped in /repo/freebsd/onion/obj/mipsel/mips.mipsel/repo/freebsd/onion/src/sys/BCM --- buildkernel --- *** [buildkernel] Error code 2 bmake[1]: stopped in /repo/freebsd/onion/src 1 error bmake[1]: stopped in /repo/freebsd/onion/src --- buildkernel --- *** [buildkernel] Error code 2 make: stopped in /repo/freebsd/onion/src 1 error make: stopped in /repo/freebsd/onion/src Thank you in advance, Michael