From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f176.google.com (mail-wi0-f176.google.com [209.85.212.176]) by dpdk.org (Postfix) with ESMTP id B40338D95 for ; Mon, 26 Oct 2015 15:18:12 +0100 (CET) Received: by wijp11 with SMTP id p11so168281207wij.0 for ; Mon, 26 Oct 2015 07:18:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind_com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=7ML64efF8xmu7yvOY4Bj8r5N00smiNAOxKXuoLvGCPw=; b=ricKVNt4fDBl1s9yn/q4c72hvIWThw5o0JlLHIxUhVSx0HiiCt7X9SUNA3PPMgsLvc wIwHTkVbr49H3gRaviPxgXD8y2b5L8Vz8hFt/syFgsWRNbEaKf09PvzttuyncB1zrrUg s2V7FpI7+RUiLdACYys3FDrIWHSgR2BdUfXUi6qqu+V4N562took95MB1GFjvjvNXx4v XzQoYwGMzP61GB4kGJyzB8Za6FC07QEwaGIzsFpttP6xTi+WcnHjRxAx7pXd1xjwQdDV rkMxx+yf72co3cj2zIRW0F0Zo13teYvgtstmEfS06gwKINf6scnF5R8WksZqnpBExtkH Z0Sw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=7ML64efF8xmu7yvOY4Bj8r5N00smiNAOxKXuoLvGCPw=; b=YC5MIXThVUvl8WhBCyE59arkQC+3WLgWGltGahLdZ9cWgKCIGmK97qxnxFtcDXwWXY 2AOnbQD5Q6guWY9Z8byjWF6tG4jGNT9FnN1u3XgbohKpKAG6359Jzt2aVd11EbMvOiZ/ 5taRn9hwPl+aTJfOqIuVjMomzK78Utooz2VZhlkgzhJ3BsrWjVyP+raqxOnj/c9+q0pW tAsgiXv8etwyjlGrpSjmlh8h0uY//LfIAEXVJSLKLn1PuaDPYiecKjvckwvoyYEHxN5F MX0csk6AC3LMXfQjGOcCF9h9pLXBJ8d8rHwMLx2khfvy65BKNQOuc9i3v7ng7+c3VnHI g5/g== X-Gm-Message-State: ALoCoQmRhv7TarT1dPp/7RFMvexNXA2NLpnNEnOT1+tWjH2NWYas7vO+QkyBpakSnLZ86vXnmF1W X-Received: by 10.195.11.98 with SMTP id eh2mr20259297wjd.59.1445869092543; Mon, 26 Oct 2015 07:18:12 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id ki7sm39365738wjc.28.2015.10.26.07.18.11 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 26 Oct 2015 07:18:11 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Mon, 26 Oct 2015 15:17:03 +0100 Message-ID: <6437409.HojkCX2fBM@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1443213436-113824-1-git-send-email-rlane@bigswitch.com> References: <1443213436-113824-1-git-send-email-rlane@bigswitch.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] default to using all cores if no -c, -l, or --lcores options given X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 14:18:12 -0000 There was no comment for this new behaviour. It means everybody agree to default to all cores. 2015-09-25 13:37, Rich Lane: > This is a useful default for simple applications where the assignment of lcores > to CPUs doesn't matter. It's also useful for more complex applications that > automatically assign tasks to cores based on the NUMA topology. > > Signed-off-by: Rich Lane