From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f171.google.com (mail-wi0-f171.google.com [209.85.212.171]) by dpdk.org (Postfix) with ESMTP id DCEB28DA2 for ; Wed, 28 Oct 2015 14:38:27 +0100 (CET) Received: by wicll6 with SMTP id ll6so12910042wic.1 for ; Wed, 28 Oct 2015 06:38:27 -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:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=6pc8y+lcLdWeijGvsgh3qjEVbUMuCbx9YSTkAam4QJU=; b=gx3K7RcH7875mOhYYx0nzCoAz1g0n20mmurIuqiakE/H8jEgAJoed6n8tqi3Nd8irv RipJtSdJc5n4tF7a/OhraVTr2ImeWPlt1QEzEWk1GVQXzRAaQ1MXhpiQmjZaJlS1BEq+ kiOUNMT345z2Lo/n95K/i9zKJowJfMK2/+OPOLgOEnkEq0ZooxuN24iCHvPG7iXCJlE/ XRTzuAy3ot05tIM3ftSlfbC4Yra6ilN5GqwDft0ebY/afZGVobJPX7oMLFoHEj4gd8Zu rtt5DMgfzZekXtje5/bARGygEA3NnNPto8Vfcv0t+te/x/hjhaK7l6Yo7z3Gb6CqaBaZ xlMA== 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=6pc8y+lcLdWeijGvsgh3qjEVbUMuCbx9YSTkAam4QJU=; b=EdToBITOCONlYEeaDGCRNUDCrmz/ZsHB5tYTpHM9PGWpbAS4R+KDgqc1eLIcXgq/Bm xYOdH/HZuuqmre+7OE4nYq9sFCF+Q/SU08ON/Jmx+UmXwpq1DbOpJXWmhxFzGCPID05I FBbOtVFzWejLllv+hu8Eo7xgxsgeEJkylWIZ/bUaer6hFNbT1qOL3wRJ5fmyyzxvqQ5E naFF+SThu5xWhD/9i+3WLDK/grnURHuBjaPzQkXqjL51QHXr6jEuJivoG4Poz5aIl5mk S/wLce1BqkdQoD+HfEu8V2rM6XThs124MIN7Ooyge9zuBpMT86hg5cliN6dh1/itWBkI QGBQ== X-Gm-Message-State: ALoCoQkuUaPs5RCPKtTrWLG7wmH5DM4nr9jQQSrqb4dj6ewNReKdcr4+64ZJNKC8gb9hvTtoQ2xo X-Received: by 10.180.206.174 with SMTP id lp14mr3095017wic.55.1446039507678; Wed, 28 Oct 2015 06:38:27 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id v9sm50036926wjv.45.2015.10.28.06.38.26 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 28 Oct 2015 06:38:26 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Wed, 28 Oct 2015 14:37:16 +0100 Message-ID: <1467558.hIbeRARX3P@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1444668333-20191-2-git-send-email-harry.van.haaren@intel.com> References: <561BD4AE.4010704@gmail.com> <1444668333-20191-1-git-send-email-harry.van.haaren@intel.com> <1444668333-20191-2-git-send-email-harry.van.haaren@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH 1/2] ixgbe: fix VF statistic wraparound handling macro 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, 28 Oct 2015 13:38:28 -0000 2015-10-12 17:45, Harry van Haaren: > - cur += latest - last; \ > + cur += (latest-last) & UINT_MAX; \ CHECK:SPACING: spaces preferred around that '-' (ctx:VxV) Please use checkpatch before submitting. Thanks