From owner-freebsd-current@freebsd.org Thu May 24 22:45:54 2018 Return-Path: Delivered-To: freebsd-current@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 9C3D9F6B637 for ; Thu, 24 May 2018 22:45:54 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from mail.protected-networks.net (mail.protected-networks.net [IPv6:2001:470:8d59:1::8]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.protected-networks.net", Issuer "Protected Networks CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 2FCFC680FB; Thu, 24 May 2018 22:45:54 +0000 (UTC) (envelope-from imb@protected-networks.net) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d= protected-networks.net; h=content-transfer-encoding :content-language:content-type:content-type:mime-version :user-agent:date:date:message-id:subject:subject:from:from; s= 201508; t=1527201952; bh=vxwBGgNNQaUclF7ow7u1t/gnT1blcUoyP4qpbMb 116w=; b=njBh1DQ6jR8/d5cUncLEGSZg3BaV+W0mUFa3AM1QZomJI/UuU9uLUco pfAxVqFh0ebS1sae4oj/q4dYey7OtDd7WjNdCcUI6/1A/ZX6p2yHBs0Bd9IgH3Kl +7ecZZE4lMleSCFz+JdTX8QH/hnAhDbphqvqiBRNIIgBnazWMvTM= Received: from toshi.auburn.protected-networks.net (unknown [IPv6:2001:470:1f07:4e1::4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: imb@mail.protected-networks.net) by mail.protected-networks.net (Postfix) with ESMTPSA id 41B801C5F9; Thu, 24 May 2018 18:45:52 -0400 (EDT) To: freebsd-current , cognet@freebsd.org From: Michael Butler Subject: SVN - r334189 breaks build Openpgp: preference=signencrypt Message-ID: Date: Thu, 24 May 2018 18:45:50 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2018 22:45:54 -0000 On a GENERIC box .. --- bridgestp.o --- /usr/src/sys/net/bridgestp.c:2046:2: error: no member named 'cstqe_next' in 'struct ifnet::(anonymous at /usr/src/sys/net/if_var.h:241:2)'; did you mean 'stqe_next'? CK_STAILQ_FOREACH(ifp, &V_ifnet, if_link) { ^ /usr/src/sys/contrib/ck/include/ck_queue.h:253:13: note: expanded from macro 'CK_STAILQ_FOREACH' (var) = CK_STAILQ_NEXT((var), field)) ^ /usr/src/sys/contrib/ck/include/ck_queue.h:291:32: note: expanded from macro 'CK_STAILQ_NEXT' (ck_pr_load_ptr(&(elm)->field.cstqe_next)) ^ /usr/src/sys/net/if_var.h:241:2: note: 'stqe_next' declared here STAILQ_ENTRY(ifnet) if_link; /* all struct ifnets are chained (CK_) */ And on a custom kernel .. --- hwpmc_mod.o --- /usr/src/sys/dev/hwpmc/hwpmc_mod.c:1727:2: error: no member named 'clh_first' in 'struct (anonymous at /usr/src/sys/dev/hwpmc/hwpmc_mod.c:178:8)'; did you mean 'lh_first'? CK_LIST_FOREACH(po, &pmc_ss_owners, po_ssnext) ^ /usr/src/sys/contrib/ck/include/ck_queue.h:363:15: note: expanded from macro 'CK_LIST_FOREACH' for ((var) = CK_LIST_FIRST((head)); \ ^ /usr/src/sys/contrib/ck/include/ck_queue.h:358:54: note: expanded from macro 'CK_LIST_FIRST' #define CK_LIST_FIRST(head) ck_pr_load_ptr(&(head)->clh_first) ^ /usr/src/sys/dev/hwpmc/hwpmc_mod.c:178:8: note: 'lh_first' declared here static LIST_HEAD(, pmc_owner) pmc_ss_owners; ^