Received: by mail.netbsd.org (Postfix, from userid 605) id 0E49E84D71; Wed, 22 Aug 2018 12:14:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 17EF984D6F for ; Wed, 22 Aug 2018 12:14:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id VW3AHmTkYJ7h for ; Wed, 22 Aug 2018 12:14:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9E2F884CD6 for ; Wed, 22 Aug 2018 12:14:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 93090FBEC; Wed, 22 Aug 2018 12:14:29 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Wed, 22 Aug 2018 12:14:29 +0000 From: "Robert Elz" Subject: CVS commit: src/sys/sys To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20180822121429.93090FBEC@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: source-changes.NetBSD.org Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Robert Elz" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: kre Date: Wed Aug 22 12:14:29 UTC 2018 Modified Files: src/sys/sys: asan.h Log Message: Temporarily disable the dummy inline funcs, and replace them with __nothing until maxv sorts out the type issues - kern_malloc() (for historical reasons) takes an unsigned long parameter, not a size_t - on 64 bit arch's this makes no difference (size_t is unsigned long) but that's not true on 32 bit archs (or not all of them anyway). This should unbreak the i386 build (others?) - hopefully without damaging anything too badly. Note the type issues need fixing, just making this change permanent is not the solution. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/sys/asan.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.