From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f180.google.com (mail-wr0-f180.google.com [209.85.128.180]) by dpdk.org (Postfix) with ESMTP id 6A9D3108D for ; Fri, 31 Mar 2017 12:08:23 +0200 (CEST) Received: by mail-wr0-f180.google.com with SMTP id k6so93189260wre.2 for ; Fri, 31 Mar 2017 03:08:23 -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:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=LCpUqLz8sYZbuNX9r22bKZ1pcZ3IBWSrhzWTZMp2ibs=; b=LItiraZkoHXsVRjNQV/9vyY7hlyI8XCrPCQQt/0BjkwB7ggAPTYBoxnKDvXoWKGzF3 qEm5QawLzeHRQaSH+n7vv8SuJC0u4xKelFqbMeINC3a3mcMZQF6c0XE0vWQFNubkTISA TK5IqgZU31QJqN/9qxFnk7jdotlWv2PNvpAynLKGZrTdDuQVrydVaWo8V8MO5P6zFtee jKs9rIAl/yU7+Z9cqMOSdK+HhRtBoqXwjt3Ydqy8W4l/4IHnl4hG97jkLn4brb4HGSwO gGKIqm5TE1ORLAhCR2JdsaDs9HpEd3tuM4Z4hzYnMJiCc846rpRrS04V/uE5xeXaa2wn Vq7g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=LCpUqLz8sYZbuNX9r22bKZ1pcZ3IBWSrhzWTZMp2ibs=; b=lRRVqTeCAICoOW/OAWuag+Mz7D1UsGvOLY0nf6BwgsVlJKVW8IGd/K2CzAgJagQ0Xe sWxRjvBQlAdNd29RWZiY8jcVER0JkMpkowtlK/thm+4RFWTKkAwP9cYlXiOtPlHlF2vd S4eVgDMT9GYnRV5QbAnTZ5nz+7rUQgQveG44oSWi+Ph8N9J80GM8F6U9uWQ3E9ggMFX4 rYQvUJz8DLBSw9Of7IRwt1/cy18t56P3n5jKMo0IEP5ICl95ZbIhmBiNtczP/sBRle3M BYZ8v7sTnXBZrFxrOS4OIQxbjhwKahzF44Dp5CAzBeHhEmEdoAp8QTGPmF74fj1EBSj3 XRiA== X-Gm-Message-State: AFeK/H2Uv3OFK1TSbKYFbHrxx3rpvytofJnRMtCj8g2o2/+F2s5C5D/zeynMAOiQlylk7LSj X-Received: by 10.28.40.198 with SMTP id o189mr2540224wmo.108.1490954903710; Fri, 31 Mar 2017 03:08:23 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id 10sm6104807wrz.44.2017.03.31.03.08.22 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 31 Mar 2017 03:08:23 -0700 (PDT) From: Thomas Monjalon To: Allain Legacy Cc: cristian.dumitrescu@intel.com, bruce.richardson@intel.com, dev@dpdk.org, yuanhan.liu@linux.intel.com Date: Fri, 31 Mar 2017 12:08:22 +0200 Message-ID: <298208360.8PDEFbKV4o@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20170330185407.61220-4-allain.legacy@windriver.com> References: <20170328164431.12475-1-allain.legacy@windriver.com> <20170330185407.61220-1-allain.legacy@windriver.com> <20170330185407.61220-4-allain.legacy@windriver.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v4 3/6] cfgfile: add support for configurable comment character 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: Fri, 31 Mar 2017 10:08:24 -0000 Hi, 2017-03-30 14:54, Allain Legacy: > /** > + * Open config file with specified optional parameters. > + * > + * @param filename > + * Config file name > + * @param flags > + * Config file flags > + * @param params > + * Additional configuration attributes. Must be configured with desired > + * values prior to invoking this API. > + * @return > + * Handle to configuration file on success, NULL otherwise > + * @param This @param should be removed. > + * > + */ > +struct rte_cfgfile *rte_cfgfile_load_with_params(const char *filename, > + int flags, const struct rte_cfgfile_parameters *params); > The new public function must be exported in the map file in a 17.05 section. Otherwise link with the .so fails: undefined reference to `rte_cfgfile_load_with_params'