From owner-freebsd-current@FreeBSD.ORG Thu Oct 31 15:32:16 2013 Return-Path: Delivered-To: freebsd-current@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 ESMTP id C3726E3C for ; Thu, 31 Oct 2013 15:32:16 +0000 (UTC) (envelope-from rysto32@gmail.com) Received: from mail-ob0-x233.google.com (mail-ob0-x233.google.com [IPv6:2607:f8b0:4003:c01::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 90C1427A7 for ; Thu, 31 Oct 2013 15:32:16 +0000 (UTC) Received: by mail-ob0-f179.google.com with SMTP id uy5so3152449obc.24 for ; Thu, 31 Oct 2013 08:32:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=iN4HGmDlzEZvV3BV27OJO2FlcpEvYZcG6hzhfOsczQg=; b=UGx0N1/pThBdBr+SjlzCFt5Xmv5jxfr9zNiEu2H6aMkRBRvQl6B1VtsXomgAaMHp9i 7zwQpZee8x53RJ8P4+twCSFj4vsIOV3FOlutbt2E4S4hHGn87kkkjVtB5Iwodb5FermE de3xG7jib4h81GZIq9slxD/AP8veDTHf4D5wEI6lEuUlmQ9azOBfWUjzsmhK2yJiJgfL Ax78natViKZqqPHr2254LDkpFVzg9bVWqnu/2QbFA9XsgIXVP+YQnVN+69jZgUi8NsZ0 d/DxIuD1jCRx+GyvnO61k2ei5tCiLMXhj0pjtE/akSKhoBEEMzjAu3g6RzOPkxcT6Wxb +vGQ== MIME-Version: 1.0 X-Received: by 10.182.112.202 with SMTP id is10mr309993obb.90.1383233535733; Thu, 31 Oct 2013 08:32:15 -0700 (PDT) Received: by 10.76.69.1 with HTTP; Thu, 31 Oct 2013 08:32:15 -0700 (PDT) In-Reply-To: References: Date: Thu, 31 Oct 2013 11:32:15 -0400 Message-ID: Subject: Re: Freebsd-10.0-CURRENT problem in the bottom half From: Ryan Stone To: Venkata Duvvuru Content-Type: text/plain; charset=ISO-8859-1 Cc: "freebsd-current@freebsd.org" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 15:32:16 -0000 On Thu, Oct 31, 2013 at 10:00 AM, Venkata Duvvuru wrote: > 34.98% [303027] trash_ctor @ /boot/kernel/kernel This indicates that you have INVARIANTS enabled (and you're probably running GENERIC, so you also have WITNESS). These will debugging features will substantially impact performance. To do performance testing on head, you need disable these options from your kernel config: nooptions INVARIANTS nooptions WITNESS nooptions MALLOC_DEBUG_MAXZONES Also, set MALLOC_PRODUCTION=yes in /etc/make.conf. Then rebuild your world and kernel and try again.