From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by dpdk.org (Postfix) with ESMTP id AC22E8009 for ; Fri, 10 Oct 2014 13:01:31 +0200 (CEST) Received: by mail-wi0-f172.google.com with SMTP id n3so1667363wiv.11 for ; Fri, 10 Oct 2014 04:08:57 -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=zM2328gNqxA9YnKDNkQ8w8sfdiYuTXfx3nM/wjT6QhM=; b=ervfxQ5MqQSI52a1j5oG9AeYaReUwk8RhzzMuJc/trGjGf3bsahrENSStKdokgNwp1 rnOskmqnEKJqEqYd3XHcRI6mdSZ84BAj1rN51ThAKutGcS0LwUAcUABWNQACCjwx0tlj zdshXNY2lITR51/Yl6ba21cO3wNV6XiRHGYTH5NY74PN/FJWFEyH5a7i8JyO+ofLjDfH 45V699QJAOhTXNbIYIWBbv7FkfI/AzD9bhpFYRJBoyZ8lRPOe2x47mrn7KWlnnvE99Sy 8zIOTBi1eG4e2Rg0251D7V9vNqMDCCWOOTPKMaWmCpJ8ogjomE8fLUc1yOJJxtp82oG8 1CXQ== X-Gm-Message-State: ALoCoQnNC1abRlEQ0GTKy/zYL6epHn1aymnXyhSuVSs3hhTJ0Ln96o31GZEAZN2oMbqILPozWV31 X-Received: by 10.194.184.166 with SMTP id ev6mr3732420wjc.61.1412939337682; Fri, 10 Oct 2014 04:08:57 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id xm4sm2270016wib.9.2014.10.10.04.08.56 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 10 Oct 2014 04:08:57 -0700 (PDT) From: Thomas Monjalon To: Pablo de Lara Date: Fri, 10 Oct 2014 13:08:39 +0200 Message-ID: <2239789.SvWzbc8OOD@xps13> Organization: 6WIND User-Agent: KMail/4.13.3 (Linux/3.15.8-1-ARCH; KDE/4.13.3; x86_64; ; ) In-Reply-To: <1412156945-6549-2-git-send-email-pablo.de.lara.guarch@intel.com> References: <1412150458-26213-1-git-send-email-pablo.de.lara.guarch@intel.com> <1412156945-6549-1-git-send-email-pablo.de.lara.guarch@intel.com> <1412156945-6549-2-git-send-email-pablo.de.lara.guarch@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 v3 1/3] ether: Reset whole dev info structure 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: Fri, 10 Oct 2014 11:01:31 -0000 2014-10-01 10:49, Pablo de Lara: > + /* Reset dev info structure */ > + memset(dev_info, 0, sizeof(struct rte_eth_dev_info)); It's typically the kind of situation where a comment is not needed :) -- Thomas