From owner-svn-src-head@freebsd.org Sat Nov 7 18:26:51 2015 Return-Path: Delivered-To: svn-src-head@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 37EF7A2919E; Sat, 7 Nov 2015 18:26:51 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: from mail-yk0-f170.google.com (mail-yk0-f170.google.com [209.85.160.170]) (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 EA1BA1144; Sat, 7 Nov 2015 18:26:50 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: by ykdr3 with SMTP id r3so215983217ykd.1; Sat, 07 Nov 2015 10:26:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; bh=qDxlDxdDcuZMIMAuBndUoRWXAxxRWhkuS+BMyaNCPgA=; b=MIgcSSo3ibsBOO+FSz0iHFE/wrK7zn7LRDAjMgmhzYcMF6LLTbyuVpbJjHm3DZSTaa d7NpRgye+AbN29kLSD2qwsMvBZVAUYxCntNsvi3o/fznPqEJMxIU4ZR0+uZxZpIpEVBA XeYJ5BYdVKqDWbxWr61koerKGDjQq+j3xLzCw19LFiKZfsiXoAlYACD9xQLLwDkDuV6t dP0C+pBnjWSomKKR+T8445CjuHhod4iZIu0hiM7zOia6XTwJAPA6YyLeKPMuEBK+T2s2 Vn+daHy6COjGhFkyHWAdDJOEX3ctKSNvauFAUZuPZwZbQqm+GaQ9OAftuVxtlhvStVRR LOog== X-Received: by 10.13.254.69 with SMTP id o66mr15631965ywf.252.1446920810007; Sat, 07 Nov 2015 10:26:50 -0800 (PST) Received: from mail-yk0-f172.google.com (mail-yk0-f172.google.com. [209.85.160.172]) by smtp.gmail.com with ESMTPSA id t132sm4559601ywa.42.2015.11.07.10.26.49 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 07 Nov 2015 10:26:49 -0800 (PST) Received: by ykba4 with SMTP id a4so215883160ykb.3; Sat, 07 Nov 2015 10:26:49 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.129.107.8 with SMTP id g8mr15820986ywc.267.1446920809423; Sat, 07 Nov 2015 10:26:49 -0800 (PST) Reply-To: cem@FreeBSD.org Received: by 10.37.17.2 with HTTP; Sat, 7 Nov 2015 10:26:49 -0800 (PST) In-Reply-To: <563DDE73.6030307@selasky.org> References: <201511070143.tA71h13k038232@repo.freebsd.org> <563DDE73.6030307@selasky.org> Date: Sat, 7 Nov 2015 10:26:49 -0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys From: Conrad Meyer To: Hans Petter Selasky Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Nov 2015 18:26:51 -0000 Can do =E2=80=94 fixed in r290505. Thanks, Conrad On Sat, Nov 7, 2015 at 3:20 AM, Hans Petter Selasky wrote= : > On 11/07/15 09:37, Svatopluk Kraus wrote: >> >> +#define SYSCTL_NULL_U64_PTR ((unsigned *)NULL) > > > Hi Conrad, > > All the NULL macros must have correct type according to the size-check > asserts. Else they won't have any purpose: > > #define SYSCTL_NULL_U64_PTR ((uint64_t *)NULL) > #define SYSCTL_NULL_S64_PTR ((int64_t *)NULL) > > #define SYSCTL_NULL_U8_PTR ((uint8_t *)NULL) > #define SYSCTL_NULL_S8_PTR ((int8_t *)NULL) > > And so one. Can you fix this? > > --HPS >