From owner-svn-src-head@FreeBSD.ORG Fri Jun 27 19:07:35 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E41B3C18; Fri, 27 Jun 2014 19:07:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 D157C2145; Fri, 27 Jun 2014 19:07:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5RJ7Z23050917; Fri, 27 Jun 2014 19:07:35 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5RJ7ZYg050916; Fri, 27 Jun 2014 19:07:35 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201406271907.s5RJ7ZYg050916@svn.freebsd.org> From: Ed Maste Date: Fri, 27 Jun 2014 19:07:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r267973 - head/sys/kern X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18 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: Fri, 27 Jun 2014 19:07:36 -0000 Author: emaste Date: Fri Jun 27 19:07:35 2014 New Revision: 267973 URL: http://svnweb.freebsd.org/changeset/base/267973 Log: Add CTLFLAG_NOFETCH flag; console vty code runs before tunable fetch Also remove redundant "" assignment for string in BSS. Submitted by: hselasky@ Modified: head/sys/kern/kern_cons.c Modified: head/sys/kern/kern_cons.c ============================================================================== --- head/sys/kern/kern_cons.c Fri Jun 27 19:07:00 2014 (r267972) +++ head/sys/kern/kern_cons.c Fri Jun 27 19:07:35 2014 (r267973) @@ -652,9 +652,9 @@ sysbeep(int pitch __unused, int period _ /* * Temporary support for sc(4) to vt(4) transition. */ -static char vty_name[16] = ""; -SYSCTL_STRING(_kern, OID_AUTO, vty, CTLFLAG_RDTUN, vty_name, 0, - "Console vty driver"); +static char vty_name[16]; +SYSCTL_STRING(_kern, OID_AUTO, vty, CTLFLAG_RDTUN | CTLFLAG_NOFETCH, vty_name, + 0, "Console vty driver"); int vty_enabled(unsigned vty)