From owner-svn-src-all@freebsd.org Thu Dec 15 20:00:22 2016 Return-Path: Delivered-To: svn-src-all@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 676B0C8125B; Thu, 15 Dec 2016 20:00:22 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: from mail-qt0-f172.google.com (mail-qt0-f172.google.com [209.85.216.172]) (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 2DD1F13F; Thu, 15 Dec 2016 20:00:21 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: by mail-qt0-f172.google.com with SMTP id w33so67698926qtc.3; Thu, 15 Dec 2016 12:00:21 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:reply-to:in-reply-to:references :from:date:message-id:subject:to:cc; bh=EIIgpZc3WLggh5FqFNUFW5Gb4iOvg4XboKLxr+SvAX8=; b=G7ZKAvJL51VakpNCHJ7KOV+XiPxbaTXUGHKAxuByvmj/+BW6l630yCX3OCAUJ6Wakr 19cWdoPPEBWNhy4aBi5Qq+AnRgnNAqb4RFtzIreO5lPMMHjIe0IAB6XJfrUx+8Pyo+hR L+y0bo6++wkBJ29Rgo4Grf0iwxaE/trTxZ/IGHMTOItXpf9vrOqg/GXAog4YT+0rQtH6 bjOE6OHv1HhJ68/FT3tsgdavCRjvokw4U8+kztuCW8RF31WYuql/foo/Snt1907xVxsH OkKd9BxOaX3/AJGeskPQj4Hc8hCgznkPOFEyQEL9lg0V0kcqpldOA01P9T8gAlFQp2zu MjvQ== X-Gm-Message-State: AIkVDXIXPWBZf2vqv4VD+wqbojw+sq6QrCN8Rc6vbx9Ob+c2EAF8a5AwYXo9s0xfNbMIZg== X-Received: by 10.237.39.37 with SMTP id n34mr1959172qtd.128.1481832018990; Thu, 15 Dec 2016 12:00:18 -0800 (PST) Received: from mail-qk0-f176.google.com (mail-qk0-f176.google.com. [209.85.220.176]) by smtp.gmail.com with ESMTPSA id h47sm1878448qtc.27.2016.12.15.12.00.18 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 15 Dec 2016 12:00:18 -0800 (PST) Received: by mail-qk0-f176.google.com with SMTP id n204so68925449qke.2; Thu, 15 Dec 2016 12:00:18 -0800 (PST) X-Received: by 10.55.115.6 with SMTP id o6mr2285914qkc.271.1481832016478; Thu, 15 Dec 2016 12:00:16 -0800 (PST) MIME-Version: 1.0 Reply-To: cem@freebsd.org Received: by 10.200.58.165 with HTTP; Thu, 15 Dec 2016 12:00:16 -0800 (PST) In-Reply-To: <201612151545.uBFFjBEL070679@repo.freebsd.org> References: <201612151545.uBFFjBEL070679@repo.freebsd.org> From: Conrad Meyer Date: Thu, 15 Dec 2016 12:00:16 -0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r310116 - head/sys/kern To: Ed Schouten Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 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: Thu, 15 Dec 2016 20:00:22 -0000 Can we please slap names on these numbers? Even if we keep the existing numeric values? Thanks, Conrad On Thu, Dec 15, 2016 at 7:45 AM, Ed Schouten wrote: > Author: ed > Date: Thu Dec 15 15:45:11 2016 > New Revision: 310116 > URL: https://svnweb.freebsd.org/changeset/base/310116 > > Log: > Document the existence of the {0, 6, ...} sysctl. > > Modified: > head/sys/kern/kern_sysctl.c > > Modified: head/sys/kern/kern_sysctl.c > ============================================================================== > --- head/sys/kern/kern_sysctl.c Thu Dec 15 15:35:53 2016 (r310115) > +++ head/sys/kern/kern_sysctl.c Thu Dec 15 15:45:11 2016 (r310116) > @@ -821,7 +821,8 @@ SYSINIT(sysctl, SI_SUB_KMEM, SI_ORDER_FI > * {0,2,...} return the next OID. > * {0,3} return the OID of the name in "new" > * {0,4,...} return the kind & format info for the "..." OID. > - * {0,5,...} return the description the "..." OID. > + * {0,5,...} return the description of the "..." OID. > + * {0,6,...} return the aggregation label of the "..." OID. > */ > > #ifdef SYSCTL_DEBUG >