From owner-svn-src-head@FreeBSD.ORG Thu Sep 5 18:18:23 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E1036E4E; Thu, 5 Sep 2013 18:18:23 +0000 (UTC) (envelope-from hiren@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CFC9D265E; Thu, 5 Sep 2013 18:18:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r85IINPO008172; Thu, 5 Sep 2013 18:18:23 GMT (envelope-from hiren@svn.freebsd.org) Received: (from hiren@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r85IINAX008171; Thu, 5 Sep 2013 18:18:23 GMT (envelope-from hiren@svn.freebsd.org) Message-Id: <201309051818.r85IINAX008171@svn.freebsd.org> From: Hiren Panchasara Date: Thu, 5 Sep 2013 18:18:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255259 - 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.14 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: Thu, 05 Sep 2013 18:18:24 -0000 Author: hiren Date: Thu Sep 5 18:18:23 2013 New Revision: 255259 URL: http://svnweb.freebsd.org/changeset/base/255259 Log: Fixing a small typo. Reviewed by: gjb Approved by: sbruno (mentor) Modified: head/sys/kern/kern_mbuf.c Modified: head/sys/kern/kern_mbuf.c ============================================================================== --- head/sys/kern/kern_mbuf.c Thu Sep 5 17:58:25 2013 (r255258) +++ head/sys/kern/kern_mbuf.c Thu Sep 5 18:18:23 2013 (r255259) @@ -106,7 +106,7 @@ int nmbjumbo16; /* limits number of 16 static quad_t maxmbufmem; /* overall real memory limit for all mbufs */ SYSCTL_QUAD(_kern_ipc, OID_AUTO, maxmbufmem, CTLFLAG_RDTUN, &maxmbufmem, 0, - "Maximum real memory allocateable to various mbuf types"); + "Maximum real memory allocatable to various mbuf types"); /* * tunable_mbinit() has to be run before any mbuf allocations are done.