From owner-svn-src-user@freebsd.org Fri Dec 1 01:36:34 2017 Return-Path: Delivered-To: svn-src-user@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 BE78DDEFCD2 for ; Fri, 1 Dec 2017 01:36:34 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 8C2EB7E818; Fri, 1 Dec 2017 01:36:34 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB11aXju048824; Fri, 1 Dec 2017 01:36:33 GMT (envelope-from jeff@FreeBSD.org) Received: (from jeff@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB11aXjm048823; Fri, 1 Dec 2017 01:36:33 GMT (envelope-from jeff@FreeBSD.org) Message-Id: <201712010136.vB11aXjm048823@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jeff set sender to jeff@FreeBSD.org using -f From: Jeff Roberson Date: Fri, 1 Dec 2017 01:36:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r326417 - user/jeff/numa/sys/vm X-SVN-Group: user X-SVN-Commit-Author: jeff X-SVN-Commit-Paths: user/jeff/numa/sys/vm X-SVN-Commit-Revision: 326417 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Dec 2017 01:36:34 -0000 Author: jeff Date: Fri Dec 1 01:36:33 2017 New Revision: 326417 URL: https://svnweb.freebsd.org/changeset/base/326417 Log: Fix a double decrement introduced in the merge. Modified: user/jeff/numa/sys/vm/uma_core.c Modified: user/jeff/numa/sys/vm/uma_core.c ============================================================================== --- user/jeff/numa/sys/vm/uma_core.c Fri Dec 1 01:21:35 2017 (r326416) +++ user/jeff/numa/sys/vm/uma_core.c Fri Dec 1 01:36:33 2017 (r326417) @@ -3375,7 +3375,6 @@ uma_large_free(uma_slab_t slab) ("uma_large_free: Memory not allocated with uma_large_malloc.")); kmem_free(kernel_arena, (vm_offset_t)slab->us_data, slab->us_size); uma_total_dec(slab->us_size); - uma_total_dec(slab->us_size); zone_free_item(slabzone, slab, NULL, SKIP_NONE); }