From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id E1C8B25D9 for ; Thu, 26 Jul 2018 18:40:37 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 5936121C0E; Thu, 26 Jul 2018 12:40:37 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 26 Jul 2018 12:40:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=ezX8TvQnhWZmZP/Ct0gKTI/C2U fT9eDkvLa3FZPQlUk=; b=POSIhInRlQsLtx5XTSA0H06AGQMq+CKfbEHm985OXb ffC9dxNmB1jLi67ST8I9UAVJVcdNpNsbPYb0kIo7SzASMJgMkVroqsyvg2OsCq6Y +drcTnkmJTHxcaImP4vTPptQtmX9zjUqjIA9PPgTSBXfSMzbSfv75Q4tEFYZHtax A= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=ezX8Tv QnhWZmZP/Ct0gKTI/C2UfT9eDkvLa3FZPQlUk=; b=JVpQ8H5mjk0Y4n8WNTxBip 6SPt++mcwoW3fmpDoqV1rbxWtUEWxH9thcWHyaq+Z5ilLC7s/kZSG18feYx4Bxqk LGrSSBl4lHExJjXt8fv6yKvbU9l7GxgPohDXLOoT6pWxoBiELGx0L7luXL4SuE/B CPyF7EBhhxdUaBhWxuksj2FB7cHd0md69BvU66TTEn12wXvYHZJ0swf8koYsucE2 RDnh0yaE8T+p5EcMUFOydOnBRuMamuj9U4Gui0/NMqgkyu5YwNaSj2nqcZ+IeoSj OZjeP3jtyzwF6Q/ZIlnBOZeNpclyl/NgJLKJKJcTimqVllhLSDlhDCCu7SThbYrQ == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 7360110261; Thu, 26 Jul 2018 12:40:36 -0400 (EDT) From: Thomas Monjalon To: Harry van Haaren Cc: dev@dpdk.org, vipin.varghese@intel.com Date: Thu, 26 Jul 2018 18:40:31 +0200 Message-ID: <25544549.HhjTQNzpQJ@xps> In-Reply-To: <1532622719-188096-1-git-send-email-harry.van.haaren@intel.com> References: <1532621793-187781-1-git-send-email-harry.van.haaren@intel.com> <1532622719-188096-1-git-send-email-harry.van.haaren@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v5] eal/service: improve error checking of coremasks X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jul 2018 16:40:38 -0000 26/07/2018 18:31, Harry van Haaren: > This commit improves the error checking performed on the > core masks (or lists) of the service cores, in particular > with respect to the data-plane (RTE) cores of DPDK. > > With this commit, invalid configurations are detected at > runtime, and warning messages are printed to inform the user. > > For example specifying the coremask as 0xf, and the service > coremask as 0xff00 is invalid as not all service-cores are > contained within the coremask. A warning is now printed to > inform the user. > > Reported-by: Vipin Varghese > Signed-off-by: Harry van Haaren > Acked-by: Vipin Varghese Applied, thanks