From owner-freebsd-mips@FreeBSD.ORG Wed Jul 9 18:10:27 2014 Return-Path: Delivered-To: freebsd-mips@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 ESMTPS id DD412B35; Wed, 9 Jul 2014 18:10:27 +0000 (UTC) Received: from mail-qa0-x235.google.com (mail-qa0-x235.google.com [IPv6:2607:f8b0:400d:c00::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E89D296E; Wed, 9 Jul 2014 18:10:27 +0000 (UTC) Received: by mail-qa0-f53.google.com with SMTP id v10so1049993qac.40 for ; Wed, 09 Jul 2014 11:10:26 -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=e1jaBZ2qJkWSXKjol458TeyoWNKATQsovjsDFx20VHk=; b=Ki+8gKdEASzgUR8NWNmcqy5gVZd5J5n30VjWBczc94C9bD7hS0WeHsCx0xIDB7ouv+ pgLrcQq01PD56UzsAmg93D2XNBApEpbqc4bEHEe6bL++Uk1rV8aBdKJw/5HEx6CcZ8Ua D4b8leAhBIxrVPTHjYECXC1VAdo395eU7qUcJ/cXd7iuOVrvrlRBBKKDlLDJ09NaI8H5 kVbxChUY2erIalyegPJLXIK6vzpZEbdNXkVzR6t8KkTHnQx+tYDpZ0r49dL4PmhFgc/E yfB4gP6Oikhvlordl/oBaVEEq3Ig18XgSHpbCqYCrRM1NUaCj8gJUCXg9l7R82Bj4CFo pGAQ== MIME-Version: 1.0 X-Received: by 10.140.106.73 with SMTP id d67mr69121177qgf.103.1404929426738; Wed, 09 Jul 2014 11:10:26 -0700 (PDT) Received: by 10.96.73.39 with HTTP; Wed, 9 Jul 2014 11:10:26 -0700 (PDT) In-Reply-To: <201407091757.s69HvHsv044282@pdx.rh.CN85.ChatUSA.com> References: <201407091757.s69HvHsv044282@pdx.rh.CN85.ChatUSA.com> Date: Wed, 9 Jul 2014 11:10:26 -0700 Message-ID: Subject: Re: mbuf autotuning effect From: hiren panchasara To: "Rodney W. Grimes" Content-Type: text/plain; charset=UTF-8 Cc: freebsd-embedded , "freebsd-mips@freebsd.org" X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jul 2014 18:10:27 -0000 On Wed, Jul 9, 2014 at 10:57 AM, Rodney W. Grimes wrote: > Actually didnt VM_KMEM_SIZE_SCALE default value get changed to 1 in the x86/amd64 > kernel tree some time in 8.x's life time? Yes, Just for amd64: % grep -r SCALE */include/vmparam.h | grep define amd64/include/vmparam.h:#define VM_KMEM_SIZE_SCALE (1) arm/include/vmparam.h:#define VM_KMEM_SIZE_SCALE (3) i386/include/vmparam.h:#define VM_KMEM_SIZE_SCALE (3) ia64/include/vmparam.h:#define VM_KMEM_SIZE_SCALE (4) mips/include/vmparam.h:#define VM_KMEM_SIZE_SCALE (3) powerpc/include/vmparam.h:#define VM_KMEM_SIZE_SCALE (3) sparc64/include/vmparam.h:#define VM_KMEM_SIZE_SCALE (tsb_kernel_ldd_phys == 0 ? 3 : 2) cheers, Hiren