From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by dpdk.org (Postfix) with ESMTP id 15ADF568C for ; Wed, 2 Sep 2015 22:48:59 +0200 (CEST) Received: by wibz8 with SMTP id z8so78520068wib.1 for ; Wed, 02 Sep 2015 13:48:58 -0700 (PDT) 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=8IVdgvSNNhnA3DIeZJR4cg3OLjsvYI5ZBrIEWX1U0KU=; b=ZCtzUIqi1Uk0kJ1pPFwg3UkyspCaPrGlueK7pbKEgD+3ukrcyzYRlxe0lwD7pWEruU lsPmgPIwbhJVCgxBt81p3w8MuYJb3+JpVKULb1tIpnbkwgigVfdGcX0DEZlrhDAgjNdf LCmfuV4KugVWydFTKbYvg7GR5dG+Ki7KiIPsNshxFS0GJpjFblEFjZTN2x9WT6fHo5z0 BR3lf9h0o+GTgDDg/O3Qkv3451w8x9JKk9q85CflMszKxAWm5TNLQKWZmDDXUVo24IrW LCshuUb0Rc5yGAwQxr1z+Yg/mka/hwD2g4KdyhRThbIwuNt7/vg+/x7QVVAUzOSDtRKq 6V2w== X-Gm-Message-State: ALoCoQkuy9rLG0ZylpAEAdo1S6bSDgGgSEvTKIeWLlLT9J23ZDAM+Mi4oLLCsRvEEHl3nnnAooM2 X-Received: by 10.194.86.134 with SMTP id p6mr46366522wjz.71.1441226938898; Wed, 02 Sep 2015 13:48:58 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id lh3sm16915617wjc.44.2015.09.02.13.48.58 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 02 Sep 2015 13:48:58 -0700 (PDT) From: Thomas Monjalon To: Jasvinder Singh Date: Wed, 02 Sep 2015 22:47:48 +0200 Message-ID: <1657204.omqYUUIsjU@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1441209184-4271-1-git-send-email-jasvinder.singh@intel.com> References: <1441209184-4271-1-git-send-email-jasvinder.singh@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] librte_cfgfile (rte_cfgfile.h): modify the macros values 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: Wed, 02 Sep 2015 20:48:59 -0000 2015-09-02 16:53, Jasvinder Singh: > This patch refers to the ABI change proposed for librte_cfgfile (rte_cfgfile.h). > In order to allow for longer names and values, the new values of macros CFG_NAME_LEN and CFG_NAME_VAL are set. > > Signed-off-by: Jasvinder Singh > --- > lib/librte_cfgfile/rte_cfgfile.h | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) If the ABI is changed, the LIBABIVER number must be bumped. The release notes must also be updated and the deprecation announce must be removed. Thanks