From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f172.google.com (mail-we0-f172.google.com [74.125.82.172]) by dpdk.org (Postfix) with ESMTP id BA4679AA3 for ; Tue, 24 Feb 2015 12:30:17 +0100 (CET) Received: by wesu56 with SMTP id u56so24509683wes.10 for ; Tue, 24 Feb 2015 03:30:17 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Z36lBYV5EwYaSH5Q3AYd3nfrI2335x6A8HT52pAApIE=; b=Lp08xFYiu7LkR7hmo+hHoSCqSEP+CKu0eEI4UkwLGnx2aim3nSvopXRBIpxi7jrIsb CnpSKygxSf5AZUh2ckh+FVkYmHS8j8RmgbuMbJjGzpftQi+B0ltA/40q6WtILx0YifJE mMdYxop9ZD2lv7PJjaSceUMnsB5qsOlbWgaJuLyWgONMNNQzfhX8oD57djS9hpAl8qEC 1bUmAJHpz9l7mSZSrYsN0Uraa9AVbRjwpTKSUoonl9+u9idDrN/hu4gMsQP4UgpRxk5x 2lMfUMbaZDJzSLg+09fsC1Q2dcRmw9tgnkp6B298iQ9T/BhzzvAruGm+RtzjPXssGe4W sgrw== X-Gm-Message-State: ALoCoQndz/5xtnBv+uq6W4JlG3HqCOh2MX/DkzFzZhrpVHKuwITr3W1f/yC/4eALu+oIVmu3RuCW X-Received: by 10.194.92.9 with SMTP id ci9mr31227743wjb.142.1424777417634; Tue, 24 Feb 2015 03:30:17 -0800 (PST) Received: from [10.16.0.195] (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id gz3sm20136933wib.1.2015.02.24.03.30.16 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 24 Feb 2015 03:30:17 -0800 (PST) Message-ID: <54EC60C8.1090500@6wind.com> Date: Tue, 24 Feb 2015 12:30:16 +0100 From: Olivier MATZ User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.2.0 MIME-Version: 1.0 To: Pawel Wodkowski , dev@dpdk.org References: <1424700600-1765-1-git-send-email-pawelx.wodkowski@intel.com> <1424700600-1765-3-git-send-email-pawelx.wodkowski@intel.com> In-Reply-To: <1424700600-1765-3-git-send-email-pawelx.wodkowski@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 2/5] librte_kvargs: make rte_kvargs_free() be consistent with other "free()" functions 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: Tue, 24 Feb 2015 11:30:18 -0000 On 02/23/2015 03:09 PM, Pawel Wodkowski wrote: > It is desired that all type of *_free() functions mimic behaviour of > libc free() function. This function does nothing if given parameter is > NULL. This patch add this behaviour for rte_kvargs_free(). > > Signed-off-by: Pawel Wodkowski Acked-by: Olivier Matz