From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f171.google.com (mail-pd0-f171.google.com [209.85.192.171]) by dpdk.org (Postfix) with ESMTP id 638DB5323 for ; Tue, 25 Nov 2014 18:24:09 +0100 (CET) Received: by mail-pd0-f171.google.com with SMTP id y13so979957pdi.16 for ; Tue, 25 Nov 2014 09:35:02 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=j6sssujQyEHFMNu83rQ5/hdR0+ErgKPAGrG1rpZXYDc=; b=hloks5fzMOrJGr81LkFVrWeLhW8o7fFqVKqVq1JVwg8HchcG61AshdLftca9DoCTWi vXZp35fuoS6TDx050AL4hIRvhilTD9Rv84/R8Lv+0tHvex+o52q1UNbxgGvTgsmTV1xS eF/9KjSPW9Nz9+rVfgwGGIlaUIl/2HHhvT0PEzQkWOPNfkExtHQPoQXCVzFaNpdtikHs rxjcMAyR1iI9x3fwWKKXBo9YcXmn2H4SKziNdB/2ttEqrsZljBjBVkuWxFAMqnwCcxPU 5dFazynlMDElg8RxwtSTWwxZ1jIdCYGf/lCvoH/Dv28hvaUWLQi0pn8ybzSmNnGhk7xZ Ii+w== X-Gm-Message-State: ALoCoQmxuJcRiii3EgCAifScY7aZBg/uiczAr/7jgACyewWJLIMe6+hbnJCXPhOimWYpEshXXQUm X-Received: by 10.70.47.6 with SMTP id z6mr46062810pdm.82.1416936901682; Tue, 25 Nov 2014 09:35:01 -0800 (PST) Received: from urahara (static-50-53-82-155.bvtn.or.frontiernet.net. [50.53.82.155]) by mx.google.com with ESMTPSA id ir2sm2037383pbc.57.2014.11.25.09.34.59 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 25 Nov 2014 09:35:01 -0800 (PST) Date: Tue, 25 Nov 2014 09:34:51 -0800 From: Stephen Hemminger To: Yerden Zhumabekov Message-ID: <20141125093451.2611364b@urahara> In-Reply-To: References: <1416160760-16087-1-git-send-email-e_zhumabekov@sts.kz> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v3 1/5] hash: add software CRC32 implementation 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, 25 Nov 2014 17:24:09 -0000 On Tue, 18 Nov 2014 09:21:54 +0600 Yerden Zhumabekov wrote: > +/* Lookup tables for software implementation of CRC32C */ > +static uint32_t crc32c_tables[8][256] = {{ > + 0x00000000, 0xF26B8303, 0xE13B70F7, 0x1350F3F4, Table should be declared const