From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f54.google.com (mail-wm0-f54.google.com [74.125.82.54]) by dpdk.org (Postfix) with ESMTP id 4E724AA37 for ; Tue, 16 Feb 2016 08:31:45 +0100 (CET) Received: by mail-wm0-f54.google.com with SMTP id a4so86133110wme.1 for ; Mon, 15 Feb 2016 23:31:45 -0800 (PST) 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=PGWrct3jU8pA/NMykKWejUZr2ZGQJ5I2cGabHBGkp/w=; b=DilfBxX5NaoATeyAdjjnvaSgo6U7u+nWfIIcSXWCzz0Kc8sz7LvIsjAmb/iZZhWoQe Yt9phd0Jb1almV7Abs1m9NlKDBDm7TLjnv3WVXYiMchu4KHrZV6uIUPkO1cwCOuKuFLd k9Kf5y46poV1maHgfKHiW0qzKz7DMWffvJVoFSmzAy0j8z4DhRU5aqguSJu2DTkJaZ4k sy7nBLwHAlMIBaED8pm2rBuyFnKrD8PcYV175+BLuMta/bs3Fav8OBUT3BSJZKLUiYKj iafHuS09GyzHrKuyEdFOR69m/2zZOXJ1icK+2AKiZgonw5cqviB5/zXsLODW1ydaInuQ 3IpA== 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=PGWrct3jU8pA/NMykKWejUZr2ZGQJ5I2cGabHBGkp/w=; b=STXAVumD276oe6HkTu17V2FUc5rpfjDd8rxwPFP6yr+7MaUQDz0FIjbEsIoihISunr C0aTG2MEH267tqPGUQMV+vw4RuKY95EZeDk0ASdPN3c+zMKhvLakAal/5Rf8ejOwCpUW tpVoxUvU354axpvRJphPO2Ex7VakvAoWnDW/q/mLjeO/Monu4xKOetCEKiBb1BaPq1Zs /T0UwamGEZksWmpxIGTGwr1LEt42yvcI+jlgBBROiqKuH1dRAmTioa0KYmFJV+mAQFhv Z34Ea+9i76Sxa4TbXvjKqrzEYuqgKbVgwXuB5dSsuxEgje2BpxDWk1lZ2f4a34uF1Q9+ 2UKA== X-Gm-Message-State: AG10YOROmRkuk6RFp/PoWcuF7JkIFR7QdR+zxX1fOZQWL0JiCskYt9nFls7UMbuSOAW0eIP7 X-Received: by 10.194.76.211 with SMTP id m19mr24483777wjw.113.1455607905143; Mon, 15 Feb 2016 23:31:45 -0800 (PST) Received: from xps13.localnet (165.20.90.92.rev.sfr.net. [92.90.20.165]) by smtp.gmail.com with ESMTPSA id a128sm19134411wmh.6.2016.02.15.23.31.43 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 15 Feb 2016 23:31:44 -0800 (PST) From: Thomas Monjalon To: david.marchand@6wind.com Date: Tue, 16 Feb 2016 08:30:10 +0100 Message-ID: <1580070.N1sbRJvuMl@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1454797033-24057-1-git-send-email-thomas.monjalon@6wind.com> References: <1454453993-3903-1-git-send-email-thomas.monjalon@6wind.com> <1454797033-24057-1-git-send-email-thomas.monjalon@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org, viktorin@rehivetech.com Subject: Re: [dpdk-dev] [PATCH v2 0/5] clean-up cpuflags 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, 16 Feb 2016 07:31:45 -0000 2016-02-06 23:17, Thomas Monjalon: > Following the work of Ferruh, I suggest this cleanup to remove as much > as possible of the code from the cpuflags headers. > The goal is to un-inline these functions (not performance sensitive) > and remove the CPU flags table from the ABI (just added recently). > The bonus is to stop mimic x86 in ARM and PPC implementations. > > WARNING: it has not been tested nor compiled on Tilera and POWER8. > > v2 changes: > - fix maintainers file > - fix include from C++ app > - fix missing REG_PLATFORM for ARM > - suggested ARM refactor from Jerin Applied