From owner-svn-src-all@FreeBSD.ORG Tue Oct 21 20:44:54 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 9E6FDCA4; Tue, 21 Oct 2014 20:44:54 +0000 (UTC) Received: from mail.turbocat.net (mail.turbocat.net [IPv6:2a01:4f8:d16:4514::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 44D7D6BC; Tue, 21 Oct 2014 20:44:54 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id C3B6D1FE023; Tue, 21 Oct 2014 22:44:42 +0200 (CEST) Message-ID: <5446C5BF.6080508@selasky.org> Date: Tue, 21 Oct 2014 22:44:47 +0200 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Konstantin Belousov Subject: Re: svn commit: r273377 - in head: share/man/man9 sys/amd64/amd64 sys/arm/arm sys/cam/scsi sys/cddl/contrib/opensolaris/uts/common/fs/zfs sys/cddl/dev/dtrace sys/compat/ndis sys/dev/acpi_support sys/de... References: <201410210731.s9L7VMww096983@svn.freebsd.org> <20141021161602.GD1877@kib.kiev.ua> In-Reply-To: <20141021161602.GD1877@kib.kiev.ua> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org 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: Tue, 21 Oct 2014 20:44:54 -0000 On 10/21/14 18:16, Konstantin Belousov wrote: > On Tue, Oct 21, 2014 at 07:31:22AM +0000, Hans Petter Selasky wrote: >> Author: hselasky >> Date: Tue Oct 21 07:31:21 2014 >> New Revision: 273377 >> URL: https://svnweb.freebsd.org/changeset/base/273377 >> >> Log: >> Fix multiple incorrect SYSCTL arguments in the kernel: >> >> - Wrong integer type was specified. >> >> - Wrong or missing "access" specifier. The "access" specifier >> sometimes included the SYSCTL type, which it should not, except for >> procedural SYSCTL nodes. >> >> - Logical OR where binary OR was expected. >> >> - Properly assert the "access" argument passed to all SYSCTL macros, >> using the CTASSERT macro. This applies to both static- and dynamically >> created SYSCTLs. >> >> - Properly assert the the data type for both static and dynamic >> SYSCTLs. In the case of static SYSCTLs we only assert that the data >> pointed to by the SYSCTL data pointer has the correct size, hence >> there is no easy way to assert types in the C language outside a >> C-function. >> >> - Rewrote some code which doesn't pass a constant "access" specifier >> when creating dynamic SYSCTL nodes, which is now a requirement. >> >> - Updated "EXAMPLES" section in SYSCTL manual page. >> >> MFC after: 3 days >> Sponsored by: Mellanox Technologies >> >> Modified: >> head/share/man/man9/Makefile >> head/share/man/man9/sysctl.9 >> head/sys/amd64/amd64/fpu.c >> head/sys/arm/arm/busdma_machdep-v6.c >> head/sys/arm/arm/busdma_machdep.c >> head/sys/cam/scsi/scsi_sa.c >> head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c >> head/sys/cddl/dev/dtrace/dtrace_sysctl.c >> head/sys/compat/ndis/kern_ndis.c >> head/sys/dev/acpi_support/acpi_asus.c >> head/sys/dev/acpi_support/acpi_asus_wmi.c >> head/sys/dev/acpi_support/acpi_hp.c >> head/sys/dev/acpi_support/acpi_ibm.c >> head/sys/dev/acpi_support/acpi_rapidstart.c >> head/sys/dev/acpi_support/acpi_sony.c >> head/sys/dev/bxe/bxe.c >> head/sys/dev/cxgb/cxgb_sge.c >> head/sys/dev/cxgbe/t4_main.c >> head/sys/dev/e1000/if_em.c >> head/sys/dev/e1000/if_igb.c >> head/sys/dev/e1000/if_lem.c >> head/sys/dev/hatm/if_hatm.c >> head/sys/dev/ixgbe/ixgbe.c >> head/sys/dev/ixgbe/ixv.c >> head/sys/dev/ixl/if_ixl.c >> head/sys/dev/mpr/mpr.c >> head/sys/dev/mps/mps.c >> head/sys/dev/mrsas/mrsas.c >> head/sys/dev/mrsas/mrsas.h >> head/sys/dev/mxge/if_mxge.c >> head/sys/dev/oce/oce_sysctl.c >> head/sys/dev/qlxgb/qla_os.c >> head/sys/dev/qlxgbe/ql_os.c >> head/sys/dev/rt/if_rt.c >> head/sys/dev/sound/pci/hda/hdaa.c >> head/sys/dev/vxge/vxge.c >> head/sys/dev/xen/netfront/netfront.c >> head/sys/fs/devfs/devfs_devs.c >> head/sys/fs/fuse/fuse_main.c >> head/sys/fs/fuse/fuse_vfsops.c >> head/sys/geom/geom_kern.c >> head/sys/kern/kern_cpuset.c >> head/sys/kern/kern_descrip.c >> head/sys/kern/kern_mib.c >> head/sys/kern/kern_synch.c >> head/sys/kern/subr_devstat.c >> head/sys/kern/subr_kdb.c >> head/sys/kern/subr_uio.c >> head/sys/kern/vfs_cache.c >> head/sys/mips/mips/busdma_machdep.c >> head/sys/net80211/ieee80211_ht.c >> head/sys/net80211/ieee80211_hwmp.c >> head/sys/net80211/ieee80211_mesh.c >> head/sys/net80211/ieee80211_superg.c >> head/sys/netgraph/bluetooth/common/ng_bluetooth.c >> head/sys/netgraph/ng_base.c >> head/sys/netgraph/ng_socket.c >> head/sys/netinet/cc/cc_chd.c >> head/sys/netinet/tcp_timer.c >> head/sys/netipsec/ipsec.h >> head/sys/netpfil/pf/pf.c >> head/sys/ofed/drivers/net/mlx4/mlx4_en.h >> head/sys/powerpc/powermac/fcu.c >> head/sys/powerpc/powermac/smu.c >> head/sys/powerpc/powerpc/cpu.c >> head/sys/sys/sysctl.h >> head/sys/vm/memguard.c >> head/sys/vm/vm_kern.c >> head/sys/x86/x86/busdma_bounce.c > > This seems to break at least PowerPC 64bit, or some bits were not > committed. I have to add the following change to compile GENERIC64 > kernel, otherwise I get > > cc1: warnings being treated as errors > /usr/home/kostik/work/build/bsd/DEV/src/sys/powerpc/powerpc/busdma_machdep.c: In function 'alloc_bounce_zone': > /usr/home/kostik/work/build/bsd/DEV/src/sys/powerpc/powerpc/busdma_machdep.c:1030: warning: initialization from incompatible pointer type > *** [busdma_machdep.o] Error code 1 > > OTOH, I did not verified that 32bit PowerPC kernel is compilable with > the change applied. > > diff --git a/sys/powerpc/powerpc/busdma_machdep.c b/sys/powerpc/powerpc/busdma_machdep.c > index e35ecec..b58a91b 100644 > --- a/sys/powerpc/powerpc/busdma_machdep.c > +++ b/sys/powerpc/powerpc/busdma_machdep.c > @@ -1027,9 +1027,9 @@ alloc_bounce_zone(bus_dma_tag_t dmat) > SYSCTL_ADD_STRING(busdma_sysctl_tree(bz), > SYSCTL_CHILDREN(busdma_sysctl_tree_top(bz)), OID_AUTO, > "lowaddr", CTLFLAG_RD, bz->lowaddrid, 0, ""); > - SYSCTL_ADD_INT(busdma_sysctl_tree(bz), > + SYSCTL_ADD_ULONG(busdma_sysctl_tree(bz), > SYSCTL_CHILDREN(busdma_sysctl_tree_top(bz)), OID_AUTO, > - "alignment", CTLFLAG_RD, &bz->alignment, 0, ""); > + "alignment", CTLFLAG_RD, &bz->alignment, ""); > > return (0); > } > > It think it is better to have it UAUTO, so that the macro will choose 32-bit or 64-bit. Sorry for the breakage. Thought that universe had passed. Will fix it shortly. --HPS